diff --git a/SpacemanDMM.toml b/SpacemanDMM.toml new file mode 100644 index 0000000000..500be06fa6 --- /dev/null +++ b/SpacemanDMM.toml @@ -0,0 +1,5 @@ +[diagnostics] +macro_redefined = "off" +macro_undefined_no_definition = "off" +as_local_var = "off" +tmp_no_effect = "off" diff --git a/code/ATMOSPHERICS/components/binary_devices/pump.dm b/code/ATMOSPHERICS/components/binary_devices/pump.dm index 1f1c4ff1ae..b4b8187f45 100644 --- a/code/ATMOSPHERICS/components/binary_devices/pump.dm +++ b/code/ATMOSPHERICS/components/binary_devices/pump.dm @@ -20,7 +20,7 @@ Thus, the two variables affect pump operation are set in New(): level = 1 name = "gas pump" - desc = "A pump" + desc = "A pump that moves gas from one place to another." var/target_pressure = ONE_ATMOSPHERE diff --git a/code/ATMOSPHERICS/components/binary_devices/volume_pump.dm b/code/ATMOSPHERICS/components/binary_devices/volume_pump.dm index b4493a1566..fa0aaf4bd0 100644 --- a/code/ATMOSPHERICS/components/binary_devices/volume_pump.dm +++ b/code/ATMOSPHERICS/components/binary_devices/volume_pump.dm @@ -6,7 +6,7 @@ level = 1 name = "high power gas pump" - desc = "A pump. Has double the power rating of the standard gas pump." + desc = "A pump that moves gas from one place to another. Has double the power rating of the standard gas pump." power_rating = 15000 //15000 W ~ 20 HP diff --git a/code/ATMOSPHERICS/components/omni_devices/filter.dm b/code/ATMOSPHERICS/components/omni_devices/filter.dm index 6fbd91f861..d9009168c5 100644 --- a/code/ATMOSPHERICS/components/omni_devices/filter.dm +++ b/code/ATMOSPHERICS/components/omni_devices/filter.dm @@ -3,6 +3,7 @@ //-------------------------------------------- /obj/machinery/atmospherics/omni/atmos_filter name = "omni gas filter" + desc = "An advanced version of the gas filter, able to be configured for filtering of multiple gasses." icon_state = "map_filter" pipe_state = "omni_filter" diff --git a/code/ATMOSPHERICS/components/trinary_devices/filter.dm b/code/ATMOSPHERICS/components/trinary_devices/filter.dm index ea3bd60456..e900303e22 100755 --- a/code/ATMOSPHERICS/components/trinary_devices/filter.dm +++ b/code/ATMOSPHERICS/components/trinary_devices/filter.dm @@ -7,6 +7,7 @@ level = 1 name = "Gas filter" + desc = "Filters one type of gas from an input, and pushes it out the side." use_power = 1 idle_power_usage = 150 //internal circuitry, friction losses and stuff diff --git a/code/ATMOSPHERICS/components/unary/vent_pump.dm b/code/ATMOSPHERICS/components/unary/vent_pump.dm index 844cdb7ca5..6d60ee4ebf 100644 --- a/code/ATMOSPHERICS/components/unary/vent_pump.dm +++ b/code/ATMOSPHERICS/components/unary/vent_pump.dm @@ -47,7 +47,7 @@ var/radio_filter_out var/radio_filter_in - //var/datum/looping_sound/air_pump/soundloop //VOREStation Removal + var/datum/looping_sound/air_pump/soundloop //Yawn Edit /obj/machinery/atmospherics/unary/vent_pump/on use_power = 1 @@ -72,7 +72,7 @@ /obj/machinery/atmospherics/unary/vent_pump/Initialize() . = ..() - //soundloop = new(list(src), FALSE) //VOREStation Removal + soundloop = new(list(src), FALSE) //Yawn Edit /obj/machinery/atmospherics/unary/vent_pump/New() ..() @@ -90,7 +90,7 @@ if(initial_loc) initial_loc.air_vent_info -= id_tag initial_loc.air_vent_names -= id_tag - //QDEL_NULL(soundloop) //VOREStation Removal + QDEL_NULL(soundloop) //Yawn Edit return ..() /obj/machinery/atmospherics/unary/vent_pump/high_volume @@ -171,15 +171,15 @@ /obj/machinery/atmospherics/unary/vent_pump/proc/can_pump() if(stat & (NOPOWER|BROKEN)) - //soundloop.stop() //VOREStation Removal + soundloop.stop() //Yawn Edit return 0 if(!use_power) - //soundloop.stop() //VOREStation Removal + soundloop.stop() //Yawn Edit return 0 if(welded) - //soundloop.stop() //VOREStation Removal + soundloop.stop() //Yawn Edit return 0 - //soundloop.start() //VOREStation Removal + soundloop.start() //Yawn Edit return 1 /obj/machinery/atmospherics/unary/vent_pump/process() diff --git a/code/ATMOSPHERICS/pipes/he_pipes.dm b/code/ATMOSPHERICS/pipes/he_pipes.dm index 1b283e3ba4..843d349633 100644 --- a/code/ATMOSPHERICS/pipes/he_pipes.dm +++ b/code/ATMOSPHERICS/pipes/he_pipes.dm @@ -140,6 +140,7 @@ // Heat Exchange Junction - Interfaces HE pipes to normal pipes // /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction + desc = "An adaptor to transfer gasses between regular pipes and heat transferring ones. It doesn't conduct heat all that well." icon = 'icons/atmos/junction.dmi' icon_state = "intact" pipe_icon = "hejunction" diff --git a/code/ZAS/Controller.dm b/code/ZAS/Controller.dm index 7adba1474f..be103e7a55 100644 --- a/code/ZAS/Controller.dm +++ b/code/ZAS/Controller.dm @@ -144,9 +144,8 @@ Class Procs: merge(A.zone,B.zone) return - var - a_to_b = get_dir(A,B) - b_to_a = get_dir(B,A) + var/a_to_b = get_dir(A,B) + var/b_to_a = get_dir(B,A) if(!A.connections) A.connections = new if(!B.connections) B.connections = new diff --git a/code/__defines/chemistry_vr.dm b/code/__defines/chemistry_vr.dm index f15ebd4a56..9aca934cf6 100644 --- a/code/__defines/chemistry_vr.dm +++ b/code/__defines/chemistry_vr.dm @@ -1,3 +1,4 @@ // More for our custom races #define IS_CHIMERA 12 -#define IS_SHADEKIN 13 \ No newline at end of file +#define IS_SHADEKIN 13 +#define IS_GREY 14 //ywedit \ No newline at end of file diff --git a/code/__defines/mobs_yw.dm b/code/__defines/mobs_yw.dm index adceca8519..8b18512935 100644 --- a/code/__defines/mobs_yw.dm +++ b/code/__defines/mobs_yw.dm @@ -1 +1,2 @@ -#define SPECIES_SHADEKIN_YW "GeneShadekin" \ No newline at end of file +#define SPECIES_SHADEKIN_YW "GeneShadekin" +#define SPECIES_GREY_YW "Grey" \ No newline at end of file diff --git a/code/__defines/species_languages_YW.dm b/code/__defines/species_languages_YW.dm new file mode 100644 index 0000000000..b47e78f693 --- /dev/null +++ b/code/__defines/species_languages_YW.dm @@ -0,0 +1 @@ +#define LANGUAGE_PSIONIC "Psionic Communication" \ No newline at end of file diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index 3ec76e7838..55e11a4509 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -429,6 +429,8 @@ var/global/list/remainless_species = list(SPECIES_PROMETHEAN, SPECIES_SHADEKIN, //Shadefluffers just poof away SPECIES_SHADEKIN_YW) //YW edits +/var/global/list/existing_solargrubs = list() + /hook/startup/proc/init_vore_datum_ref_lists() var/paths diff --git a/code/_helpers/unsorted_vr.dm b/code/_helpers/unsorted_vr.dm index 9336591552..daf4db48d7 100644 --- a/code/_helpers/unsorted_vr.dm +++ b/code/_helpers/unsorted_vr.dm @@ -52,3 +52,16 @@ if(sender) query_string += "&from=[url_encode(sender)]" world.Export("[config.chat_webhook_url]?[query_string]") + +/proc/admin_action_message(var/admin = "INVALID", var/user = "INVALID", var/action = "INVALID", var/reason = "INVALID", var/time = "INVALID") + if (!config.chat_webhook_url || !action) + return + spawn(0) + var/query_string = "type=adminaction" + query_string += "&key=[url_encode(config.chat_webhook_key)]" + query_string += "&admin=[url_encode(admin)]" + query_string += "&user=[url_encode(user)]" + query_string += "&action=[url_encode(action)]" + query_string += "&reason=[url_encode(reason)]" + query_string += "&time=[url_encode(time)]" + world.Export("[config.chat_webhook_url]?[query_string]") diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index 5d7298eabb..76d6972650 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -34,6 +34,7 @@ var/list/gamemode_cache = list() var/vote_period = 600 // length of voting period (deciseconds, default 1 minute) var/vote_autotransfer_initial = 108000 // Length of time before the first autotransfer vote is called var/vote_autotransfer_interval = 36000 // length of time before next sequential autotransfer vote + var/vote_autotransfer_amount = 1 // number of extension votes before the final one var/vote_autogamemode_timeleft = 100 //Length of time before round start when autogamemode vote is called (in seconds, default 100). var/vote_no_default = 0 // vote does not default to nochange/norestart (tbi) var/vote_no_dead = 0 // dead people can't vote (tbi) @@ -417,6 +418,9 @@ var/list/gamemode_cache = list() if ("vote_autotransfer_interval") config.vote_autotransfer_interval = text2num(value) + if ("vote_autotransfer_amount") + config.vote_autotransfer_amount = text2num(value) //YW addition, vote transfer amount + if ("vote_autogamemode_timeleft") config.vote_autogamemode_timeleft = text2num(value) diff --git a/code/controllers/subsystems/events.dm b/code/controllers/subsystems/events.dm index 24ce81fab4..8b8bc1d8b0 100644 --- a/code/controllers/subsystems/events.dm +++ b/code/controllers/subsystems/events.dm @@ -21,7 +21,8 @@ SUBSYSTEM_DEF(events) /datum/controller/subsystem/events/fire(resumed) for(var/datum/event/E in active_events) - E.process() + if(E.processing_active) + E.process() for(var/i = EVENT_LEVEL_MUNDANE to EVENT_LEVEL_MAJOR) var/list/datum/event_container/EC = event_containers[i] @@ -46,7 +47,7 @@ SUBSYSTEM_DEF(events) if(EM.add_to_queue) EC.available_events += EM - log_debug("Event '[EM.name]' has completed at [worldtime2stationtime(world.time)].") + log_debug("Event '[EM.name]' has completed at [stationtime2text()].") /datum/controller/subsystem/events/proc/delay_events(var/severity, var/delay) var/list/datum/event_container/EC = event_containers[severity] diff --git a/code/datums/autolathe/general.dm b/code/datums/autolathe/general.dm index 6ec648d388..40d036300e 100644 --- a/code/datums/autolathe/general.dm +++ b/code/datums/autolathe/general.dm @@ -129,6 +129,10 @@ name = "maglight" path =/obj/item/device/flashlight/maglight +/datum/category_item/autolathe/general/emergency_cell + name = "light fixture battery" + path =/obj/item/weapon/cell/emergency_light + /datum/category_item/autolathe/general/handcuffs name = "handcuffs" path =/obj/item/weapon/handcuffs diff --git a/code/datums/outfits/outfit.dm b/code/datums/outfits/outfit.dm index 846b519f77..cadad25565 100644 --- a/code/datums/outfits/outfit.dm +++ b/code/datums/outfits/outfit.dm @@ -169,6 +169,8 @@ var/list/outfits_decls_by_type_ pda.ownjob = assignment pda.ownrank = rank pda.name = "PDA-[H.real_name] ([assignment])" + if(H.client.prefs.ttone) // YW Edit + pda.ttone = H.client.prefs.ttone return pda /decl/hierarchy/outfit/dd_SortValue() diff --git a/code/datums/position_point_vector.dm b/code/datums/position_point_vector.dm index c5c392e126..eb5127aed6 100644 --- a/code/datums/position_point_vector.dm +++ b/code/datums/position_point_vector.dm @@ -6,8 +6,8 @@ #define RETURN_PRECISE_POSITION(A) new /datum/position(A) #define RETURN_PRECISE_POINT(A) new /datum/point(A) -#define RETURN_POINT_VECTOR(ATOM, ANGLE, SPEED) {new /datum/point/vector(ATOM, null, null, null, null, ANGLE, SPEED)} -#define RETURN_POINT_VECTOR_INCREMENT(ATOM, ANGLE, SPEED, AMT) {new /datum/point/vector(ATOM, null, null, null, null, ANGLE, SPEED, AMT)} +#define RETURN_POINT_VECTOR(ATOM, ANGLE, SPEED) (new /datum/point/vector(ATOM, null, null, null, null, ANGLE, SPEED)) +#define RETURN_POINT_VECTOR_INCREMENT(ATOM, ANGLE, SPEED, AMT) (new /datum/point/vector(ATOM, null, null, null, null, ANGLE, SPEED, AMT)) /datum/position //For positions with map x/y/z and pixel x/y so you don't have to return lists. Could use addition/subtraction in the future I guess. var/x = 0 diff --git a/code/datums/recipe.dm b/code/datums/recipe.dm index 9cddd506b6..464779611d 100644 --- a/code/datums/recipe.dm +++ b/code/datums/recipe.dm @@ -123,7 +123,7 @@ // food-related /datum/recipe/proc/make_food(var/obj/container as obj) if(!result) - world << "Recipe [type] is defined without a result, please bug this." + world << "Recipe [type] is defined without a result, please bug report this." return var/obj/result_obj = new result(container) if(istype(container, /obj/machinery)) diff --git a/code/game/gamemodes/changeling/powers/armor.dm b/code/game/gamemodes/changeling/powers/armor.dm index 3f555ca8ae..bee7e7518a 100644 --- a/code/game/gamemodes/changeling/powers/armor.dm +++ b/code/game/gamemodes/changeling/powers/armor.dm @@ -134,8 +134,8 @@ siemens_coefficient = 0 /obj/item/clothing/shoes/boots/combat/changeling //Noslips - desc = "chitinous boots" - name = "Footwear made out of a hard, black chitinous material. The bottoms of these appear to have spikes that can protrude or extract itself into and out \ + name = "chitinous boots" + desc = "Footwear made out of a hard, black chitinous material. The bottoms of these appear to have spikes that can protrude or extract itself into and out \ of the floor at will, granting the wearer stability." icon_state = "lingboots" armor = list(melee = 75, bullet = 60, laser = 70,energy = 60, bomb = 60, bio = 0, rad = 0) diff --git a/code/game/jobs/job/civilian_vr.dm b/code/game/jobs/job/civilian_vr.dm index 9a13c8925f..9ade997b3e 100644 --- a/code/game/jobs/job/civilian_vr.dm +++ b/code/game/jobs/job/civilian_vr.dm @@ -2,6 +2,9 @@ total_positions = 2 //IT TAKES A LOT TO MAKE A STEW spawn_positions = 2 //A PINCH OF SALT AND LAUGHTER, TOO +/datum/job/hydro + spawn_positions = 2 + /datum/job/cargo_tech total_positions = 3 spawn_positions = 3 diff --git a/code/game/jobs/job/science_vr.dm b/code/game/jobs/job/science_vr.dm index 284dd1e856..acfff12fda 100644 --- a/code/game/jobs/job/science_vr.dm +++ b/code/game/jobs/job/science_vr.dm @@ -11,4 +11,11 @@ access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, access_eva, access_network, access_maint_tunnels) /datum/job/scientist - alt_titles = list("Xenoarcheologist", "Anomalist", "Phoron Researcher", "Circuit Designer") \ No newline at end of file + spawn_positions = 5 + alt_titles = list("Xenoarcheologist", "Anomalist", "Phoron Researcher", "Circuit Designer") + +/datum/job/xenobiologist + spawn_positions = 3 + +/datum/job/roboticist + total_positions = 3 \ No newline at end of file diff --git a/code/game/jobs/job/security_vr.dm b/code/game/jobs/job/security_vr.dm index 8d53dc4a1d..4b390b2519 100644 --- a/code/game/jobs/job/security_vr.dm +++ b/code/game/jobs/job/security_vr.dm @@ -2,10 +2,14 @@ disallow_jobhop = TRUE access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, - access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, - access_research, access_engine, access_mining, access_construction, access_mailsorting, - access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks) + access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, + access_research, access_engine, access_mining, access_construction, access_mailsorting, + access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks) minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, - access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, - access_research, access_engine, access_mining, access_construction, access_mailsorting, - access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks) \ No newline at end of file + access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, + access_research, access_engine, access_mining, access_construction, access_mailsorting, + access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks) + +/datum/job/officer + total_positions = 5 + spawn_positions = 5 \ No newline at end of file diff --git a/code/game/machinery/Sleeper.dm b/code/game/machinery/Sleeper.dm index b73b8b8415..8d112b4138 100644 --- a/code/game/machinery/Sleeper.dm +++ b/code/game/machinery/Sleeper.dm @@ -1,5 +1,6 @@ /obj/machinery/sleep_console name = "sleeper console" + desc = "A control panel to operate a linked sleeper with." icon = 'icons/obj/Cryogenic2_vr.dmi' //VOREStation Edit - Better icon. icon_state = "sleeperconsole" var/obj/machinery/sleeper/sleeper diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm index f715a9f064..9e538ae80e 100644 --- a/code/game/machinery/alarm.dm +++ b/code/game/machinery/alarm.dm @@ -34,6 +34,7 @@ /obj/machinery/alarm name = "alarm" + desc = "Used to control various station atmospheric systems. The light indicates the current air status of the area." icon = 'icons/obj/monitors.dmi' icon_state = "alarm0" plane = TURF_PLANE diff --git a/code/game/machinery/atmo_control.dm b/code/game/machinery/atmo_control.dm index c18d2b9e93..ccab21e889 100644 --- a/code/game/machinery/atmo_control.dm +++ b/code/game/machinery/atmo_control.dm @@ -2,6 +2,7 @@ icon = 'icons/obj/stationobjs.dmi' icon_state = "gsensor1" name = "Gas Sensor" + desc = "Senses atmospheric conditions." anchored = 1 var/state = 0 @@ -77,6 +78,7 @@ obj/machinery/air_sensor/Destroy() icon_keyboard = "atmos_key" icon_screen = "tank" name = "Computer" + desc = "Control atmospheric systems, remotely." var/frequency = 1439 var/list/sensors = list() var/list/sensor_information = list() diff --git a/code/game/machinery/atmoalter/scrubber.dm b/code/game/machinery/atmoalter/scrubber.dm index 55afd7f35f..34f4bf9bc3 100644 --- a/code/game/machinery/atmoalter/scrubber.dm +++ b/code/game/machinery/atmoalter/scrubber.dm @@ -1,5 +1,6 @@ /obj/machinery/portable_atmospherics/powered/scrubber name = "Portable Air Scrubber" + desc = "Similar to room scrubbers, this device contains an internal tank to scrub gasses from the atmosphere." icon = 'icons/obj/atmos.dmi' icon_state = "pscrubber:0" @@ -144,6 +145,7 @@ //Huge scrubber /obj/machinery/portable_atmospherics/powered/scrubber/huge name = "Huge Air Scrubber" + desc = "A larger variation of the portable scrubber, for industrial scrubbing of air. Must be turned on from a remote terminal." icon = 'icons/obj/atmos_vr.dmi' //VOREStation Edit - New Sprite icon_state = "scrubber:0" anchored = 1 @@ -239,6 +241,10 @@ /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary name = "Stationary Air Scrubber" +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/Initialize() + . = ..() + desc += "This one seems to be tightly secured with large bolts." + /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/attackby(var/obj/item/I as obj, var/mob/user as mob) if(I.is_wrench()) to_chat(user, "The bolts are too tight for you to unscrew!") diff --git a/code/game/machinery/computer/Operating.dm b/code/game/machinery/computer/Operating.dm index d81070e1f2..5caf9edd6e 100644 --- a/code/game/machinery/computer/Operating.dm +++ b/code/game/machinery/computer/Operating.dm @@ -2,6 +2,7 @@ /obj/machinery/computer/operating name = "patient monitoring console" + desc = "Used to monitor the vitals of a patient." density = 1 anchored = 1.0 icon_keyboard = "med_key" diff --git a/code/game/machinery/computer/RCON_Console.dm b/code/game/machinery/computer/RCON_Console.dm index 82ce0775d6..f403c0749f 100644 --- a/code/game/machinery/computer/RCON_Console.dm +++ b/code/game/machinery/computer/RCON_Console.dm @@ -6,7 +6,7 @@ /obj/machinery/computer/rcon name = "\improper RCON console" - desc = "Console used to remotely control machinery on the station." + desc = "Console used to remotely control electrical machinery on the station." icon_keyboard = "power_key" icon_screen = "ai_fixer" //VOREStation Edit light_color = "#a97faa" diff --git a/code/game/machinery/computer/aifixer.dm b/code/game/machinery/computer/aifixer.dm index d52300d13d..cb49dd8420 100644 --- a/code/game/machinery/computer/aifixer.dm +++ b/code/game/machinery/computer/aifixer.dm @@ -1,5 +1,6 @@ /obj/machinery/computer/aifixer name = "\improper AI system integrity restorer" + desc = "Restores AI units to working condition, assuming you have one inside!" icon_keyboard = "rd_key" icon_screen = "ai-fixer" light_color = "#a97faa" diff --git a/code/game/machinery/computer/atmos_control.dm b/code/game/machinery/computer/atmos_control.dm index 14ba6dd005..c69cca31b5 100644 --- a/code/game/machinery/computer/atmos_control.dm +++ b/code/game/machinery/computer/atmos_control.dm @@ -4,6 +4,7 @@ /obj/machinery/computer/atmoscontrol name = "\improper Central Atmospherics Computer" + desc = "Control the station's atmospheric systems from afar! Certified atmospherics technicians only." icon_keyboard = "generic_key" icon_screen = "comm_logs" light_color = "#00b000" diff --git a/code/game/machinery/computer/camera.dm b/code/game/machinery/computer/camera.dm index c4930193b5..077e1b0d83 100644 --- a/code/game/machinery/computer/camera.dm +++ b/code/game/machinery/computer/camera.dm @@ -244,7 +244,7 @@ /obj/machinery/computer/security/wooden_tv name = "security camera monitor" - desc = "An old TV hooked into the stations camera network." + desc = "An old TV hooked into the station's camera network." icon_state = "television" icon_keyboard = null icon_screen = "detective_tv" @@ -254,7 +254,7 @@ /obj/machinery/computer/security/mining name = "outpost camera monitor" - desc = "Used to access the various cameras on the outpost." + desc = "Used to watch over mining operations." icon_keyboard = "mining_key" icon_screen = "mining" network = list("Mining Outpost") diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm index 5178d77d82..9da5397712 100644 --- a/code/game/machinery/computer/cloning.dm +++ b/code/game/machinery/computer/cloning.dm @@ -1,5 +1,6 @@ /obj/machinery/computer/cloning name = "cloning control console" + desc = "Used to start cloning cycles, as well as manage clone records." icon_keyboard = "med_key" icon_screen = "dna" light_color = "#315ab4" diff --git a/code/game/machinery/computer/guestpass.dm b/code/game/machinery/computer/guestpass.dm index d4c490c2a9..194e696019 100644 --- a/code/game/machinery/computer/guestpass.dm +++ b/code/game/machinery/computer/guestpass.dm @@ -78,6 +78,7 @@ /obj/machinery/computer/guestpass name = "guest pass terminal" + desc = "Used to print temporary passes for people. Handy!" icon_state = "guest" plane = TURF_PLANE layer = ABOVE_TURF_LAYER diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index da86e4ee3c..35d6f7e90b 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -549,7 +549,7 @@ /obj/machinery/computer/med_data/laptop name = "Medical Laptop" - desc = "A cheap laptop." + desc = "A cheap laptop. It seems to have only the medical records program." icon_state = "laptop" icon_keyboard = "laptop_key" icon_screen = "medlaptop" diff --git a/code/game/machinery/computer/prisoner.dm b/code/game/machinery/computer/prisoner.dm index cc1d5d0482..54006344f5 100644 --- a/code/game/machinery/computer/prisoner.dm +++ b/code/game/machinery/computer/prisoner.dm @@ -2,6 +2,7 @@ /obj/machinery/computer/prisoner name = "prisoner management console" + desc = "Used to keep those sneaky prisoners in line, if they have an implant." icon_keyboard = "security_key" icon_screen = "explosive" light_color = "#a91515" diff --git a/code/game/machinery/computer/prisonshuttle.dm b/code/game/machinery/computer/prisonshuttle.dm index 8fe6ffef8a..57a5f1b6ea 100644 --- a/code/game/machinery/computer/prisonshuttle.dm +++ b/code/game/machinery/computer/prisonshuttle.dm @@ -12,6 +12,7 @@ var/prison_shuttle_timeleft = 0 /obj/machinery/computer/prison_shuttle name = "prison shuttle control console" + desc = "Used to move the prison shuttle to and from its destination." icon_keyboard = "security_key" icon_screen = "syndishuttle" light_color = "#00ffff" diff --git a/code/game/machinery/computer/supply.dm b/code/game/machinery/computer/supply.dm index 6170b302a2..9e6faf69f0 100644 --- a/code/game/machinery/computer/supply.dm +++ b/code/game/machinery/computer/supply.dm @@ -5,6 +5,7 @@ // Supply requests console /obj/machinery/computer/supplycomp name = "supply ordering console" + desc = "Request crates from here! Delivery not guaranteed." icon_screen = "request" circuit = /obj/item/weapon/circuitboard/supplycomp var/authorization = 0 @@ -18,6 +19,7 @@ // Supply control console /obj/machinery/computer/supplycomp/control name = "supply control console" + desc = "Control the cargo shuttle's functions remotely." icon_keyboard = "tech_key" icon_screen = "supply" light_color = "#b88b2e" diff --git a/code/game/machinery/cryo.dm b/code/game/machinery/cryo.dm index b4927f441c..fb4c9b7923 100644 --- a/code/game/machinery/cryo.dm +++ b/code/game/machinery/cryo.dm @@ -2,6 +2,7 @@ /obj/machinery/atmospherics/unary/cryo_cell name = "cryo cell" + desc = "Used to cool people down for medical reasons. Totally." icon = 'icons/obj/cryogenics.dmi' // map only icon_state = "pod_preview" density = 1 diff --git a/code/game/machinery/doors/airlock_control.dm b/code/game/machinery/doors/airlock_control.dm index cbd0875cd3..65aa9a87d5 100644 --- a/code/game/machinery/doors/airlock_control.dm +++ b/code/game/machinery/doors/airlock_control.dm @@ -145,6 +145,7 @@ obj/machinery/airlock_sensor icon = 'icons/obj/airlock_machines.dmi' icon_state = "airlock_sensor_off" name = "airlock sensor" + desc = "Sends atmospheric readings to a nearby controller." anchored = 1 power_channel = ENVIRON diff --git a/code/game/machinery/floodlight.dm b/code/game/machinery/floodlight.dm index 729d99f419..84aa62b155 100644 --- a/code/game/machinery/floodlight.dm +++ b/code/game/machinery/floodlight.dm @@ -1,5 +1,6 @@ /obj/machinery/floodlight name = "Emergency Floodlight" + desc = "Let there be light!" icon = 'icons/obj/machines/floodlight.dmi' icon_state = "flood00" density = 1 diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index cc20f2cb4e..cc5b330ba3 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -1,5 +1,6 @@ /obj/machinery/iv_drip name = "\improper IV drip" + desc = "Helpful for giving someone blood! Or taking it away. It giveth, it taketh." icon = 'icons/obj/iv_drip.dmi' anchored = 0 density = 0 diff --git a/code/game/machinery/jukebox.dm b/code/game/machinery/jukebox.dm index 475f22a7d7..a9e5d7c154 100644 --- a/code/game/machinery/jukebox.dm +++ b/code/game/machinery/jukebox.dm @@ -10,6 +10,7 @@ /obj/machinery/media/jukebox/ name = "space jukebox" + desc = "Filled with songs both past and present!" icon = 'icons/obj/jukebox.dmi' icon_state = "jukebox2-nopower" var/state_base = "jukebox2" diff --git a/code/game/machinery/newscaster.dm b/code/game/machinery/newscaster.dm index 048c1563b9..9f61a8ab7c 100644 --- a/code/game/machinery/newscaster.dm +++ b/code/game/machinery/newscaster.dm @@ -298,7 +298,7 @@ var/list/obj/machinery/newscaster/allCasters = list() //Global list that will co if(CHANNEL.is_admin_channel) dat+="[CHANNEL.channel_name]
" else - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
" + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null]
" dat+="

Refresh" dat+="
Back" if(2) @@ -396,7 +396,7 @@ var/list/obj/machinery/newscaster/allCasters = list() //Global list that will co dat+="No feed channels found active...
" else for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
" + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null]
" dat+="
Cancel" if(11) dat+="[using_map.company_name] D-Notice Handler
" @@ -407,7 +407,7 @@ var/list/obj/machinery/newscaster/allCasters = list() //Global list that will co dat+="No feed channels found active...
" else for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
" + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null]
" dat+="
Back" if(12) diff --git a/code/game/machinery/oxygen_pump.dm b/code/game/machinery/oxygen_pump.dm index 7665fd0e83..9378cc2f92 100644 --- a/code/game/machinery/oxygen_pump.dm +++ b/code/game/machinery/oxygen_pump.dm @@ -231,6 +231,7 @@ /obj/machinery/oxygen_pump/anesthetic name = "anesthetic pump" + desc = "A wall mounted anesthetic pump with a retractable mask that someone can pull over your face to knock you out." spawn_type = /obj/item/weapon/tank/anesthetic icon_state = "anesthetic_tank" icon_state_closed = "anesthetic_tank" @@ -266,6 +267,7 @@ /obj/machinery/oxygen_pump/mobile/anesthetic name = "portable anesthetic pump" + desc = "A portable anesthetic pump with a retractable mask that someone can pull over your face to knock you out." spawn_type = /obj/item/weapon/tank/anesthetic icon_state = "medpump_n2o" icon_state_closed = "medpump_n2o" diff --git a/code/game/machinery/pipe/pipe_dispenser.dm b/code/game/machinery/pipe/pipe_dispenser.dm index 4024771084..30d44b09c0 100644 --- a/code/game/machinery/pipe/pipe_dispenser.dm +++ b/code/game/machinery/pipe/pipe_dispenser.dm @@ -1,5 +1,6 @@ /obj/machinery/pipedispenser name = "Pipe Dispenser" + desc = "A large machine that can rapidly dispense pipes." icon = 'icons/obj/stationobjs.dmi' icon_state = "pipe_d" density = 1 @@ -105,6 +106,7 @@ /obj/machinery/pipedispenser/disposal name = "Disposal Pipe Dispenser" + desc = "A large machine that can rapidly dispense pipes. This one seems to dispsense disposal pipes." icon = 'icons/obj/stationobjs.dmi' icon_state = "pipe_d" density = 1 diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index aa1a07b34c..f288db605e 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -588,7 +588,7 @@ //Departments that the cycler can paint suits to look like. var/list/departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Emergency Medical Response","Crowd Control","Exploration","Pilot Blue","Pilot") //VORESTATION EDIT //Species that the suits can be configured to fit. - var/list/species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_UNATHI,SPECIES_TAJ, SPECIES_TESHARI, "Nevrean", "Akula", "Sergal", "Flatland Zorren", "Highlander Zorren", "Vulpkanin", "Promethean", "Xenomorph Hybrid", "Xenochimera","Vasilissan", "Rapala") //VORESTATION EDIT + var/list/species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_UNATHI,SPECIES_TAJ, SPECIES_TESHARI, "Nevrean", "Akula", "Sergal", "Flatland Zorren", "Highlander Zorren", "Vulpkanin", "Promethean", "Xenomorph Hybrid", "Xenochimera","Vasilissan", "Rapala", /*yawngreyedit*/SPECIES_GREY_YW) //VORESTATION EDIT var/target_department var/target_species @@ -767,7 +767,7 @@ //Clear the access reqs, disable the safeties, and open up all paintjobs. to_chat(user, "You run the sequencer across the interface, corrupting the operating protocols.") departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Crowd Control","Emergency Medical Response","^%###^%$", "Charring") - species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_UNATHI,SPECIES_TAJ, SPECIES_TESHARI, "Nevrean", "Akula", "Sergal", "Flatland Zorren", "Highlander Zorren", "Vulpkanin", "Promethean", "Xenomorph Hybrid", "Vasilissan", "Rapala") //VORESTATION EDIT + species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_UNATHI,SPECIES_TAJ, SPECIES_TESHARI, "Nevrean", "Akula", "Sergal", "Flatland Zorren", "Highlander Zorren", "Vulpkanin", "Promethean", "Xenomorph Hybrid", "Vasilissan", "Rapala",/*YWEDITGREYADD*/SPECIES_GREY_YW) //VORESTATION EDIT emagged = 1 safeties = 0 diff --git a/code/game/machinery/suit_storage_unit_vr.dm b/code/game/machinery/suit_storage_unit_vr.dm index 504a71c2a5..5a137f2616 100644 --- a/code/game/machinery/suit_storage_unit_vr.dm +++ b/code/game/machinery/suit_storage_unit_vr.dm @@ -15,7 +15,8 @@ SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_ZORREN_FLAT, - SPECIES_ZORREN_HIGH + SPECIES_ZORREN_HIGH, + SPECIES_GREY_YW /*ywedit*/ ) // Old Exploration is too WIP to use right now diff --git a/code/game/machinery/telecomms/logbrowser.dm b/code/game/machinery/telecomms/logbrowser.dm index b9cc3428f9..41e7b64ed7 100644 --- a/code/game/machinery/telecomms/logbrowser.dm +++ b/code/game/machinery/telecomms/logbrowser.dm @@ -5,6 +5,7 @@ /obj/machinery/computer/telecomms/server name = "Telecommunications Server Monitor" + desc = "View communication logs here. Translation not guaranteed." icon_screen = "comm_logs" var/screen = 0 // the screen number: diff --git a/code/game/machinery/telecomms/telemonitor.dm b/code/game/machinery/telecomms/telemonitor.dm index 6567012a80..16ac9ada8a 100644 --- a/code/game/machinery/telecomms/telemonitor.dm +++ b/code/game/machinery/telecomms/telemonitor.dm @@ -9,6 +9,7 @@ /obj/machinery/computer/telecomms/monitor name = "Telecommunications Monitor" + desc = "Used to traverse a telecommunication network. Helpful for debugging connection issues." icon_screen = "comm_monitor" var/screen = 0 // the screen number: diff --git a/code/game/machinery/telecomms/traffic_control.dm b/code/game/machinery/telecomms/traffic_control.dm index 0d372b2aaa..a49376d7de 100644 --- a/code/game/machinery/telecomms/traffic_control.dm +++ b/code/game/machinery/telecomms/traffic_control.dm @@ -6,6 +6,7 @@ /obj/machinery/computer/telecomms/traffic name = "Telecommunications Traffic Control" + desc = "Used to upload code to telecommunication consoles for execution." icon_screen = "generic" var/screen = 0 // the screen number: diff --git a/code/game/machinery/vending_yw.dm b/code/game/machinery/vending_yw.dm index fe91dbee2b..095ac26e27 100644 --- a/code/game/machinery/vending_yw.dm +++ b/code/game/machinery/vending_yw.dm @@ -30,7 +30,7 @@ icon_deny = "sec-deny" req_access = list(access_security) products = list(/obj/item/weapon/handcuffs = 8,/obj/item/weapon/grenade/flashbang = 4,/obj/item/device/flash = 5, - /obj/item/weapon/reagent_containers/food/snacks/donut/normal = 12,/obj/item/weapon/storage/box/evidence = 6,/obj/item/weapon/gun/energy/taser =3,/obj/item/weapon/gun/projectile/sec =3) + /obj/item/weapon/reagent_containers/food/snacks/donut/normal = 12,/obj/item/weapon/storage/box/evidence = 6) contraband = list(/obj/item/clothing/glasses/sunglasses = 2,/obj/item/weapon/storage/box/donut = 2) req_log_access = access_armory has_logs = 1 \ No newline at end of file diff --git a/code/game/machinery/wall_frames.dm b/code/game/machinery/wall_frames.dm index fd1327507e..764cd378e1 100644 --- a/code/game/machinery/wall_frames.dm +++ b/code/game/machinery/wall_frames.dm @@ -105,6 +105,7 @@ desc = "Used for building lights." icon = 'icons/obj/lighting.dmi' icon_state = "tube-construct-item" + refund_amt = 2 //TFF 17/1/20 - Oversight fix for infinite steel produciton. build_machine_type = /obj/machinery/light_construct reverse = 1 @@ -145,4 +146,4 @@ icon = 'icons/obj/closet.dmi' icon_state = "fireaxe0101" refund_amt = 4 - build_machine_type = /obj/structure/fireaxecabinet \ No newline at end of file + build_machine_type = /obj/structure/fireaxecabinet diff --git a/code/game/machinery/washing_machine.dm b/code/game/machinery/washing_machine.dm index 480e613c27..480c124235 100644 --- a/code/game/machinery/washing_machine.dm +++ b/code/game/machinery/washing_machine.dm @@ -1,5 +1,6 @@ /obj/machinery/washing_machine name = "Washing Machine" + desc = "Not a hiding place." icon = 'icons/obj/machines/washing_machine.dmi' icon_state = "wm_10" density = 1 diff --git a/code/game/mecha/mecha_construction_paths.dm b/code/game/mecha/mecha_construction_paths.dm index f509c8ac26..b3909968b6 100644 --- a/code/game/mecha/mecha_construction_paths.dm +++ b/code/game/mecha/mecha_construction_paths.dm @@ -829,7 +829,7 @@ holder.icon_state = "gygax19-s" else user.visible_message("[user] pries the external armor layer from [holder].", "You pry the external armor layer from [holder].") - var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) //CHOMPedit, Fixes serenity giving Gygax Armor Plates for the reverse action... + var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) // Fixes serenity giving Gygax Armor Plates for the reverse action... MS.amount = 5 holder.icon_state = "gygax17" if(1) diff --git a/code/game/mecha/mecha_control_console.dm b/code/game/mecha/mecha_control_console.dm index de1f20fe0a..f9d4384271 100644 --- a/code/game/mecha/mecha_control_console.dm +++ b/code/game/mecha/mecha_control_console.dm @@ -1,5 +1,6 @@ /obj/machinery/computer/mecha name = "Exosuit Control" + desc = "Used to track exosuits, as well as view their logs and activate EMP beacons." icon_keyboard = "rd_key" icon_screen = "mecha" light_color = "#a97faa" diff --git a/code/game/mecha/micro/mecha_construction_paths_vr.dm b/code/game/mecha/micro/mecha_construction_paths_vr.dm index 83c6b38bc1..a63322b5a3 100644 --- a/code/game/mecha/micro/mecha_construction_paths_vr.dm +++ b/code/game/mecha/micro/mecha_construction_paths_vr.dm @@ -253,7 +253,7 @@ if(3) if(diff==FORWARD) user.visible_message("[user] installs external reinforced armor layer to [holder].", "You install external reinforced armor layer to [holder].") - qdel(used_atom)//CHOMPedit. Fixes polecat not useing it's armor plates up. + qdel(used_atom)//CHOMPedit upstream port. Fixes polecat not useing it's armor plates up. holder.icon_state = "polecat18" else user.visible_message("[user] cuts internal armor layer from [holder].", "You cut the internal armor layer from [holder].") @@ -263,8 +263,8 @@ user.visible_message("[user] secures external armor layer.", "You secure external reinforced armor layer.") holder.icon_state = "polecat19" else - user.visible_message("[user] pries external armor layer from [holder].", "You prie external armor layer from [holder].") - new /obj/item/mecha_parts/micro/part/polecat_armour(get_turf(holder))//CHOMPedit, actually gives you the polecat's armored plates back instead of plasteel. + user.visible_message("[user] pries external armor layer from [holder].", "You pry the external armor layer from [holder].") // Rykka does smol grammar fix. + new /obj/item/mecha_parts/micro/part/polecat_armour(get_turf(holder))// Actually gives you the polecat's armored plates back instead of plasteel. holder.icon_state = "polecat17" if(1) if(diff==FORWARD) diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm index 67562e5a66..59504b35c5 100644 --- a/code/game/objects/items/bodybag.dm +++ b/code/game/objects/items/bodybag.dm @@ -57,7 +57,7 @@ /obj/structure/closet/body_bag/large name = "mass grave body bag" - desc = "A massive body bag that holds as much as it does do to bluespace lining on its zipper. Shockingly compact for its storage." + desc = "A massive body bag that holds as much as it does due to bluespace lining on its zipper. Shockingly compact for its storage." icon_state = "bluebodybag_closed" icon_closed = "bluebodybag_closed" icon_opened = "bluebodybag_open" diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index 53a83c66bd..6f44d6446d 100644 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -68,6 +68,14 @@ var/global/list/obj/item/device/pda/PDAs = list() if(..(user, 1)) to_chat(user, "The time [stationtime2text()] is displayed in the corner of the screen.") +/obj/item/device/pda/CtrlClick() + if(issilicon(usr)) + return + + if(can_use(usr)) + remove_pen() + return + ..() /obj/item/device/pda/AltClick() if(issilicon(usr)) @@ -794,25 +802,20 @@ var/global/list/obj/item/device/pda/PDAs = list() mode=2 if("Ringtone") - var/t = input(U, "Please enter new ringtone", name, ttone) as text - if (in_range(src, U) && loc == U) - if (t) - if(src.hidden_uplink && hidden_uplink.check_trigger(U, lowertext(t), lowertext(lock_code))) - to_chat(U, "The PDA softly beeps.") - ui.close() - else - t = sanitize(t, 20) - ttone = t + var/t = input(U, "Please enter a new ringtone.", name, ttone) as text //Start of YW EDIT + if (in_range(src, U) && loc == U && t) + if(src.hidden_uplink && hidden_uplink.check_trigger(U, lowertext(t), lowertext(lock_code))) + to_chat(U, "The PDA softly beeps.") + ui.close() + else + ttone = sanitize(t, 20) //End of YW EDIT else ui.close() return 0 if("Newstone") var/t = input(U, "Please enter new news tone", name, newstone) as text - if (in_range(src, U) && loc == U) - if (t) - t = sanitize(t, 20) - newstone = t - else + if (in_range(src, U) && loc == U && t) + newstone = sanitize(t, 20) ui.close() return 0 if("Message") @@ -1043,6 +1046,19 @@ var/global/list/obj/item/device/pda/PDAs = list() id.loc = get_turf(src) id = null +/obj/item/device/pda/proc/remove_pen() + var/obj/item/weapon/pen/O = locate() in src + if(O) + if(istype(loc, /mob)) + var/mob/M = loc + if(M.get_active_hand() == null) + M.put_in_hands(O) + to_chat(usr, "You remove \the [O] from \the [src].") + return + O.loc = get_turf(src) + else + to_chat(usr, "This PDA does not have a pen in it.") + /obj/item/device/pda/proc/create_message(var/mob/living/U = usr, var/obj/item/device/pda/P, var/tap = 1) if(tap) U.visible_message("\The [U] taps on their PDA's screen.") @@ -1203,17 +1219,7 @@ var/global/list/obj/item/device/pda/PDAs = list() return if ( can_use(usr) ) - var/obj/item/weapon/pen/O = locate() in src - if(O) - if (istype(loc, /mob)) - var/mob/M = loc - if(M.get_active_hand() == null) - M.put_in_hands(O) - to_chat(usr, "You remove \the [O] from \the [src].") - return - O.loc = get_turf(src) - else - to_chat(usr, "This PDA does not have a pen in it.") + remove_pen() else to_chat(usr, "You cannot do this while restrained.") diff --git a/code/game/objects/items/devices/instruments.dm b/code/game/objects/items/devices/instruments.dm index 77ca6018ad..42bef09ae7 100644 --- a/code/game/objects/items/devices/instruments.dm +++ b/code/game/objects/items/devices/instruments.dm @@ -25,7 +25,7 @@ desc = "A metallic musical instrument with strings, made for all your shredding needs." icon = 'icons/obj/musician_yw.dmi' icon_state = "eguitar" - item_state = "violin" + item_state = "eguitar" attack_verb = list("smashed") instrumentId = "eguitar" instrumentExt = "ogg" diff --git a/code/game/objects/items/devices/pipe_painter.dm b/code/game/objects/items/devices/pipe_painter.dm index 7dc64a8898..54c9a9539c 100644 --- a/code/game/objects/items/devices/pipe_painter.dm +++ b/code/game/objects/items/devices/pipe_painter.dm @@ -1,5 +1,6 @@ /obj/item/device/pipe_painter name = "pipe painter" + desc = "Used to apply a even coat of paint to pipes. Atmospheric usage reccomended." icon = 'icons/obj/bureaucracy.dmi' icon_state = "labeler1" var/list/modes diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm index 747f7f7d0e..40dc7bb1f7 100644 --- a/code/game/objects/items/devices/radio/radio.dm +++ b/code/game/objects/items/devices/radio/radio.dm @@ -27,6 +27,7 @@ var/global/list/default_medbay_channels = list( /obj/item/device/radio icon = 'icons/obj/radio_vr.dmi' //VOREStation Edit name = "shortwave radio" //VOREStation Edit + desc = "Used to talk to people when headsets don't function. Range is limited." suffix = "\[3\]" icon_state = "walkietalkie" item_state = "radio" diff --git a/code/game/objects/items/devices/violin.dm b/code/game/objects/items/devices/violin.dm index 4212e147f5..ce6b929f94 100644 --- a/code/game/objects/items/devices/violin.dm +++ b/code/game/objects/items/devices/violin.dm @@ -6,6 +6,10 @@ var/instrumentExt = "mid" icon = 'icons/obj/musician.dmi' force = 10 + item_icons = list( + slot_l_hand_str = 'icons/mob/items/lefthand_instruments.dmi', + slot_r_hand_str = 'icons/mob/items/righthand_instruments.dmi', + ) /obj/item/device/instrument/New() ..() @@ -40,10 +44,6 @@ attack_verb = list("smashed") instrumentId = "violin" item_state = "violin" - item_icons = list( - slot_l_hand_str = 'icons/mob/items/lefthand_instruments.dmi', - slot_r_hand_str = 'icons/mob/items/righthand_instruments.dmi', - ) /obj/item/device/instrument/violin/gold name = "golden violin" diff --git a/code/game/objects/items/weapons/circuitboards/frame.dm b/code/game/objects/items/weapons/circuitboards/frame.dm index 6b59d13ea5..5bd472be6c 100644 --- a/code/game/objects/items/weapons/circuitboards/frame.dm +++ b/code/game/objects/items/weapons/circuitboards/frame.dm @@ -249,3 +249,14 @@ /obj/item/weapon/stock_parts/capacitor = 1, /obj/item/weapon/stock_parts/spring = 1, /obj/item/stack/cable_coil = 5) + +/obj/item/weapon/circuitboard/microwave/advanced + name = T_BOARD("deluxe microwave") + build_path = /obj/machinery/microwave/advanced + board_type = new /datum/frame/frame_types/microwave + matter = list(DEFAULT_WALL_MATERIAL = 50, "glass" = 50) + req_components = list( + /obj/item/weapon/stock_parts/console_screen = 1, + /obj/item/weapon/stock_parts/motor = 1, + /obj/item/weapon/stock_parts/capacitor = 1) + diff --git a/code/game/objects/items/weapons/circuitboards/other.dm b/code/game/objects/items/weapons/circuitboards/other.dm index da70371e4a..7770c71c8e 100644 --- a/code/game/objects/items/weapons/circuitboards/other.dm +++ b/code/game/objects/items/weapons/circuitboards/other.dm @@ -7,4 +7,13 @@ /obj/item/weapon/circuitboard/aicore name = T_BOARD("AI core") origin_tech = list(TECH_DATA = 4, TECH_BIO = 2) - board_type = "other" \ No newline at end of file + board_type = "other" + +/obj/item/weapon/circuitboard/chem_master + name = T_BOARD("ChemMaster 3000") + build_path = /obj/machinery/chem_master + board_type = new /datum/frame/frame_types/machine + origin_tech = list(TECH_DATA = 3, TECH_MAGNET = 2) + req_components = list( + /obj/item/weapon/stock_parts/matter_bin = 2, + /obj/item/weapon/stock_parts/manipulator = 2) \ No newline at end of file diff --git a/code/game/objects/items/weapons/grenades/spawnergrenade.dm b/code/game/objects/items/weapons/grenades/spawnergrenade.dm index 625fb11e0c..5cab658098 100644 --- a/code/game/objects/items/weapons/grenades/spawnergrenade.dm +++ b/code/game/objects/items/weapons/grenades/spawnergrenade.dm @@ -1,5 +1,5 @@ /obj/item/weapon/grenade/spawnergrenade - desc = "It is set to detonate in 5 seconds. It will unleash unleash an unspecified anomaly into the vicinity." + desc = "It is set to detonate in 5 seconds. It will unleash an unspecified anomaly into the vicinity." name = "delivery grenade" icon = 'icons/obj/grenade.dmi' icon_state = "delivery" @@ -76,4 +76,4 @@ throw_speed = 1 throw_range = 4 w_class = ITEMSIZE_LARGE - deliveryamt = 6 \ No newline at end of file + deliveryamt = 6 diff --git a/code/game/objects/items/weapons/manuals.dm b/code/game/objects/items/weapons/manuals.dm index 4afc7b3c3f..62fb76bffe 100644 --- a/code/game/objects/items/weapons/manuals.dm +++ b/code/game/objects/items/weapons/manuals.dm @@ -987,6 +987,7 @@ /obj/item/weapon/book/manual/barman_recipes name = "Barman Recipes" + desc = "For the enterprising drink server." icon_state = "barbook" author = "Sir John Rose" title = "Barman Recipes" diff --git a/code/game/objects/items/weapons/material/material_weapons.dm b/code/game/objects/items/weapons/material/material_weapons.dm index 3f2b1978d3..9d4592c17c 100644 --- a/code/game/objects/items/weapons/material/material_weapons.dm +++ b/code/game/objects/items/weapons/material/material_weapons.dm @@ -26,6 +26,7 @@ var/default_material = DEFAULT_WALL_MATERIAL var/material/material var/drops_debris = 1 + var/named_from_material = 1 //YW EDIT, Does it prepend the material's name to it's name? /obj/item/weapon/material/New(var/newloc, var/material_key) ..(newloc) @@ -65,7 +66,8 @@ if(!material) qdel(src) else - name = "[material.display_name] [initial(name)]" + if(named_from_material) //YW EDIT + name = "[material.display_name] [initial(name)]" health = round(material.integrity/10) if(applies_material_colour) color = material.icon_colour diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 80dc700aca..44b378113b 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -103,6 +103,7 @@ /obj/item/weapon/storage/box/beakers name = "box of beakers" + desc = "A box full of beakers." icon_state = "beaker" starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker = 7) diff --git a/code/game/objects/items/weapons/storage/fancy.dm b/code/game/objects/items/weapons/storage/fancy.dm index 1d1934bf8a..e9a809e55c 100644 --- a/code/game/objects/items/weapons/storage/fancy.dm +++ b/code/game/objects/items/weapons/storage/fancy.dm @@ -357,6 +357,7 @@ icon_state = "vialbox6" icon_type = "vial" name = "vial storage box" + desc = "A helpful rack to hold test tubes." storage_slots = 6 can_hold = list(/obj/item/weapon/reagent_containers/glass/beaker/vial) starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/vial = 6) diff --git a/code/game/objects/items/weapons/storage/misc.dm b/code/game/objects/items/weapons/storage/misc.dm index b22ef4166f..3d3c3aad83 100644 --- a/code/game/objects/items/weapons/storage/misc.dm +++ b/code/game/objects/items/weapons/storage/misc.dm @@ -6,6 +6,7 @@ icon = 'icons/obj/food.dmi' icon_state = "donutbox" name = "donut box" + desc = "A box that holds tasty donuts, if you're lucky." max_storage_space = ITEMSIZE_COST_SMALL * 6 can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/donut) foldable = /obj/item/stack/material/cardboard diff --git a/code/game/objects/items/weapons/storage/secure.dm b/code/game/objects/items/weapons/storage/secure.dm index 081dcdcb2d..7859ee97d5 100644 --- a/code/game/objects/items/weapons/storage/secure.dm +++ b/code/game/objects/items/weapons/storage/secure.dm @@ -173,6 +173,7 @@ /obj/item/weapon/storage/secure/safe name = "secure safe" + desc = "It doesn't seem all that secure. Oh well, it'll do." icon = 'icons/obj/storage.dmi' icon_state = "safe" icon_opened = "safe0" diff --git a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm index b9baafaa6b..6aafe31f4a 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm @@ -21,12 +21,13 @@ /obj/item/weapon/melee/baton/loaded, /obj/item/clothing/glasses/sunglasses, /obj/item/clothing/glasses/sunglasses/medhud, - /obj/item/clothing/head/beret/centcom/officer, + /obj/item/clothing/head/beret/blueshield, /obj/item/clothing/head/helmet/dermal, /obj/item/clothing/under/yw/blueshield, /obj/item/clothing/under/yw/blueshield2, /obj/item/clothing/suit/armor/yw/blueshield, /obj/item/clothing/suit/armor/yw/blueshieldcoat, + /obj/item/clothing/accessory/poncho/roles/cloak/blueshield, /obj/item/clothing/shoes/laceup, /obj/item/clothing/accessory/holster/leg, /obj/item/clothing/shoes/boots/jackboots, diff --git a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm index 95cd054282..4710efdbd4 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm @@ -139,8 +139,7 @@ /obj/item/taperoll/atmos, /obj/item/clothing/suit/storage/hooded/wintercoat/engineering/atmos, /obj/item/clothing/shoes/boots/winter/atmos, - /obj/item/weapon/tank/emergency/oxygen/engi, - /obj/item/weapon/pipe_dispenser) //YW Addition + /obj/item/weapon/tank/emergency/oxygen/engi) //removed RPD from lockers. Now starts on desk in map. YW edit /obj/structure/closet/secure_closet/atmos_personal/Initialize() if(prob(50)) diff --git a/code/game/objects/structures/curtains.dm b/code/game/objects/structures/curtains.dm index 7ac9bf4d88..2fbe187af3 100644 --- a/code/game/objects/structures/curtains.dm +++ b/code/game/objects/structures/curtains.dm @@ -1,5 +1,6 @@ /obj/structure/curtain name = "curtain" + desc = "The show must go on! At least, until you close these." icon = 'icons/obj/curtain.dmi' icon_state = "closed" plane = MOB_PLANE diff --git a/code/game/objects/structures/trash_pile.dm b/code/game/objects/structures/trash_pile.dm index 007343f175..36a1d9a285 100644 --- a/code/game/objects/structures/trash_pile.dm +++ b/code/game/objects/structures/trash_pile.dm @@ -245,8 +245,7 @@ prob(1);/obj/item/weapon/material/knife/tacknife, prob(1);/obj/item/weapon/storage/box/survival/space, prob(1);/obj/item/weapon/storage/secure/briefcase/trashmoney, - prob(1);/obj/item/weapon/reagent_containers/syringe/steroid, - prob(1);/obj/item/seeds/gnomes) + prob(1);/obj/item/weapon/reagent_containers/syringe/steroid) var/obj/item/I = new path() return I diff --git a/code/game/turfs/simulated/wall_attacks.dm b/code/game/turfs/simulated/wall_attacks.dm index 676ad392f0..f9ae1e7bc3 100644 --- a/code/game/turfs/simulated/wall_attacks.dm +++ b/code/game/turfs/simulated/wall_attacks.dm @@ -138,7 +138,7 @@ /turf/simulated/wall/attackby(obj/item/weapon/W as obj, mob/user as mob) user.setClickCooldown(user.get_attack_speed(W)) - if (!user.) + if (!user.IsAdvancedToolUser()) to_chat(user, "You don't have the dexterity to do this!") return diff --git a/code/modules/Phorochemistry/phororeagent.dm b/code/modules/Phorochemistry/phororeagent.dm index 15a4ea9ab5..7b5fa8747c 100644 --- a/code/modules/Phorochemistry/phororeagent.dm +++ b/code/modules/Phorochemistry/phororeagent.dm @@ -117,27 +117,80 @@ var/induromol_code = rand(1, 50) var/love_name /datum/reagent/phororeagent/love_potion/on_mob_life(var/mob/living/M as mob, var/alien) - if(ishuman(M)) - if(!love_name) - var/dist = 100 - for(var/mob/living/carbon/human/H in view(M)) - if(H == M) - continue - var/distTo = sqrt(((M.x - H.x) ** 2) + ((M.y - H.y) ** 2)) - if(distTo < dist) - dist = distTo - love_name = H.name + if(!istype(holder, /datum/reagents/metabolism/bloodstream)) + if(ishuman(M)) + if(!love_name) + var/dist = 100 + for(var/mob/living/carbon/human/H in view(M)) + if(H == M) + continue + var/distTo = sqrt(((M.x - H.x) ** 2) + ((M.y - H.y) ** 2)) + if(distTo < dist) + dist = distTo + love_name = H.name - if(love_name) - M << "You see [love_name]..." - spawn(0) - sleep(10) - M << "They are beautiful" + if(love_name) + M << "You see [love_name]..." + spawn(0) + sleep(10) + M << "They are beautiful" - if(M.mind) //give protect objective - var/datum/objective/protection = new/datum/objective() - protection.explanation_text = "Protect [love_name] at all costs" - M.mind.objectives.Add(protection) + if(M.mind) //give protect objective + var/datum/objective/protection = new/datum/objective() + protection.explanation_text = "Protect [love_name] at all costs" + M.mind.objectives.Add(protection) + var/obj_count = 1 + M << "Your current objectives:" + for(var/datum/objective/objective in M.mind.objectives) + M << "Objective #[obj_count]: [objective.explanation_text]" + obj_count++ + + M << "
" + else + if(prob(5)) + if(prob(98)) + var/list/love_messages = list("You feel strong affection towards [love_name]", + "You can't stop thinking about [love_name]", "[love_name] is love, [love_name] is life", + "[love_name] seems irresistable", "You cannot fathom life without [love_name]", + "[love_name] seems to be the essence of perfection", + "[love_name] can never be allowed to leave your side") + + M << "[pick(love_messages)]" + + else + M << "You begin to build a trouser tent" + return ..() + +/datum/reagent/phororeagent/love_potion/on_remove(var/atom/A) + if(!istype(holder, /datum/reagents/metabolism/bloodstream)) + if(istype(A, /mob/living)) + var/mob/living/M = A + if(M.mind) + var/message = "Your mind feels a lot more focused" + var/end_message = "" + var/list/message2list = list() + var/i = 1 + var/length = lentext(message) + while(i <= length) + message2list += copytext(message, i, i + 1) + i++ + var/col_perc = 1 / length + var/col_inc = 0 + var/red = 0 + var/green = 0 + var/blue = 0 + for(var/char in message2list) //fade from pink to black text + red = (227 * (1 - col_inc)) + green = (32 * (1 - col_inc)) + blue = (155 * (1 - col_inc)) + end_message += "[char]" + col_inc += col_perc + + M << end_message + + for(var/datum/objective/O in M.mind.objectives) + if(findtext(O.explanation_text, "Protect [love_name] at all costs")) + M.mind.objectives.Remove(O) var/obj_count = 1 M << "Your current objectives:" for(var/datum/objective/objective in M.mind.objectives) @@ -145,58 +198,6 @@ var/induromol_code = rand(1, 50) obj_count++ M << "
" - else - if(prob(5)) - if(prob(98)) - var/list/love_messages = list("You feel strong affection towards [love_name]", - "You can't stop thinking about [love_name]", "[love_name] is love, [love_name] is life", - "[love_name] seems irresistable", "You cannot fathom life without [love_name]", - "[love_name] seems to be the essence of perfection", - "[love_name] can never be allowed to leave your side") - - M << "[pick(love_messages)]" - - else - M << "You begin to build a trouser tent" - return ..() - -/datum/reagent/phororeagent/love_potion/on_remove(var/atom/A) - if(istype(A, /mob/living)) - var/mob/living/M = A - if(M.mind) - var/message = "Your mind feels a lot more focused" - var/end_message = "" - var/list/message2list = list() - var/i = 1 - var/length = length(message) - while(i <= length) - message2list += copytext(message, i, i + 1) - i++ - var/col_perc = 1 / length - var/col_inc = 0 - var/red = 0 - var/green = 0 - var/blue = 0 - for(var/char in message2list) //fade from pink to black text - red = (227 * (1 - col_inc)) - green = (32 * (1 - col_inc)) - blue = (155 * (1 - col_inc)) - end_message += "[char]" - col_inc += col_perc - - M << end_message - - for(var/datum/objective/O in M.mind.objectives) - if(findtext(O.explanation_text, "Protect [love_name] at all costs")) - M.mind.objectives.Remove(O) - var/obj_count = 1 - M << "Your current objectives:" - for(var/datum/objective/objective in M.mind.objectives) - M << "Objective #[obj_count]: [objective.explanation_text]" - obj_count++ - - M << "
" - break /datum/reagent/phororeagent/love_potion/on_mob_death(var/mob/M) //update objectives @@ -676,9 +677,10 @@ var/induromol_code = rand(1, 50) /datum/reagent/phororeagent/rad_x id = "rad_x" name = "Rad-X" - description = "Metabolizes only when absorbing radiation damage" + description = "Metabolizes slowly until absorbing radiation damage" color = "#64110B" - metabolism = 0 + metabolism = 0.15 + overdose = 45 /datum/reagent/phororeagent/rad_x/on_mob_life(var/mob/living/M as mob, var/alien) var/metabolize = max(M.radiation - 25, 0) diff --git a/code/modules/admin/NewBan.dm b/code/modules/admin/NewBan.dm index 0b3899ad99..18efe723f0 100644 --- a/code/modules/admin/NewBan.dm +++ b/code/modules/admin/NewBan.dm @@ -119,6 +119,7 @@ var/savefile/Banlist Banlist["temp"] << temp if (temp) Banlist["minutes"] << bantimestamp + admin_action_message(bannedby, ckey, "banned", reason, temp ? minutes : -1) //VOREStation Add return 1 /proc/RemoveBan(foldername) @@ -147,7 +148,7 @@ var/savefile/Banlist Banlist.cd = "/base" Banlist.dir.Remove(A) continue - + admin_action_message(usr.key, key, "unbanned", "\[Unban\]", 0) //VOREStation Add return 1 /proc/GetExp(minutes as num) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index c23a6020b0..500bc42633 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -369,7 +369,7 @@ proc/admin_notice(var/message, var/rights) if(CHANNEL.is_admin_channel) dat+="[CHANNEL.channel_name]
" else - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
" + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null]
" dat+={"

Refresh
Back "} @@ -453,7 +453,7 @@ proc/admin_notice(var/message, var/rights) dat+="No feed channels found active...
" else for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
" + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null]
" dat+="
Cancel" if(11) dat+={" @@ -466,7 +466,7 @@ proc/admin_notice(var/message, var/rights) dat+="No feed channels found active...
" else for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
" + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null]
" dat+="
Back" if(12) @@ -1223,7 +1223,7 @@ var/datum/announcement/minor/admin_min_announcer = new out += "Autotraitor disabled.
" out += "All antag ids:" - if(ticker.mode.antag_templates && ticker.mode.antag_templates.len). + if(ticker.mode.antag_templates && ticker.mode.antag_templates.len) for(var/datum/antagonist/antag in ticker.mode.antag_templates) antag.update_current_antag_max() out += " [antag.id]" @@ -1532,9 +1532,8 @@ datum/admins/var/obj/item/weapon/paper/admin/faxreply // var to hold fax replies P.stamps += "
This paper has been stamped by the [P.origin] Quantum Relay." var/image/stampoverlay = image('icons/obj/bureaucracy.dmi') - var/{x; y;} - x = rand(-2, 0) - y = rand(-1, 2) + var/x = rand(-2, 0) + var/y = rand(-1, 2) P.offset_x += x P.offset_y += y stampoverlay.pixel_x = x diff --git a/code/modules/admin/admin_secrets.dm b/code/modules/admin/admin_secrets.dm index a0e5e24804..22430f17a3 100644 --- a/code/modules/admin/admin_secrets.dm +++ b/code/modules/admin/admin_secrets.dm @@ -28,10 +28,7 @@ var/datum/admin_secrets/admin_secrets = new() /datum/admin_secret_category var/name = "" var/desc = "" - var/list/datum/admin_secret_item/items - -/datum/admin_secret_category - items = list() + var/list/datum/admin_secret_item/items = list() /datum/admin_secret_category/proc/can_view(var/mob/user) for(var/datum/admin_secret_item/item in items) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 4dab19b66f..ddc39fb825 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -185,7 +185,8 @@ var/list/admin_verbs_server = list( /client/proc/modify_server_news, /client/proc/recipe_dump, /client/proc/panicbunker, - /client/proc/paranoia_logging + /client/proc/paranoia_logging, + /client/proc/ip_reputation ) var/list/admin_verbs_debug = list( diff --git a/code/modules/admin/newbanjob.dm b/code/modules/admin/newbanjob.dm index 0c3e560f78..9b1d2eeaa3 100644 --- a/code/modules/admin/newbanjob.dm +++ b/code/modules/admin/newbanjob.dm @@ -154,7 +154,7 @@ var/savefile/Banlistjob Banlistjob["temp"] << temp if (temp) Banlistjob["minutes"] << bantimestamp - + admin_action_message(bannedby, ckey, "jobbanned-"+rank, reason, temp ? minutes : -1) //VOREStation Add return 1 /proc/RemoveBanjob(foldername) @@ -185,7 +185,7 @@ var/savefile/Banlistjob Banlistjob.cd = "/base" Banlistjob.dir.Remove(A) continue - + admin_action_message(usr.key, key, "unjobbanned-"+rank, "\[Unban\]", 0) //VOREStation Add return 1 /proc/GetBanExpjob(minutes as num) diff --git a/code/modules/admin/player_notes.dm b/code/modules/admin/player_notes.dm index dee9a69366..19c23c537e 100644 --- a/code/modules/admin/player_notes.dm +++ b/code/modules/admin/player_notes.dm @@ -105,7 +105,7 @@ datum/admins/proc/notes_gethtml(var/ckey) message_admins("[key_name_admin(user)] has edited [key]'s notes.") log_admin("[key_name(user)] has edited [key]'s notes.") - + admin_action_message(user.key, key, "added note on", note, 0) //VOREStation Add del(info) // savefile, so NOT qdel //Updating list of keys with notes on them @@ -130,7 +130,7 @@ datum/admins/proc/notes_gethtml(var/ckey) message_admins("[key_name_admin(usr)] deleted one of [key]'s notes.") log_admin("[key_name(usr)] deleted one of [key]'s notes.") - + admin_action_message(usr.key, key, "deleted note on", "\[Note gone\]", 0) //VOREStation Add qdel(info) /proc/show_player_info_irc(var/key as text) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 63959aed86..07168a4e32 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -827,6 +827,7 @@ log_admin("[key_name(usr)] booted [key_name(M)] for reason: '[reason]'.") message_admins("[key_name_admin(usr)] booted [key_name_admin(M)] for reason '[reason]'.", 1) //M.client = null + admin_action_message(usr.key, M.key, "kicked", reason, 0) //VOREStation Add qdel(M.client) else if(href_list["removejobban"]) diff --git a/code/modules/admin/verbs/panicbunker.dm b/code/modules/admin/verbs/panicbunker.dm index a997fdcb11..85ca43f447 100644 --- a/code/modules/admin/verbs/panicbunker.dm +++ b/code/modules/admin/verbs/panicbunker.dm @@ -11,9 +11,9 @@ config.panic_bunker = (!config.panic_bunker) - log_and_message_admins("[key_name(usr)] has toggled the Panic Bunker, it is now [(config.panic_bunker?"on":"off")]") + log_and_message_admins("[key_name(usr)] has toggled the Panic Bunker, it is now [(config.panic_bunker?"on":"off")].") if (config.panic_bunker && (!dbcon || !dbcon.IsConnected())) - message_admins("The Database is not connected! Panic bunker will not work until the connection is reestablished.") + message_admins("The database is not connected! Panic bunker will not work until the connection is reestablished.") feedback_add_details("admin_verb","PANIC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/proc/paranoia_logging() @@ -25,7 +25,21 @@ config.paranoia_logging = (!config.paranoia_logging) - log_and_message_admins("[key_name(usr)] has toggled Paranoia Logging, it is now [(config.paranoia_logging?"on":"off")]") + log_and_message_admins("[key_name(usr)] has toggled Paranoia Logging, it is now [(config.paranoia_logging?"on":"off")].") if (config.paranoia_logging && (!dbcon || !dbcon.IsConnected())) - message_admins("The Database is not connected! Paranoia logging will not be able to give 'player age' (time since first connection) warnings, only Byond account warnings.") + message_admins("The database is not connected! Paranoia logging will not be able to give 'player age' (time since first connection) warnings, only Byond account warnings.") feedback_add_details("admin_verb","PARLOG") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + +/client/proc/ip_reputation() + set category = "Server" + set name = "Toggle IP Rep Checks" + + if(!check_rights(R_ADMIN)) + return + + config.ip_reputation = (!config.ip_reputation) + + log_and_message_admins("[key_name(usr)] has toggled IP reputation checks, it is now [(config.ip_reputation?"on":"off")].") + if (config.ip_reputation && (!dbcon || !dbcon.IsConnected())) + message_admins("The database is not connected! IP reputation logging will not be able to allow existing players to bypass the reputation checks (if that is enabled).") + feedback_add_details("admin_verb","IPREP") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index 8b1100bc6a..8cca3890f2 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -288,7 +288,6 @@ log_admin("Skipping IP reputation check on [key] with [address] because of player age") else if(update_ip_reputation()) //It is set now if(ip_reputation >= config.ipr_bad_score) //It's bad - //Log it if(config.paranoia_logging) //We don't block, but we want paranoia log messages log_and_message_admins("[key] at [address] has bad IP reputation: [ip_reputation]. Will be kicked if enabled in config.") @@ -297,7 +296,7 @@ //Take action if required if(config.ipr_block_bad_ips && config.ipr_allow_existing) //We allow players of an age, but you don't meet it - to_chat(src,"Sorry, we only allow VPN/Proxy/Tor usage for players who have spent at least [config.ipr_minimum_age] days on the server. If you are unable to use the internet without your VPN/Proxy/Tor, please contact an admin out-of-game to let them know so we can accomidate this.") + to_chat(src,"Sorry, we only allow VPN/Proxy/Tor usage for players who have spent at least [config.ipr_minimum_age] days on the server. If you are unable to use the internet without your VPN/Proxy/Tor, please contact an admin out-of-game to let them know so we can accommodate this.") qdel(src) return 0 else if(config.ipr_block_bad_ips) //We don't allow players of any particular age @@ -499,4 +498,4 @@ client/verb/character_setup() //Went fine else ip_reputation = score - return TRUE \ No newline at end of file + return TRUE diff --git a/code/modules/client/preference_setup/general/04_equipment.dm b/code/modules/client/preference_setup/general/04_equipment.dm index 7197635e5b..19159fd69a 100644 --- a/code/modules/client/preference_setup/general/04_equipment.dm +++ b/code/modules/client/preference_setup/general/04_equipment.dm @@ -12,6 +12,7 @@ S["backbag"] >> pref.backbag S["pdachoice"] >> pref.pdachoice S["communicator_visibility"] >> pref.communicator_visibility + S["ttone"] >> pref.ttone //YW Edit /datum/category_item/player_setup_item/general/equipment/save_character(var/savefile/S) S["all_underwear"] << pref.all_underwear @@ -19,6 +20,7 @@ S["backbag"] << pref.backbag S["pdachoice"] << pref.pdachoice S["communicator_visibility"] << pref.communicator_visibility + S["ttone"] << pref.ttone // YW EDIT // Moved from /datum/preferences/proc/copy_to() /datum/category_item/player_setup_item/general/equipment/copy_to_mob(var/mob/living/carbon/human/character) @@ -73,6 +75,7 @@ pref.all_underwear_metadata -= underwear_metadata pref.backbag = sanitize_integer(pref.backbag, 1, backbaglist.len, initial(pref.backbag)) pref.pdachoice = sanitize_integer(pref.pdachoice, 1, pdachoicelist.len, initial(pref.pdachoice)) + pref.ttone = sanitize(pref.ttone, 20)//YW Edit /datum/category_item/player_setup_item/general/equipment/content() . = list() @@ -89,6 +92,7 @@ . += "Backpack Type: [backbaglist[pref.backbag]]
" . += "PDA Type: [pdachoicelist[pref.pdachoice]]
" . += "Communicator Visibility: [(pref.communicator_visibility) ? "Yes" : "No"]
" + . += "Ringtone (leave blank for job default): [pref.ttone]
" //YW EDIT return jointext(.,null) @@ -146,6 +150,10 @@ if(CanUseTopic(user)) pref.communicator_visibility = !pref.communicator_visibility return TOPIC_REFRESH + else if(href_list["set_ttone"]) //Start of YW EDIT + if(CanUseTopic(user)) + pref.ttone = sanitize(input(user, "Please enter a new ringtone.", "Character Preference") as null|text, 20) + return TOPIC_REFRESH //End of YW EDIT return ..() \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout.dm b/code/modules/client/preference_setup/loadout/loadout.dm index 295038c2b1..93242d4fdf 100644 --- a/code/modules/client/preference_setup/loadout/loadout.dm +++ b/code/modules/client/preference_setup/loadout/loadout.dm @@ -273,10 +273,12 @@ var/list/gear_datums = list() /datum/gear/proc/spawn_item(var/location, var/metadata) var/datum/gear_data/gd = new(path, location) for(var/datum/gear_tweak/gt in gear_tweaks) - gt.tweak_gear_data(metadata["[gt]"], gd) + if(gear_tweaks.len) + gt.tweak_gear_data(metadata["[gt]"], gd) var/item = new gd.path(gd.location) for(var/datum/gear_tweak/gt in gear_tweaks) - gt.tweak_item(item, metadata["[gt]"]) + if(gear_tweaks.len) + gt.tweak_item(item, metadata["[gt]"]) var/mob/M = location if(istype(M) && exploitable) //Update exploitable info records for the mob without creating a duplicate object at their feet. M.amend_exploitable(item) diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index deedbe0a04..8ae13a2930 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -74,7 +74,7 @@ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic") /datum/gear/accessory/khcrystal - display_name = "KH Life Crystal" + display_name = "Life Crystal" path = /obj/item/weapon/storage/box/khcrystal description = "A small necklace device that will notify an offsite cloning facility should you expire after activating it." diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm index 11dbbb06eb..6b167ef356 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm @@ -346,6 +346,22 @@ // F CKEYS +//Foxicide +//Kaith +/datum/gear/fluff/kaith_modkit + path = /obj/item/device/modkit_conversion/fluff/kaith_knife_kit + display_name = "Kaith's modkit" + description = "A kit containing all the needed tools and parts to modify a survival knife" + ckeywhitelist = list("foxicide") + character_name = list("Kaith") + +/datum/gear/fluff/kaith_bag + path = /obj/item/weapon/storage/backpack/fluff/kaith + display_name = "Light duffle bag" + description = "A compact duffle bag, meant for long hikes." + ckeywhitelist = list("foxicide") + character_name = list("Kaith") + // G CKEYS //generalpantsu @@ -725,6 +741,14 @@ character_name = list("Mocha") allowed_roles = list("Explorer", "Pathfinder") +/datum/gear/fluff/mocha_cloak + path = /obj/item/clothing/accessory/poncho/cloak/fluff/mocha + display_name = "Warden Cloak" + description = "A cloak denoting the rank of a warden, the name \"Mocha\" is embroidered along the collar in red lettering" + ckeywhitelist = list("mocatheporg1") + character_name = list("Mocha") + allowed_roles = list("Warden") + // N CKEYS //NESgamer190 /datum/gear/fluff/lucy_flask diff --git a/code/modules/client/preference_setup/loadout/loadout_head_yw.dm b/code/modules/client/preference_setup/loadout/loadout_head_yw.dm new file mode 100644 index 0000000000..e0178fa705 --- /dev/null +++ b/code/modules/client/preference_setup/loadout/loadout_head_yw.dm @@ -0,0 +1,4 @@ +/datum/gear/head/beret/blueshield + display_name = "beret, blueshield" + path = /obj/item/clothing/head/beret/blueshield + allowed_roles = list("Blueshield Guard") \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_suit_yw.dm b/code/modules/client/preference_setup/loadout/loadout_suit_yw.dm new file mode 100644 index 0000000000..bd62bf72b0 --- /dev/null +++ b/code/modules/client/preference_setup/loadout/loadout_suit_yw.dm @@ -0,0 +1,4 @@ +/datum/gear/suit/roles/poncho/cloak/blueshield + display_name = "cloak, blueshield" + path = /obj/item/clothing/accessory/poncho/roles/cloak/blueshield + allowed_roles = list("Blueshield Guard") \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index 0c1fc106f5..a4451e4392 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -183,7 +183,7 @@ /datum/gear/uniform/job_turtle/medical display_name = "turtleneck, medical" path = /obj/item/clothing/under/rank/medical/turtleneck - allowed_roles = list("Chief Medical Officer", "Paramedic", "Medical Doctor", "Psychologist", "Search and Rescue", "Chemist") + allowed_roles = list("Chief Medical Officer", "Paramedic", "Medical Doctor", "Psychiatrist", "Search and Rescue", "Chemist") /datum/gear/uniform/jeans_qm display_name = "jeans, QM" diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index c768d292c7..29c7f38ccd 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -126,6 +126,9 @@ datum/preferences // Communicator identity data var/communicator_visibility = 0 + // Default ringtone for character; if blank, use job default. YW EDIT + var/ttone = null + var/datum/category_collection/player_setup_collection/player_setup var/datum/browser/panel diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index cce0641f3c..455598d9a1 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -457,8 +457,8 @@ SPECIES_TESHARI = 'icons/mob/species/seromi/masks.dmi', SPECIES_VOX = 'icons/mob/species/vox/masks.dmi', SPECIES_TAJ = 'icons/mob/species/tajaran/mask.dmi', - SPECIES_UNATHI = 'icons/mob/species/unathi/mask.dmi' - ) + SPECIES_UNATHI = 'icons/mob/species/unathi/mask.dmi', + SPECIES_GREY_YW = 'icons/mob/species/grey/mask.dmi'/*ywedit*/) var/voicechange = 0 var/list/say_messages @@ -664,7 +664,8 @@ var/rolled_sleeves = -1 //0 = unrolled, 1 = rolled, -1 = cannot be toggled sprite_sheets = list( SPECIES_TESHARI = 'icons/mob/species/seromi/uniform.dmi', - SPECIES_VOX = 'icons/mob/species/vox/uniform.dmi' + SPECIES_VOX = 'icons/mob/species/vox/uniform.dmi', + SPECIES_GREY_YW = 'icons/mob/species/grey/uniform.dmi'/*YWedit*/ ) //convenience var for defining the icon state for the overlay used when the clothing is worn. diff --git a/code/modules/clothing/clothing_vr.dm b/code/modules/clothing/clothing_vr.dm index f81dd53c18..0ce0337988 100644 --- a/code/modules/clothing/clothing_vr.dm +++ b/code/modules/clothing/clothing_vr.dm @@ -114,7 +114,8 @@ SPECIES_AKULA = 'icons/mob/species/akula/mask_vr.dmi', SPECIES_VULPKANIN = 'icons/mob/species/vulpkanin/mask.dmi', SPECIES_XENOCHIMERA = 'icons/mob/species/tajaran/mask_vr.dmi', - SPECIES_WEREBEAST = 'icons/mob/species/werebeast/masks.dmi' + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/masks.dmi', + SPECIES_GREY_YW = 'icons/mob/species/grey/mask.dmi'/*ywedit*/ ) //"Spider" = 'icons/mob/species/spider/mask_vr.dmi' Add this later when they have custom mask sprites and everything. @@ -160,7 +161,9 @@ sprite_sheets = list( SPECIES_TESHARI = 'icons/mob/species/seromi/uniform.dmi', SPECIES_VOX = 'icons/mob/species/vox/uniform.dmi', - SPECIES_WEREBEAST = 'icons/mob/species/werebeast/uniform.dmi') + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/uniform.dmi', + SPECIES_GREY_YW = 'icons/mob/species/grey/uniform.dmi'/*ywedit*/ + ) //TFF 5/8/19 - define numbers and specifics for suit sensor settings /obj/item/clothing/under/New(var/mob/living/carbon/human/H) diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index 072e7e868d..b518427e81 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -31,7 +31,8 @@ BLIND // can't see anything sprite_sheets = list( "Teshari" = 'icons/mob/species/seromi/eyes.dmi', "Vox" = 'icons/mob/species/vox/eyes.dmi', - "Sergal" = 'icons/mob/species/sergal/eyes_yw.dmi' + "Sergal" = 'icons/mob/species/sergal/eyes_yw.dmi', + SPECIES_GREY_YW = 'icons/mob/species/grey/eyes.dmi'/*ywedit*/ ) /obj/item/clothing/glasses/update_clothing_icon() diff --git a/code/modules/clothing/glasses/glasses_vr.dm b/code/modules/clothing/glasses/glasses_vr.dm index 90e53d89b2..20cdddd449 100644 --- a/code/modules/clothing/glasses/glasses_vr.dm +++ b/code/modules/clothing/glasses/glasses_vr.dm @@ -116,5 +116,6 @@ sprite_sheets = list( SPECIES_TESHARI = 'icons/mob/species/seromi/eyes.dmi', SPECIES_VOX = 'icons/mob/species/vox/eyes.dmi', - SPECIES_WEREBEAST = 'icons/mob/species/werebeast/eyes.dmi' + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/eyes.dmi', + SPECIES_GREY_YW = 'icons/mob/species/grey/eyes.dmi'/*ywedit*/ ) \ No newline at end of file diff --git a/code/modules/clothing/head/jobs_yw.dm b/code/modules/clothing/head/jobs_yw.dm new file mode 100644 index 0000000000..57712f8798 --- /dev/null +++ b/code/modules/clothing/head/jobs_yw.dm @@ -0,0 +1,8 @@ +/obj/item/clothing/head/beret/blueshield + name = "bodyguard's beret" + desc = "A dark blue beret adorned with a silver patch. The mark of a professional bodyguard." + item_state_slots = list(slot_r_hand_str = "beret_white", slot_l_hand_str = "beret_white") + icon = 'icons/obj/clothing/hats_yw.dmi' + icon_state = "beret_blueshield" + icon_override = 'icons/mob/head_yw.dmi' + item_state = "beret_blueshield" \ No newline at end of file diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index a9232aa65c..643c335f73 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -100,7 +100,6 @@ slot_r_hand_str = "engiewelding", ) - /* * Cakehat */ diff --git a/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm b/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm index 04022b2331..e61baab61f 100644 --- a/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm +++ b/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm @@ -35,17 +35,17 @@ ) /obj/item/clothing/head/helmet/space/rig - species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_ALRAUNE) + species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_ALRAUNE, SPECIES_GREY_YW/*ywedit*/) flags = PHORONGUARD //YAWN Edit /obj/item/clothing/gloves/gauntlets/rig - species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_ALRAUNE) + species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_ALRAUNE, SPECIES_GREY_YW/*ywedit*/) flags = PHORONGUARD //YAWN Edit /obj/item/clothing/shoes/magboots/rig - species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_ALRAUNE) + species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_ALRAUNE, SPECIES_GREY_YW/*ywedit*/) flags = PHORONGUARD //YAWN Edit /obj/item/clothing/suit/space/rig - species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_ALRAUNE) + species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_ALRAUNE, SPECIES_GREY_YW/*ywedit*/) flags = PHORONGUARD //YAWN Edit diff --git a/code/modules/clothing/spacesuits/rig/suits/light.dm b/code/modules/clothing/spacesuits/rig/suits/light.dm index 5291b73cb8..edf982464d 100644 --- a/code/modules/clothing/spacesuits/rig/suits/light.dm +++ b/code/modules/clothing/spacesuits/rig/suits/light.dm @@ -106,7 +106,6 @@ /obj/item/rig_module/self_destruct ) - /obj/item/clothing/gloves/gauntlets/rig/light/ninja name = "insulated gloves" siemens_coefficient = 0 diff --git a/code/modules/clothing/under/accessories/accessory_yw.dm b/code/modules/clothing/under/accessories/accessory_yw.dm new file mode 100644 index 0000000000..6dd9cd7e50 --- /dev/null +++ b/code/modules/clothing/under/accessories/accessory_yw.dm @@ -0,0 +1,7 @@ +/obj/item/clothing/accessory/poncho/roles/cloak/blueshield + name = "bodyguard's cloak" + desc = "A dark blue cloak with silver trim around the neck. The mark of a professional bodyguard, and ideal for concealing holsters or other items." + icon = 'icons/obj/clothing/ties_yw.dmi' + icon_state = "cloak_blueshield" + icon_override = 'icons/mob/ties_yw.dmi' + item_state = "cloak_blueshield" \ No newline at end of file diff --git a/code/modules/events/drone_pod_vr.dm b/code/modules/events/drone_pod_vr.dm index 6b61ec693b..348e16d808 100644 --- a/code/modules/events/drone_pod_vr.dm +++ b/code/modules/events/drone_pod_vr.dm @@ -18,7 +18,7 @@ if(!land_target) kill() -/datum/event/meteor_strike/announce() +/datum/event/drone_pod_drop/announce() command_announcement.Announce("An unidentified drone pod has been detected landing near the surface facilty. Open and examine at your own risk.", "NanoTrasen Orbital Monitoring") /datum/event/drone_pod_drop/start() diff --git a/code/modules/events/event.dm b/code/modules/events/event.dm index 3af0e94982..e44e161a1a 100644 --- a/code/modules/events/event.dm +++ b/code/modules/events/event.dm @@ -40,15 +40,16 @@ return total_weight /datum/event //NOTE: Times are measured in master controller ticks! - var/startWhen = 0 //When in the lifetime to call start(). - var/announceWhen = 0 //When in the lifetime to call announce(). - var/endWhen = 0 //When in the lifetime the event should end. + var/startWhen = 0 //When in the lifetime to call start(). + var/announceWhen = 0 //When in the lifetime to call announce(). + var/endWhen = 0 //When in the lifetime the event should end. - var/severity = 0 //Severity. Lower means less severe, higher means more severe. Does not have to be supported. Is set on New(). - var/activeFor = 0 //How long the event has existed. You don't need to change this. - var/isRunning = 1 //If this event is currently running. You should not change this. - var/startedAt = 0 //When this event started. - var/endedAt = 0 //When this event ended. + var/severity = 0 //Severity. Lower means less severe, higher means more severe. Does not have to be supported. Is set on New(). + var/activeFor = 0 //How long the event has existed. You don't need to change this. + var/isRunning = TRUE //If this event is currently running. You should not change this. + var/startedAt = 0 //When this event started. + var/endedAt = 0 //When this event ended. + var/processing_active = TRUE var/datum/event_meta/event_meta = null /datum/event/nothing @@ -96,18 +97,26 @@ //This proc will handle the calls to the appropiate procs. /datum/event/process() if(activeFor > startWhen && activeFor < endWhen) + processing_active = FALSE tick() + processing_active = TRUE if(activeFor == startWhen) - isRunning = 1 + isRunning = TRUE + processing_active = FALSE start() + processing_active = TRUE if(activeFor == announceWhen) + processing_active = FALSE announce() + processing_active = TRUE if(activeFor == endWhen) - isRunning = 0 + isRunning = FALSE + processing_active = FALSE end() + processing_active = TRUE // Everything is done, let's clean up. if(activeFor >= lastProcessAt()) diff --git a/code/modules/events/grubinfestation_vr.dm b/code/modules/events/grubinfestation_vr.dm index bdb7b634fa..116b1d3234 100644 --- a/code/modules/events/grubinfestation_vr.dm +++ b/code/modules/events/grubinfestation_vr.dm @@ -3,7 +3,6 @@ endWhen = 200 var/spawncount = 1 var/list/vents = list() - var/list/grubs = list() var/give_positions = 0 /datum/event/grub_infestation/setup() @@ -31,7 +30,7 @@ /datum/event/grub_infestation/end() var/list/area_names = list() - for(var/grub in grubs) + for(var/grub in existing_solargrubs) var/mob/living/G = grub if(!G || G.stat == DEAD) continue @@ -43,5 +42,4 @@ area_names |= grub_area.name if(area_names.len) var/english_list = english_list(area_names) - command_announcement.Announce("Sensors have narrowed down remaining active solargrubs to the followng areas: [english_list]", "Lifesign Alert", new_sound = 'sound/AI/aliens.ogg') - grubs.Cut() \ No newline at end of file + command_announcement.Announce("Sensors have narrowed down remaining active solargrubs to the followng areas: [english_list]", "Lifesign Alert", new_sound = 'sound/AI/aliens.ogg') \ No newline at end of file diff --git a/code/modules/events/radiation_storm.dm b/code/modules/events/radiation_storm.dm index 13f853dd3c..ddd907d4b7 100644 --- a/code/modules/events/radiation_storm.dm +++ b/code/modules/events/radiation_storm.dm @@ -7,16 +7,16 @@ announceWhen = 1 endWhen = revokeAccess var/postStartTicks = 0 - +//YW Edit Start- Adjusted anouncement to be in line with cryogaia. /datum/event/radiation_storm/announce() - command_announcement.Announce("High levels of radiation detected near \the [station_name()]. Please evacuate into one of the shielded maintenance tunnels or dorms.", "Anomaly Alert", new_sound = 'sound/AI/radiation.ogg') //VOREStation Edit - Dorms ref + command_announcement.Announce("Stellar Radiation flare detected from BD +33 2642, Protoplanetary Nebula. Radiation expected to flood space near \the [station_name()]. Please evacuate into one of the shielded maintenance tunnels or dorms.", "Anomaly Alert", new_sound = 'sound/AI/radiation.ogg') //VOREStation Edit - Dorms ref /datum/event/radiation_storm/start() make_maint_all_access() /datum/event/radiation_storm/tick() if(activeFor == enterBelt) - command_announcement.Announce("The station has entered the radiation belt. Please remain in a sheltered area until we have passed the radiation belt.", "Anomaly Alert") + command_announcement.Announce("The outpost has entered the radiation flare. Please remain in a sheltered area until the radiation flare has passed.", "Anomaly Alert") radiate() if(activeFor >= enterBelt && activeFor <= leaveBelt) @@ -27,12 +27,12 @@ radiate() else if(activeFor == leaveBelt) - command_announcement.Announce("The station has passed the radiation belt. Please allow for up to one minute while radiation levels dissipate, and report to medbay if you experience any unusual symptoms. Maintenance will lose all access again shortly.", "Anomaly Alert") + command_announcement.Announce("The outpost has passed the radiation flare. Please allow for up to one minute while radiation levels dissipate, and report to medbay if you experience any unusual symptoms. Maintenance will lose all access again shortly.", "Anomaly Alert") /datum/event/radiation_storm/proc/radiate() var/radiation_level = rand(15, 35) for(var/z in using_map.station_levels) SSradiation.z_radiate(locate(1, 1, z), radiation_level, 1) - +//YW Edit end. for(var/mob/living/carbon/C in living_mob_list) var/area/A = get_area(C) if(!A) diff --git a/code/modules/events/rogue_drones.dm b/code/modules/events/rogue_drones.dm index 4a4a3bf07a..5e51fa83b7 100644 --- a/code/modules/events/rogue_drones.dm +++ b/code/modules/events/rogue_drones.dm @@ -33,7 +33,7 @@ if(3) msg = "Unidentified hackers have targeted a combat drone wing deployed around Sif. If any are sighted in the area, approach with caution." if(4) - msg = "A passing derelict ship's drone defense systems have just activated. If any are sighted in the area, use caution." + msg = "A passing derelict ship's drone defense systems have just activated. If any have survived re-entry into the atmosphere, use caution." if(5) msg = "We're detecting a swarm of small objects approaching your station. Most likely a bunch of drones. Please exercise caution if you see any." //CHOMPStation Edit End diff --git a/code/modules/events/spider_migration_yw.dm b/code/modules/events/spider_migration_yw.dm index f3593de772..d189adb977 100644 --- a/code/modules/events/spider_migration_yw.dm +++ b/code/modules/events/spider_migration_yw.dm @@ -11,9 +11,9 @@ /datum/event/spider_migration/announce() var/announcement = "" if(severity == EVENT_LEVEL_MAJOR) - announcement = "Massive migration of unknown biological entities has been detected near [station_name()], please stand-by." + announcement = "Massive breach of [station_name()] walls detected. Unknown biological entities has been detected near within perimeter. Heavily armed Security Patrol required." else - announcement = "Unknown biological [spawned_spider.len == 1 ? "entity has" : "entities have"] been detected near [station_name()], please stand-by." + announcement = "Unknown biological [spawned_spider.len == 1 ? "entity has" : "entities have"] bypassed [station_name()]'s perimeter walls, Security Patrol." command_announcement.Announce(announcement, "Lifesign Alert") /datum/event/spider_migration/start() diff --git a/code/modules/flufftext/TextFilters.dm b/code/modules/flufftext/TextFilters.dm index c7582fe952..bc133a83b8 100644 --- a/code/modules/flufftext/TextFilters.dm +++ b/code/modules/flufftext/TextFilters.dm @@ -66,9 +66,8 @@ proc/Ellipsis(original_msg, chance = 50) if(chance <= 0) return "..." if(chance >= 100) return original_msg - var/list - words = splittext(original_msg," ") - new_words = list() + var/list/words = splittext(original_msg," ") + var/list/new_words = list() var/new_msg = "" diff --git a/code/modules/food/drinkingglass/metaglass.dm b/code/modules/food/drinkingglass/metaglass.dm index 1980c58873..ec9397b115 100644 --- a/code/modules/food/drinkingglass/metaglass.dm +++ b/code/modules/food/drinkingglass/metaglass.dm @@ -550,3 +550,99 @@ Drinks Data /datum/reagent/drink/cider glass_icon_state = "ciderglass" glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/driverspunch + glass_icon_state = "driverspunch" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/coffee/elysiumfacepunch + glass_icon_state = "elysiumfacepunch" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/entdraught + glass_icon_state = "entdraught" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/erebusmoonrise + glass_icon_state = "erebusmoonrise" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/euphoria + glass_icon_state = "euphoria" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/collins_mix + glass_icon_state = "collinsmix" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/daiquiri + glass_icon_state = "daiquiri" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/dreamcream + glass_icon_state = "dreamcream" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/debugger + glass_icon_state = "debugger" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/binmanbliss + glass_icon_state = "binmanbliss" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/bitters + glass_icon_state = "bitters" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/chrysanthemum + glass_icon_state = "chrysanthemum" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/cloverclub + glass_icon_state = "cloverclub" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/coldfront + glass_icon_state = "coldfront" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/balloon + glass_icon_state = "balloon" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/berrycordial + glass_icon_state = "berrycordial" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/milkshake/chocoshake + glass_icon_state = "chocoshake" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/milkshake/coffeeshake + glass_icon_state = "coffeeshake" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/milkshake/berryshake + glass_icon_state = "berryshake" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/soda/melonade + glass_icon_state = "melonade" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/soda/appleade + glass_icon_state = "appleade" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/soda/pineappleade + glass_icon_state = "pineappleade" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/soda/lemonade + glass_icon_state = "lemonade" + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/arnold_palmer + glass_icon_state = "arnoldpalmer" + glass_center_of_mass = list("x"=16, "y"=8) \ No newline at end of file diff --git a/code/modules/food/food/thecake.dm b/code/modules/food/food/thecake.dm new file mode 100644 index 0000000000..5de17b36c6 --- /dev/null +++ b/code/modules/food/food/thecake.dm @@ -0,0 +1,280 @@ +// Chaos cake + +/datum/recipe/microwave/chaoscake_layerone + reagents = list("flour" = 300,"milk" = 200, "sugar" = 100, "egg" = 30) + fruit = list("poisonberries" = 15, "cherries" = 15) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/meat/, + /obj/item/weapon/reagent_containers/food/snacks/meat/, + /obj/item/weapon/reagent_containers/food/snacks/meat/, + /obj/item/weapon/reagent_containers/food/snacks/meat/ + ) + result = /obj/structure/chaoscake + +/datum/recipe/microwave/chaoscake_layertwo + reagents = list("flour" = 300, "milk" = 200, "sugar" = 100, "egg" = 30, ) + fruit = list("vanilla" = 15, "banana" = 15) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough + ) + result = /obj/item/weapon/chaoscake_layer + +/datum/recipe/microwave/chaoscake_layerthree + reagents = list("flour" = 240, "milk" = 150, "sugar" = 80, "egg" = 24, "deathbell" = 100) + fruit = list("grapes" = 30) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough + ) + result = /obj/item/weapon/chaoscake_layer/three + +/datum/recipe/microwave/chaoscake_layerfour + reagents = list("flour" = 240, "milk" = 150, "sugar" = 80, "egg" = 24, "milkshake" = 300) + fruit = list("rice" = 30) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough + ) + result = /obj/item/weapon/chaoscake_layer/four + +/datum/recipe/microwave/chaoscake_layerfive + reagents = list("flour" = 180, "milk" = 100, "sugar" = 60, "egg" = 18, "blood" = 300) + fruit = list("tomato" = 20) + items = list() //supposed to be made with lobster, still has to be ported. + result = /obj/item/weapon/chaoscake_layer/five + +/datum/recipe/microwave/chaoscake_layersix + reagents = list("flour" = 180, "milk" = 100, "sugar" = 60, "egg" = 18, "sprinkles" = 10) + fruit = list("apple" = 30) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/chocolatebar, + /obj/item/weapon/reagent_containers/food/snacks/chocolatebar, + /obj/item/weapon/reagent_containers/food/snacks/chocolatebar + ) + result = /obj/item/weapon/chaoscake_layer/six + +/datum/recipe/microwave/chaoscake_layerseven + reagents = list("flour" = 120, "milk" = 50, "sugar" = 40, "egg" = 12, "devilskiss" = 200) + fruit = list("potato" = 10) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough + ) + result = /obj/item/weapon/chaoscake_layer/seven + +/datum/recipe/microwave/chaoscake_layereight + reagents = list("flour" = 120, "milk" = 50, "sugar" = 40, "egg" = 12, "cream" = 200) + fruit = list("lemon" = 10) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough, + /obj/item/weapon/reagent_containers/food/snacks/dough + ) + result = /obj/item/weapon/chaoscake_layer/eight + +/datum/recipe/microwave/chaoscake_layernine + reagents = list("water" = 100, "blood" = 100) + fruit = list("goldapple" = 50) + items = list() + result = /obj/item/weapon/chaoscake_layer/nine + +/obj/structure/chaoscake + name = "An unfinished cake" + desc = "A single layer of a strange cake, you can see the cherry paste ooze, but it feels very incomplete..." + + icon = 'icons/obj/food64x64.dmi' + icon_state = "chaoscake_unfinished-1" + pixel_x = -16 + + var/slices = 6 + var/maxslices = 6 + var/stage = 1 + var/maxstages = 9 + var/edible = 0 + + var/regentime = 1000 + var/interval = 0 + + var/static/list/desclist2 = list( + "The first layer of a strange cake, you can see the cherry paste ooze.", + "The second layer of the cake sits in place now, smelling of pear with delicious colourful cream.", + "The third layer of cake adds a strange purple layer, glazed over with frosting. It smells of grapes, but with a hint of something foul underneath.", + "With the fourth layer added the cake looks happier again. Reeking of vanilla, it brings up memories of childhood joy.", + "The fifth layer is extremely disturbing on that cake. Smelling of pure copper, it seems that bright blood clots are forming on top.", + "The cake is getting closer with the sixth layer added, the pink hue smelling of chocolate, with colourful sprinkles on top.", + "The first pair of triplets rest on the cake, despite being mostly similar to the first three, an evil aura becomes noticable.", + "The second pair of triplets rest on the cake, if you stand on the bright side, you can feel a good aura lifting your mood.", + "A chaos cake. Both a creation of dark and light, the two cakes are kept in a careful balance by that mystical coin in the middle. It's said its effects would dissipate if the balance is ever tipped in favour of one side too much, so both sides much be cut equally." + ) + +/obj/item/weapon/chaoscake_layer + name = "A layer of cake" + desc = "a layer of cake, it is made out of colourful cream." + icon = 'icons/obj/food.dmi' + icon_state = "chaoscake_layer-2" + var/layer_stage = 1 + +/obj/item/weapon/chaoscake_layer/three + desc = "a layer of cake, glazed in purple." + icon_state = "chaoscake_layer-3" + layer_stage = 2 + +/obj/item/weapon/chaoscake_layer/four + desc = "a layer of cake, reminding you of a colouring book." + icon_state = "chaoscake_layer-4" + layer_stage = 3 + +/obj/item/weapon/chaoscake_layer/five + desc = "A layer of cake, smells like copper." + icon_state = "chaoscake_layer-5" + layer_stage = 4 + +/obj/item/weapon/chaoscake_layer/six + desc = "A layer of cake, featuring colourful sprinkles." + icon_state = "chaoscake_layer-6" + layer_stage = 5 + +/obj/item/weapon/chaoscake_layer/seven + desc = "A triplet of evil cake parts." + icon_state = "chaoscake_layer-7" + layer_stage = 6 + +/obj/item/weapon/chaoscake_layer/eight + desc = "A triplet of good cake parts." + icon_state = "chaoscake_layer-8" + layer_stage = 7 + +/obj/item/weapon/chaoscake_layer/nine + name = "A coin of balance" + desc = "A very peculiar coin, it seems to stabilise the air around it." + icon_state = "chaoscake_layer-9" + layer_stage = 8 + +/obj/structure/chaoscake/proc/HasSliceMissing() + ..() + if(slices < maxslices) + if(interval >= regentime) + interval = 0 + slices++ + HasSliceMissing() + else + interval++ + HasSliceMissing() + else + return + +/obj/item/weapon/reagent_containers/food/snacks/chaoscakeslice + name = "The Chaos Cake Slice" + desc = "A slice from The Chaos Cake, it pulses weirdly, as if angry to be seperated from the whole" + icon_state = "chaoscake_slice-1" + + center_of_mass = list("x"=16, "y"=10) + nutriment_desc = list() + nutriment_amt = 4 + volume = 80 + +/obj/item/weapon/reagent_containers/food/snacks/chaoscakeslice/Initialize() + ..() + var/i = rand(1,6) + icon_state = "chaoscake_slice-[i]" + switch(i) + if(1) + name = "Slice Of Evil" //Pretty damn poisonous, takes a lot of work to make safe for consumption, useful for medical. + desc = "An odd slice, despite the grease and cherries oozing off the top, it smells delicious." + nutriment_desc = list("The desire to consume" = 10) // You won't even taste the poison. + reagents.add_reagent("neurotoxic_protein", 2) + reagents.add_reagent("shockchem", 2) + reagents.add_reagent("amatoxin", 2) + reagents.add_reagent("carpotoxin", 2) + reagents.add_reagent("spidertoxin", 2) + bitesize = 7 + if(2) + name = "Slice Of Evil" //A bad trip + desc = "A mysterious slice, coated in purple frosting that smells like grapes." + nutriment_desc = list("The desire to show off an party" = 10) + reagents.add_reagent("stoxin", 2) + reagents.add_reagent("space_drugs", 10) + reagents.add_reagent("serotrotium", 4) + reagents.add_reagent("cryptobiolin", 8) + reagents.add_reagent("mindbreaker", 10) + reagents.add_reagent("psilocybin", 10) + bitesize = 30 //even a single bite won't make you escape fate. + if(3) + name = "Slice Of Evil" //acidic + desc = "A menacing slice, smelling clearly of copper, blood clots float on top." + nutriment_desc = list("Infernal Rage" = 10) + reagents.add_reagent("blood", 20) + reagents.add_reagent("stomacid", 10) + reagents.add_reagent("mutagen", 4) + reagents.add_reagent("thirteenloko", 20) + reagents.add_reagent("hyperzine", 10) + bitesize = 30 + if(4) + name = "Slice Of Good" //anti-tox + desc = "A colourful slice, smelling of pear and coated in delicious cream." + nutriment_desc = list("Hapiness" = 10) + reagents.add_reagent("anti_toxin", 2) + reagents.add_reagent("tricordrazine", 2) + bitesize = 3 + if(5) + name = "Slice Of Good" //anti-oxy + desc = "A light slice, it's pretty to look at and smells of vanilla." + nutriment_desc = list("Freedom" = 10) + reagents.add_reagent("dexalinp", 2) + reagents.add_reagent("tricordrazine", 2) + bitesize = 3 + if(6) + name = "Slice Of Good" //anti-burn/brute + desc = "A hearty slice, it smells of chocolate and strawberries." + nutriment_desc = list("Love" = 10) + reagents.add_reagent("bicaridine", 2) + reagents.add_reagent("tricordrazine", 2) + reagents.add_reagent("kelotane", 2) + bitesize = 4 + +/obj/structure/chaoscake/attackby(var/obj/item/weapon/W, var/mob/living/user) + if(istype(W,/obj/item/weapon/material/knife)) + if(edible == 1) + HasSliceMissing() + if(slices <= 0) + user << "The cake hums away quietly as the chaos powered goodness slowly recovers the large amount of lost mass, best to give it a moment before cutting another slice." + return + else + user << "You cut a slice of the cake. The slice looks like the cake was just baked, and you can see before your eyes as the spot where you cut the slice slowly regenerates!" + slices = slices - 1 + icon_state = "chaoscake-[slices]" + new /obj/item/weapon/reagent_containers/food/snacks/chaoscakeslice(src.loc) + + else + to_chat(user, "It looks so good... But it feels so wrong to eat it before it's finished...") + return + if(istype(W,/obj/item/weapon/chaoscake_layer)) + var/obj/item/weapon/chaoscake_layer/C = W + if(C.layer_stage == 8) + user << "Finally! The coin on the top, the almighty chaos cake is complete!" + qdel(W) + stage++ + desc = desclist2[stage] + icon_state = "chaoscake-6" + edible = 1 + name = "The Chaos Cake!" + else if(stage == maxstages) + user << "The cake is already done!" + else if(stage == C.layer_stage) + user << "You add another layer to the cake, nice." + qdel(W) + stage++ + desc = desclist2[stage] + icon_state = "chaoscake_stage-[stage]" + else + user << "Hmm, doesnt seem like this layer is supposed to be added there?" + diff --git a/code/modules/food/kitchen/microwave.dm b/code/modules/food/kitchen/microwave.dm index 17d061cc06..15458aee53 100644 --- a/code/modules/food/kitchen/microwave.dm +++ b/code/modules/food/kitchen/microwave.dm @@ -1,5 +1,6 @@ /obj/machinery/microwave name = "microwave" + desc = "Studies are inconclusive on whether pressing your face against the glass is harmful." icon = 'icons/obj/kitchen.dmi' icon_state = "mw" density = 1 @@ -16,6 +17,7 @@ var/item_level = 0 //CHOMP - items microwave can handle, 0 foodstuff, 1 materials - Jack var/global/list/datum/recipe/available_recipes // List of the recipes you can use var/global/list/acceptable_items // List of the items you can put in + var/global/list/datum/recipe/microwave/available_recipes // List of the recipes you can use var/global/list/acceptable_reagents // List of the reagents you can put in var/global/max_n_of_items = 0 var/datum/looping_sound/microwave/soundloop @@ -38,11 +40,11 @@ if (!available_recipes) available_recipes = new - for (var/type in (typesof(/datum/recipe)-/datum/recipe)) + for (var/type in (typesof(/datum/recipe/microwave)-/datum/recipe/microwave)) available_recipes+= new type acceptable_items = new acceptable_reagents = new - for (var/datum/recipe/recipe in available_recipes) + for (var/datum/recipe/microwave/recipe in available_recipes) for (var/item in recipe.items) acceptable_items |= item for (var/reagent in recipe.reagents) @@ -126,7 +128,7 @@ to_chat(user, "It's dirty!") return 1 else if(is_type_in_list(O,acceptable_items)) - if (contents.len>=(max_n_of_items + component_parts.len + circuit_item_capacity)) //Adds component_parts to the maximum number of items. //CHOMP Edit: changed 1 to actually just be the circuit item capacity var. + if (contents.len>=(max_n_of_items + component_parts.len + circuit_item_capacity)) //Adds component_parts to the maximum number of items. changed 1 to actually just be the circuit item capacity var. to_chat(user, "This [src] is full of ingredients, you cannot put more.") return 1 if(istype(O, /obj/item/stack) && O:get_amount() > 1) // This is bad, but I can't think of how to change it @@ -256,7 +258,7 @@ abort() return - var/datum/recipe/recipe = select_recipe(available_recipes,src) + var/datum/recipe/microwave/recipe = select_recipe(available_recipes,src) var/obj/cooked if (!recipe) dirty += 1 @@ -310,7 +312,7 @@ sleep(5) //VOREStation Edit - Quicker Microwaves return 1 -/obj/machinery/microwave/proc/has_extra_item() //CHOMP Addition - coded to have different microwaves be able to handle different items - Jack +/obj/machinery/microwave/proc/has_extra_item() //- coded to have different microwaves be able to handle different items if(item_level == 0) for (var/obj/O in ((contents - component_parts) - circuit)) if ( \ @@ -330,7 +332,6 @@ ) return 1 return 0 -//CHOMPStation addition end. /obj/machinery/microwave/proc/start() src.visible_message("The microwave turns on.", "You hear a microwave.") @@ -410,4 +411,16 @@ if ("dispose") dispose() - return \ No newline at end of file + return + +/obj/machinery/microwave/advanced // specifically for complex recipes + name = "deluxe microwave" + icon = 'icons/obj/kitchen.dmi' + icon_state = "mw-deluxe" + circuit = /obj/item/weapon/circuitboard/microwave/advanced + circuit_item_capacity = 100 + item_level = 1 + +/obj/machinery/microwave/advanced/Initialize() + ..() + reagents.maximum_volume = 1000 diff --git a/code/modules/food/recipe_dump.dm b/code/modules/food/recipe_dump.dm index 781ef7fc2f..d70fc09bfd 100644 --- a/code/modules/food/recipe_dump.dm +++ b/code/modules/food/recipe_dump.dm @@ -16,7 +16,7 @@ qdel(CR) //////////////////////// FOOD - var/list/food_recipes = typesof(/datum/recipe) - /datum/recipe + var/list/food_recipes = typesof(/datum/recipe/microwave) - /datum/recipe/microwave //Build a useful list for(var/Rp in food_recipes) //Lists don't work with datum-stealing no-instance initial() so we have to. diff --git a/code/modules/food/recipes_microwave.dm b/code/modules/food/recipes_microwave.dm index c11344a841..eca7a1ae32 100644 --- a/code/modules/food/recipes_microwave.dm +++ b/code/modules/food/recipes_microwave.dm @@ -3,7 +3,7 @@ /* No telebacon. just no... -/datum/recipe/telebacon +/datum/recipe/microwave/telebacon items = list( /obj/item/weapon/reagent_containers/food/snacks/meat, /obj/item/device/assembly/signaler @@ -11,7 +11,7 @@ result = /obj/item/weapon/reagent_containers/food/snacks/telebacon I said no! -/datum/recipe/syntitelebacon +/datum/recipe/microwave/syntitelebacon items = list( /obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh, /obj/item/device/assembly/signaler @@ -19,21 +19,21 @@ I said no! result = /obj/item/weapon/reagent_containers/food/snacks/telebacon */ -/datum/recipe/friedegg +/datum/recipe/microwave/friedegg reagents = list("sodiumchloride" = 1, "blackpepper" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/egg ) result = /obj/item/weapon/reagent_containers/food/snacks/friedegg -/datum/recipe/boiledegg +/datum/recipe/microwave/boiledegg reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/egg ) result = /obj/item/weapon/reagent_containers/food/snacks/boiledegg -/datum/recipe/devilledegg +/datum/recipe/microwave/devilledegg fruit = list("chili" = 1) reagents = list("sodiumchloride" = 2, "mayo" = 5) items = list( @@ -42,125 +42,125 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/devilledegg -/datum/recipe/dionaroast +/datum/recipe/microwave/dionaroast fruit = list("apple" = 1) reagents = list("pacid" = 5) //It dissolves the carapace. Still poisonous, though. items = list(/obj/item/weapon/holder/diona) result = /obj/item/weapon/reagent_containers/food/snacks/dionaroast -/datum/recipe/jellydonut +/datum/recipe/microwave/jellydonut reagents = list("berryjuice" = 5, "sugar" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough ) result = /obj/item/weapon/reagent_containers/food/snacks/donut/jelly -/datum/recipe/jellydonut/slime +/datum/recipe/microwave/jellydonut/slime reagents = list("slimejelly" = 5, "sugar" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough ) result = /obj/item/weapon/reagent_containers/food/snacks/donut/slimejelly -/datum/recipe/jellydonut/cherry +/datum/recipe/microwave/jellydonut/cherry reagents = list("cherryjelly" = 5, "sugar" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough ) result = /obj/item/weapon/reagent_containers/food/snacks/donut/cherryjelly -/datum/recipe/donut +/datum/recipe/microwave/donut reagents = list("sugar" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough ) result = /obj/item/weapon/reagent_containers/food/snacks/donut/normal -/datum/recipe/humanburger +/datum/recipe/microwave/humanburger items = list( /obj/item/weapon/reagent_containers/food/snacks/meat/human, /obj/item/weapon/reagent_containers/food/snacks/bun ) result = /obj/item/weapon/reagent_containers/food/snacks/human/burger -/datum/recipe/plainburger +/datum/recipe/microwave/plainburger items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, - /obj/item/weapon/reagent_containers/food/snacks/meat //do not place this recipe before /datum/recipe/humanburger + /obj/item/weapon/reagent_containers/food/snacks/meat //do not place this recipe before /datum/recipe/microwave/humanburger ) result = /obj/item/weapon/reagent_containers/food/snacks/monkeyburger -/datum/recipe/brainburger +/datum/recipe/microwave/brainburger items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/organ/internal/brain ) result = /obj/item/weapon/reagent_containers/food/snacks/brainburger -/datum/recipe/roburger +/datum/recipe/microwave/roburger items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/robot_parts/head ) result = /obj/item/weapon/reagent_containers/food/snacks/roburger -/datum/recipe/xenoburger +/datum/recipe/microwave/xenoburger items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/weapon/reagent_containers/food/snacks/xenomeat ) result = /obj/item/weapon/reagent_containers/food/snacks/xenoburger -/datum/recipe/fishburger +/datum/recipe/microwave/fishburger items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/weapon/reagent_containers/food/snacks/carpmeat ) result = /obj/item/weapon/reagent_containers/food/snacks/fishburger -/datum/recipe/tofuburger +/datum/recipe/microwave/tofuburger items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/weapon/reagent_containers/food/snacks/tofu ) result = /obj/item/weapon/reagent_containers/food/snacks/tofuburger -/datum/recipe/ghostburger +/datum/recipe/microwave/ghostburger items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/weapon/ectoplasm //where do you even find this stuff ) result = /obj/item/weapon/reagent_containers/food/snacks/ghostburger -/datum/recipe/clownburger +/datum/recipe/microwave/clownburger items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/clothing/mask/gas/clown_hat ) result = /obj/item/weapon/reagent_containers/food/snacks/clownburger -/datum/recipe/mimeburger +/datum/recipe/microwave/mimeburger items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/clothing/head/beret ) result = /obj/item/weapon/reagent_containers/food/snacks/mimeburger -/datum/recipe/bunbun +/datum/recipe/microwave/bunbun items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/weapon/reagent_containers/food/snacks/bun ) result = /obj/item/weapon/reagent_containers/food/snacks/bunbun -/datum/recipe/hotdog +/datum/recipe/microwave/hotdog items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/weapon/reagent_containers/food/snacks/sausage ) result = /obj/item/weapon/reagent_containers/food/snacks/hotdog -/datum/recipe/waffles +/datum/recipe/microwave/waffles reagents = list("sugar" = 10) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, @@ -168,7 +168,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/waffles -/datum/recipe/donkpocket +/datum/recipe/microwave/donkpocket items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, /obj/item/weapon/reagent_containers/food/snacks/meatball @@ -181,7 +181,7 @@ I said no! warm_up(being_cooked) return being_cooked -/datum/recipe/donkpocket/warm +/datum/recipe/microwave/donkpocket/warm reagents = list() //This is necessary since this is a child object of the above recipe and we don't want donk pockets to need flour items = list( /obj/item/weapon/reagent_containers/food/snacks/donkpocket @@ -193,7 +193,7 @@ I said no! warm_up(being_cooked) return being_cooked -/datum/recipe/meatbread +/datum/recipe/microwave/meatbread items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, /obj/item/weapon/reagent_containers/food/snacks/dough, @@ -207,7 +207,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/meatbread -/datum/recipe/xenomeatbread +/datum/recipe/microwave/xenomeatbread items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, /obj/item/weapon/reagent_containers/food/snacks/dough, @@ -221,7 +221,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/xenomeatbread -/datum/recipe/bananabread +/datum/recipe/microwave/bananabread fruit = list("banana" = 1) reagents = list("milk" = 5, "sugar" = 15) items = list( @@ -231,7 +231,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/bananabread -/datum/recipe/omelette +/datum/recipe/microwave/omelette items = list( /obj/item/weapon/reagent_containers/food/snacks/egg, /obj/item/weapon/reagent_containers/food/snacks/egg, @@ -240,14 +240,14 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/omelette -/datum/recipe/muffin +/datum/recipe/microwave/muffin reagents = list("milk" = 5, "sugar" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, ) result = /obj/item/weapon/reagent_containers/food/snacks/muffin -/datum/recipe/eggplantparm +/datum/recipe/microwave/eggplantparm fruit = list("eggplant" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/cheesewedge, @@ -255,12 +255,12 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/eggplantparm -/datum/recipe/soylenviridians +/datum/recipe/microwave/soylenviridians fruit = list("soybeans" = 1) reagents = list("flour" = 10) result = /obj/item/weapon/reagent_containers/food/snacks/soylenviridians -/datum/recipe/soylentgreen +/datum/recipe/microwave/soylentgreen reagents = list("flour" = 10) items = list( /obj/item/weapon/reagent_containers/food/snacks/meat/human, @@ -268,34 +268,34 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/soylentgreen -/datum/recipe/meatpie +/datum/recipe/microwave/meatpie items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough, /obj/item/weapon/reagent_containers/food/snacks/meat, ) result = /obj/item/weapon/reagent_containers/food/snacks/meatpie -/datum/recipe/tofupie +/datum/recipe/microwave/tofupie items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough, /obj/item/weapon/reagent_containers/food/snacks/tofu, ) result = /obj/item/weapon/reagent_containers/food/snacks/tofupie -/datum/recipe/xemeatpie +/datum/recipe/microwave/xemeatpie items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough, /obj/item/weapon/reagent_containers/food/snacks/xenomeat, ) result = /obj/item/weapon/reagent_containers/food/snacks/xemeatpie -/datum/recipe/pie +/datum/recipe/microwave/pie fruit = list("banana" = 1) reagents = list("sugar" = 5) items = list(/obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough) result = /obj/item/weapon/reagent_containers/food/snacks/pie -/datum/recipe/cherrypie +/datum/recipe/microwave/cherrypie fruit = list("cherries" = 1) reagents = list("sugar" = 10) items = list( @@ -303,28 +303,28 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/cherrypie -/datum/recipe/berryclafoutis +/datum/recipe/microwave/berryclafoutis fruit = list("berries" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough, ) result = /obj/item/weapon/reagent_containers/food/snacks/berryclafoutis -/datum/recipe/wingfangchu +/datum/recipe/microwave/wingfangchu reagents = list("soysauce" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/xenomeat, ) result = /obj/item/weapon/reagent_containers/food/snacks/wingfangchu -/datum/recipe/chaosdonut +/datum/recipe/microwave/chaosdonut reagents = list("frostoil" = 5, "capsaicin" = 5, "sugar" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough ) result = /obj/item/weapon/reagent_containers/food/snacks/donut/chaos -/datum/recipe/humankabob +/datum/recipe/microwave/humankabob items = list( /obj/item/stack/rods, /obj/item/weapon/reagent_containers/food/snacks/meat/human, @@ -332,7 +332,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/human/kabob -/datum/recipe/kabob //Do not put before humankabob +/datum/recipe/microwave/kabob //Do not put before humankabob items = list( /obj/item/stack/rods, /obj/item/weapon/reagent_containers/food/snacks/meat, @@ -340,7 +340,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/monkeykabob -/datum/recipe/tofukabob +/datum/recipe/microwave/tofukabob items = list( /obj/item/stack/rods, /obj/item/weapon/reagent_containers/food/snacks/tofu, @@ -348,7 +348,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/tofukabob -/datum/recipe/tofubread +/datum/recipe/microwave/tofubread items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, /obj/item/weapon/reagent_containers/food/snacks/dough, @@ -362,44 +362,44 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/tofubread -/datum/recipe/loadedbakedpotato +/datum/recipe/microwave/loadedbakedpotato fruit = list("potato" = 1) items = list(/obj/item/weapon/reagent_containers/food/snacks/cheesewedge) result = /obj/item/weapon/reagent_containers/food/snacks/loadedbakedpotato -/datum/recipe/mashedpotato +/datum/recipe/microwave/mashedpotato fruit = list("potato" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/mashedpotato -/datum/recipe/bangersandmash +/datum/recipe/microwave/bangersandmash items = list( /obj/item/weapon/reagent_containers/food/snacks/mashedpotato, /obj/item/weapon/reagent_containers/food/snacks/sausage, ) result = /obj/item/weapon/reagent_containers/food/snacks/bangersandmash -/datum/recipe/cheesymash +/datum/recipe/microwave/cheesymash items = list( /obj/item/weapon/reagent_containers/food/snacks/mashedpotato, /obj/item/weapon/reagent_containers/food/snacks/cheesewedge, ) result = /obj/item/weapon/reagent_containers/food/snacks/cheesymash -/datum/recipe/blackpudding +/datum/recipe/microwave/blackpudding reagents = list("blood" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/sausage, ) result = /obj/item/weapon/reagent_containers/food/snacks/blackpudding -/datum/recipe/cheesyfries +/datum/recipe/microwave/cheesyfries items = list( /obj/item/weapon/reagent_containers/food/snacks/fries, /obj/item/weapon/reagent_containers/food/snacks/cheesewedge, ) result = /obj/item/weapon/reagent_containers/food/snacks/cheesyfries -/datum/recipe/cubancarp +/datum/recipe/microwave/cubancarp fruit = list("chili" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, @@ -407,11 +407,11 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/cubancarp -/datum/recipe/popcorn +/datum/recipe/microwave/popcorn fruit = list("corn" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/popcorn -/datum/recipe/cookie +/datum/recipe/microwave/cookie reagents = list("milk" = 5, "sugar" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, @@ -419,7 +419,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/cookie -/datum/recipe/fortunecookie +/datum/recipe/microwave/fortunecookie reagents = list("sugar" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/doughslice, @@ -443,12 +443,12 @@ I said no! return 0 return . -/datum/recipe/meatsteak +/datum/recipe/microwave/meatsteak reagents = list("sodiumchloride" = 1, "blackpepper" = 1) items = list(/obj/item/weapon/reagent_containers/food/snacks/meat) result = /obj/item/weapon/reagent_containers/food/snacks/meatsteak -/datum/recipe/pizzamargherita +/datum/recipe/microwave/pizzamargherita fruit = list("tomato" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough, @@ -459,7 +459,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/margherita -/datum/recipe/pizzahawaiian +/datum/recipe/microwave/pizzahawaiian fruit = list("tomato" = 1, "pineapple" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough, @@ -468,7 +468,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/pineapple -/datum/recipe/meatpizza +/datum/recipe/microwave/meatpizza fruit = list("tomato" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough, @@ -479,7 +479,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/meatpizza -/datum/recipe/mushroompizza +/datum/recipe/microwave/mushroompizza fruit = list("mushroom" = 5, "tomato" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough, @@ -487,7 +487,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/mushroompizza -/datum/recipe/vegetablepizza +/datum/recipe/microwave/vegetablepizza fruit = list("eggplant" = 1, "carrot" = 1, "corn" = 1, "tomato" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough, @@ -495,11 +495,11 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/vegetablepizza -/datum/recipe/spacylibertyduff +/datum/recipe/microwave/spacylibertyduff reagents = list("water" = 5, "vodka" = 5, "psilocybin" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/spacylibertyduff -/datum/recipe/amanitajelly +/datum/recipe/microwave/amanitajelly reagents = list("water" = 5, "vodka" = 5, "amatoxin" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/amanitajelly make_food(var/obj/container as obj) @@ -507,18 +507,18 @@ I said no! being_cooked.reagents.del_reagent("amatoxin") return being_cooked -/datum/recipe/meatballsoup +/datum/recipe/microwave/meatballsoup fruit = list("carrot" = 1, "potato" = 1) reagents = list("water" = 10) items = list(/obj/item/weapon/reagent_containers/food/snacks/meatball) result = /obj/item/weapon/reagent_containers/food/snacks/meatballsoup -/datum/recipe/vegetablesoup +/datum/recipe/microwave/vegetablesoup fruit = list("carrot" = 1, "potato" = 1, "corn" = 1, "eggplant" = 1) reagents = list("water" = 10) result = /obj/item/weapon/reagent_containers/food/snacks/vegetablesoup -/datum/recipe/nettlesoup +/datum/recipe/microwave/nettlesoup fruit = list("nettle" = 1, "potato" = 1) reagents = list("water" = 10) items = list( @@ -526,45 +526,45 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/nettlesoup -/datum/recipe/wishsoup +/datum/recipe/microwave/wishsoup reagents = list("water" = 20) result= /obj/item/weapon/reagent_containers/food/snacks/wishsoup -/datum/recipe/hotchili +/datum/recipe/microwave/hotchili fruit = list("chili" = 1, "tomato" = 1) items = list(/obj/item/weapon/reagent_containers/food/snacks/meat) result = /obj/item/weapon/reagent_containers/food/snacks/hotchili -/datum/recipe/coldchili +/datum/recipe/microwave/coldchili fruit = list("icechili" = 1, "tomato" = 1) items = list(/obj/item/weapon/reagent_containers/food/snacks/meat) result = /obj/item/weapon/reagent_containers/food/snacks/coldchili -/datum/recipe/amanita_pie +/datum/recipe/microwave/amanita_pie reagents = list("amatoxin" = 5) items = list(/obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough) result = /obj/item/weapon/reagent_containers/food/snacks/amanita_pie -/datum/recipe/plump_pie +/datum/recipe/microwave/plump_pie fruit = list("plumphelmet" = 1) items = list(/obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough) result = /obj/item/weapon/reagent_containers/food/snacks/plump_pie -/datum/recipe/spellburger +/datum/recipe/microwave/spellburger items = list( /obj/item/weapon/reagent_containers/food/snacks/monkeyburger, /obj/item/clothing/head/wizard/fake, ) result = /obj/item/weapon/reagent_containers/food/snacks/spellburger -/datum/recipe/spellburger +/datum/recipe/microwave/spellburger items = list( /obj/item/weapon/reagent_containers/food/snacks/monkeyburger, /obj/item/clothing/head/wizard, ) result = /obj/item/weapon/reagent_containers/food/snacks/spellburger -/datum/recipe/bigbiteburger +/datum/recipe/microwave/bigbiteburger items = list( /obj/item/weapon/reagent_containers/food/snacks/monkeyburger, /obj/item/weapon/reagent_containers/food/snacks/meat, @@ -574,12 +574,12 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/bigbiteburger -/datum/recipe/enchiladas +/datum/recipe/microwave/enchiladas fruit = list("chili" = 2, "corn" = 1) items = list(/obj/item/weapon/reagent_containers/food/snacks/cutlet) result = /obj/item/weapon/reagent_containers/food/snacks/enchiladas -/datum/recipe/creamcheesebread +/datum/recipe/microwave/creamcheesebread items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, /obj/item/weapon/reagent_containers/food/snacks/dough, @@ -588,7 +588,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/creamcheesebread -/datum/recipe/monkeysdelight +/datum/recipe/microwave/monkeysdelight fruit = list("banana" = 1) reagents = list("sodiumchloride" = 1, "blackpepper" = 1, "flour" = 10) items = list( @@ -596,7 +596,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/monkeysdelight -/datum/recipe/baguette +/datum/recipe/microwave/baguette reagents = list("sodiumchloride" = 1, "blackpepper" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, @@ -604,26 +604,26 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/baguette -/datum/recipe/croissant +/datum/recipe/microwave/croissant reagents = list("sodiumchloride" = 1, "water" = 5, "milk" = 5) items = list(/obj/item/weapon/reagent_containers/food/snacks/dough) result = /obj/item/weapon/reagent_containers/food/snacks/croissant -/datum/recipe/fishandchips +/datum/recipe/microwave/fishandchips items = list( /obj/item/weapon/reagent_containers/food/snacks/fries, /obj/item/weapon/reagent_containers/food/snacks/carpmeat, ) result = /obj/item/weapon/reagent_containers/food/snacks/fishandchips -/datum/recipe/bread +/datum/recipe/microwave/bread items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, /obj/item/weapon/reagent_containers/food/snacks/egg ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/bread -/datum/recipe/sandwich +/datum/recipe/microwave/sandwich items = list( /obj/item/weapon/reagent_containers/food/snacks/meatsteak, /obj/item/weapon/reagent_containers/food/snacks/slice/bread, @@ -632,13 +632,13 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sandwich -/datum/recipe/toastedsandwich +/datum/recipe/microwave/toastedsandwich items = list( /obj/item/weapon/reagent_containers/food/snacks/sandwich ) result = /obj/item/weapon/reagent_containers/food/snacks/toastedsandwich -/datum/recipe/peanutbutterjellysandwich +/datum/recipe/microwave/peanutbutterjellysandwich reagents = list("berryjuice" = 5, "peanutbutter" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/slice/bread, @@ -646,7 +646,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/jellysandwich/peanutbutter -/datum/recipe/grilledcheese +/datum/recipe/microwave/grilledcheese items = list( /obj/item/weapon/reagent_containers/food/snacks/slice/bread, /obj/item/weapon/reagent_containers/food/snacks/slice/bread, @@ -654,12 +654,12 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/grilledcheese -/datum/recipe/tomatosoup +/datum/recipe/microwave/tomatosoup fruit = list("tomato" = 2) reagents = list("water" = 10) result = /obj/item/weapon/reagent_containers/food/snacks/tomatosoup -/datum/recipe/rofflewaffles +/datum/recipe/microwave/rofflewaffles reagents = list("psilocybin" = 5, "sugar" = 10) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, @@ -667,27 +667,27 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/rofflewaffles -/datum/recipe/stew +/datum/recipe/microwave/stew fruit = list("potato" = 1, "tomato" = 1, "carrot" = 1, "eggplant" = 1, "mushroom" = 1) reagents = list("water" = 10) items = list(/obj/item/weapon/reagent_containers/food/snacks/meat) result = /obj/item/weapon/reagent_containers/food/snacks/stew -/datum/recipe/slimetoast +/datum/recipe/microwave/slimetoast reagents = list("slimejelly" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/slice/bread, ) result = /obj/item/weapon/reagent_containers/food/snacks/jelliedtoast/slime -/datum/recipe/jelliedtoast +/datum/recipe/microwave/jelliedtoast reagents = list("cherryjelly" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/slice/bread, ) result = /obj/item/weapon/reagent_containers/food/snacks/jelliedtoast/cherry -/datum/recipe/milosoup +/datum/recipe/microwave/milosoup reagents = list("water" = 10) items = list( /obj/item/weapon/reagent_containers/food/snacks/soydope, @@ -697,7 +697,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/milosoup -/datum/recipe/stewedsoymeat +/datum/recipe/microwave/stewedsoymeat fruit = list("carrot" = 1, "tomato" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/soydope, @@ -705,39 +705,39 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/stewedsoymeat -/*/datum/recipe/spagetti We have the processor now +/*/datum/recipe/microwave/spagetti We have the processor now items = list( /obj/item/weapon/reagent_containers/food/snacks/doughslice ) result= /obj/item/weapon/reagent_containers/food/snacks/spagetti*/ -/datum/recipe/boiledspagetti +/datum/recipe/microwave/boiledspagetti reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/spagetti, ) result = /obj/item/weapon/reagent_containers/food/snacks/boiledspagetti -/datum/recipe/boiledrice +/datum/recipe/microwave/boiledrice reagents = list("water" = 5, "rice" = 10) result = /obj/item/weapon/reagent_containers/food/snacks/boiledrice -/datum/recipe/ricepudding +/datum/recipe/microwave/ricepudding reagents = list("milk" = 5, "rice" = 10) result = /obj/item/weapon/reagent_containers/food/snacks/ricepudding -/datum/recipe/pastatomato +/datum/recipe/microwave/pastatomato fruit = list("tomato" = 2) reagents = list("water" = 5) items = list(/obj/item/weapon/reagent_containers/food/snacks/spagetti) result = /obj/item/weapon/reagent_containers/food/snacks/pastatomato -/datum/recipe/poppypretzel +/datum/recipe/microwave/poppypretzel fruit = list("poppy" = 1) items = list(/obj/item/weapon/reagent_containers/food/snacks/dough) result = /obj/item/weapon/reagent_containers/food/snacks/poppypretzel -/datum/recipe/meatballspagetti +/datum/recipe/microwave/meatballspagetti reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/spagetti, @@ -746,7 +746,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/meatballspagetti -/datum/recipe/spesslaw +/datum/recipe/microwave/spesslaw reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/spagetti, @@ -757,7 +757,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/spesslaw -/datum/recipe/superbiteburger +/datum/recipe/microwave/superbiteburger fruit = list("tomato" = 1) reagents = list("sodiumchloride" = 5, "blackpepper" = 5) items = list( @@ -769,31 +769,31 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/superbiteburger -/datum/recipe/candiedapple +/datum/recipe/microwave/candiedapple fruit = list("apple" = 1) reagents = list("water" = 5, "sugar" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/candiedapple -/datum/recipe/applepie +/datum/recipe/microwave/applepie fruit = list("apple" = 1) items = list(/obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough) result = /obj/item/weapon/reagent_containers/food/snacks/applepie -/datum/recipe/slimeburger +/datum/recipe/microwave/slimeburger reagents = list("slimejelly" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/bun ) result = /obj/item/weapon/reagent_containers/food/snacks/jellyburger/slime -/datum/recipe/jellyburger +/datum/recipe/microwave/jellyburger reagents = list("cherryjelly" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/bun ) result = /obj/item/weapon/reagent_containers/food/snacks/jellyburger/cherry -/datum/recipe/twobread +/datum/recipe/microwave/twobread reagents = list("wine" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/slice/bread, @@ -801,7 +801,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/twobread -/datum/recipe/slimesandwich +/datum/recipe/microwave/slimesandwich reagents = list("slimejelly" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/slice/bread, @@ -809,7 +809,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/jellysandwich/slime -/datum/recipe/cherrysandwich +/datum/recipe/microwave/cherrysandwich reagents = list("cherryjelly" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/slice/bread, @@ -817,37 +817,37 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/jellysandwich/cherry -/datum/recipe/bloodsoup +/datum/recipe/microwave/bloodsoup reagents = list("blood" = 30) result = /obj/item/weapon/reagent_containers/food/snacks/bloodsoup -/datum/recipe/slimesoup +/datum/recipe/microwave/slimesoup reagents = list("water" = 10, "slimejelly" = 5) items = list() result = /obj/item/weapon/reagent_containers/food/snacks/slimesoup -/datum/recipe/boiledslimeextract +/datum/recipe/microwave/boiledslimeextract reagents = list("water" = 5) items = list( /obj/item/slime_extract, ) result = /obj/item/weapon/reagent_containers/food/snacks/boiledslimecore -/datum/recipe/chocolateegg +/datum/recipe/microwave/chocolateegg items = list( /obj/item/weapon/reagent_containers/food/snacks/egg, /obj/item/weapon/reagent_containers/food/snacks/chocolatebar, ) result = /obj/item/weapon/reagent_containers/food/snacks/chocolateegg -/datum/recipe/sausage +/datum/recipe/microwave/sausage items = list( /obj/item/weapon/reagent_containers/food/snacks/meatball, /obj/item/weapon/reagent_containers/food/snacks/cutlet, ) result = /obj/item/weapon/reagent_containers/food/snacks/sausage -/datum/recipe/fishfingers +/datum/recipe/microwave/fishfingers reagents = list("flour" = 10) items = list( /obj/item/weapon/reagent_containers/food/snacks/egg, @@ -855,7 +855,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/fishfingers -/datum/recipe/zestfish +/datum/recipe/microwave/zestfish fruit = list("lemon" = 1) reagents = list("sodiumchloride" = 3) items = list( @@ -863,7 +863,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/zestfish -/datum/recipe/limezestfish +/datum/recipe/microwave/limezestfish fruit = list("lime" = 1) reagents = list("sodiumchloride" = 3) items = list( @@ -871,7 +871,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/zestfish -/datum/recipe/kudzudonburi +/datum/recipe/microwave/kudzudonburi fruit = list("kudzu" = 1) reagents = list("rice" = 10) items = list( @@ -879,7 +879,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/kudzudonburi -/datum/recipe/mysterysoup +/datum/recipe/microwave/mysterysoup reagents = list("water" = 10) items = list( /obj/item/weapon/reagent_containers/food/snacks/badrecipe, @@ -889,22 +889,22 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/mysterysoup -/datum/recipe/pumpkinpie +/datum/recipe/microwave/pumpkinpie fruit = list("pumpkin" = 1) reagents = list("milk" = 5, "sugar" = 5, "egg" = 3, "flour" = 10) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/pumpkinpie -/datum/recipe/plumphelmetbiscuit +/datum/recipe/microwave/plumphelmetbiscuit fruit = list("plumphelmet" = 1) reagents = list("water" = 5, "flour" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/plumphelmetbiscuit -/datum/recipe/mushroomsoup +/datum/recipe/microwave/mushroomsoup fruit = list("mushroom" = 1) reagents = list("water" = 5, "milk" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/mushroomsoup -/datum/recipe/chawanmushi +/datum/recipe/microwave/chawanmushi fruit = list("mushroom" = 1) reagents = list("water" = 5, "soysauce" = 5) items = list( @@ -913,12 +913,12 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/chawanmushi -/datum/recipe/beetsoup +/datum/recipe/microwave/beetsoup fruit = list("whitebeet" = 1, "cabbage" = 1) reagents = list("water" = 10) result = /obj/item/weapon/reagent_containers/food/snacks/beetsoup -/datum/recipe/appletart +/datum/recipe/microwave/appletart fruit = list("goldapple" = 1) reagents = list("sugar" = 5, "milk" = 5, "flour" = 10) items = list( @@ -926,29 +926,29 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/appletart -/datum/recipe/tossedsalad +/datum/recipe/microwave/tossedsalad fruit = list("cabbage" = 2, "tomato" = 1, "carrot" = 1, "apple" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/tossedsalad -/datum/recipe/flowersalad +/datum/recipe/microwave/flowersalad fruit = list("harebell" = 1, "poppy" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/roastedsunflower ) result = /obj/item/weapon/reagent_containers/food/snacks/flowerchildsalad -/datum/recipe/rosesalad +/datum/recipe/microwave/rosesalad fruit = list("harebell" = 1, "rose" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/roastedsunflower ) result = /obj/item/weapon/reagent_containers/food/snacks/rosesalad -/datum/recipe/aesirsalad +/datum/recipe/microwave/aesirsalad fruit = list("goldapple" = 1, "ambrosiadeus" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/aesirsalad -/datum/recipe/validsalad +/datum/recipe/microwave/validsalad fruit = list("potato" = 1, "ambrosia" = 3) items = list(/obj/item/weapon/reagent_containers/food/snacks/meatball) result = /obj/item/weapon/reagent_containers/food/snacks/validsalad @@ -957,21 +957,21 @@ I said no! being_cooked.reagents.del_reagent("toxin") return being_cooked -/datum/recipe/cracker +/datum/recipe/microwave/cracker reagents = list("sodiumchloride" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/doughslice ) result = /obj/item/weapon/reagent_containers/food/snacks/cracker -/datum/recipe/stuffing +/datum/recipe/microwave/stuffing reagents = list("water" = 5, "sodiumchloride" = 1, "blackpepper" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, ) result = /obj/item/weapon/reagent_containers/food/snacks/stuffing -/datum/recipe/tofurkey +/datum/recipe/microwave/tofurkey items = list( /obj/item/weapon/reagent_containers/food/snacks/tofu, /obj/item/weapon/reagent_containers/food/snacks/tofu, @@ -980,18 +980,18 @@ I said no! result = /obj/item/weapon/reagent_containers/food/snacks/tofurkey // Fuck Science! -/datum/recipe/ruinedvirusdish +/datum/recipe/microwave/ruinedvirusdish items = list( /obj/item/weapon/virusdish ) result = /obj/item/weapon/ruinedvirusdish -/datum/recipe/onionrings +/datum/recipe/microwave/onionrings fruit = list("onion" = 1) reagents = list("flour" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/onionrings -/datum/recipe/onionsoup +/datum/recipe/microwave/onionsoup fruit = list("onion" = 1) reagents = list("water" = 10) result = /obj/item/weapon/reagent_containers/food/snacks/onionsoup @@ -1000,7 +1000,7 @@ I said no! // bs12 food port stuff ////////////////////////////////////////// -/datum/recipe/taco +/datum/recipe/microwave/taco items = list( /obj/item/weapon/reagent_containers/food/snacks/doughslice, /obj/item/weapon/reagent_containers/food/snacks/cutlet, @@ -1008,56 +1008,56 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/taco -/datum/recipe/bun +/datum/recipe/microwave/bun items = list( /obj/item/weapon/reagent_containers/food/snacks/dough ) result = /obj/item/weapon/reagent_containers/food/snacks/bun -/datum/recipe/flatbread +/datum/recipe/microwave/flatbread items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough ) result = /obj/item/weapon/reagent_containers/food/snacks/flatbread -/datum/recipe/meatball +/datum/recipe/microwave/meatball items = list( /obj/item/weapon/reagent_containers/food/snacks/rawmeatball ) result = /obj/item/weapon/reagent_containers/food/snacks/meatball -/datum/recipe/cutlet +/datum/recipe/microwave/cutlet items = list( /obj/item/weapon/reagent_containers/food/snacks/rawcutlet ) result = /obj/item/weapon/reagent_containers/food/snacks/cutlet -/datum/recipe/fries +/datum/recipe/microwave/fries items = list( /obj/item/weapon/reagent_containers/food/snacks/rawsticks ) result = /obj/item/weapon/reagent_containers/food/snacks/fries -/datum/recipe/roastedsunflowerseeds +/datum/recipe/microwave/roastedsunflowerseeds reagents = list("sodiumchloride" = 1, "cornoil" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/rawsunflower ) result = /obj/item/weapon/reagent_containers/food/snacks/roastedsunflower -/datum/recipe/roastedpeanutsunflowerseeds +/datum/recipe/microwave/roastedpeanutsunflowerseeds reagents = list("sodiumchloride" = 1, "peanutoil" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/rawsunflower ) result = /obj/item/weapon/reagent_containers/food/snacks/roastedsunflower -/datum/recipe/roastedpeanuts +/datum/recipe/microwave/roastedpeanuts fruit = list("peanut" = 2) reagents = list("sodiumchloride" = 2, "cornoil" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/roastedpeanuts -/datum/recipe/mint +/datum/recipe/microwave/mint reagents = list("sugar" = 5, "frostoil" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/mint @@ -1065,7 +1065,7 @@ I said no! // TGstation food ports //////////////////////// -/datum/recipe/meatbun +/datum/recipe/microwave/meatbun fruit = list("cabbage" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/meatball, @@ -1073,14 +1073,14 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/meatbun -/datum/recipe/sashimi +/datum/recipe/microwave/sashimi reagents = list("soysauce" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/carpmeat ) result = /obj/item/weapon/reagent_containers/food/snacks/sashimi -/datum/recipe/benedict +/datum/recipe/microwave/benedict items = list( /obj/item/weapon/reagent_containers/food/snacks/cutlet, /obj/item/weapon/reagent_containers/food/snacks/friedegg, @@ -1088,19 +1088,19 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/benedict -/datum/recipe/bakedbeans +/datum/recipe/microwave/bakedbeans fruit = list("soybeans" = 2) reagents = list("ketchup" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/beans -/datum/recipe/sugarcookie +/datum/recipe/microwave/sugarcookie items = list( /obj/item/weapon/reagent_containers/food/snacks/dough ) reagents = list("sugar" = 5, "egg" = 3) result = /obj/item/weapon/reagent_containers/food/snacks/sugarcookie -/datum/recipe/berrymuffin +/datum/recipe/microwave/berrymuffin reagents = list("milk" = 5, "sugar" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough @@ -1108,7 +1108,7 @@ I said no! fruit = list("berries" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/berrymuffin -/datum/recipe/ghostmuffin +/datum/recipe/microwave/ghostmuffin reagents = list("milk" = 5, "sugar" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/dough, @@ -1117,7 +1117,7 @@ I said no! fruit = list("berries" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/ghostmuffin -/datum/recipe/eggroll +/datum/recipe/microwave/eggroll reagents = list("soysauce" = 10) items = list( /obj/item/weapon/reagent_containers/food/snacks/friedegg @@ -1125,28 +1125,28 @@ I said no! fruit = list("cabbage" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/eggroll -/datum/recipe/fruitsalad +/datum/recipe/microwave/fruitsalad fruit = list("orange" = 1, "apple" = 1, "grapes" = 1, "watermelon" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/fruitsalad -/datum/recipe/eggbowl +/datum/recipe/microwave/eggbowl reagents = list("water" = 5, "rice" = 10, "egg" = 3) result = /obj/item/weapon/reagent_containers/food/snacks/eggbowl -/datum/recipe/porkbowl +/datum/recipe/microwave/porkbowl reagents = list("water" = 5, "rice" = 10) items = list( /obj/item/weapon/reagent_containers/food/snacks/cutlet ) result = /obj/item/weapon/reagent_containers/food/snacks/porkbowl -/datum/recipe/tortilla +/datum/recipe/microwave/tortilla items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough ) result = /obj/item/weapon/reagent_containers/food/snacks/tortilla -/datum/recipe/meatburrito +/datum/recipe/microwave/meatburrito fruit = list("soybeans" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/tortilla, @@ -1155,7 +1155,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/meatburrito -/datum/recipe/cheeseburrito +/datum/recipe/microwave/cheeseburrito fruit = list("soybeans" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/tortilla, @@ -1164,21 +1164,21 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/cheeseburrito -/datum/recipe/fuegoburrito +/datum/recipe/microwave/fuegoburrito fruit = list("soybeans" = 1, "chili" = 2) items = list( /obj/item/weapon/reagent_containers/food/snacks/tortilla ) result = /obj/item/weapon/reagent_containers/food/snacks/fuegoburrito -/datum/recipe/nachos +/datum/recipe/microwave/nachos reagents = list("sodiumchloride" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/tortilla ) result = /obj/item/weapon/reagent_containers/food/snacks/nachos -/datum/recipe/cheesenachos +/datum/recipe/microwave/cheesenachos reagents = list("sodiumchloride" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/tortilla, @@ -1186,7 +1186,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/cheesenachos -/datum/recipe/cubannachos +/datum/recipe/microwave/cubannachos fruit = list("chili" = 1) reagents = list("ketchup" = 5) items = list( @@ -1194,12 +1194,12 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/cubannachos -/datum/recipe/curryrice +/datum/recipe/microwave/curryrice fruit = list("chili" = 1) reagents = list("rice" = 10) result = /obj/item/weapon/reagent_containers/food/snacks/curryrice -/datum/recipe/piginblanket +/datum/recipe/microwave/piginblanket items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough, /obj/item/weapon/reagent_containers/food/snacks/sausage @@ -1207,16 +1207,16 @@ I said no! result = /obj/item/weapon/reagent_containers/food/snacks/piginblanket // Cakes. -/datum/recipe/cake +/datum/recipe/microwave/cake reagents = list("milk" = 5, "flour" = 15, "sugar" = 15, "egg" = 9, "vanilla" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/plaincake -/datum/recipe/cake/carrot +/datum/recipe/microwave/cake/carrot fruit = list("carrot" = 1) reagents = list("milk" = 5, "flour" = 15, "egg" = 9,"sugar" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/carrotcake -/datum/recipe/cake/cheese +/datum/recipe/microwave/cake/cheese reagents = list("milk" = 5, "flour" = 15, "sugar" = 15, "egg" = 9) items = list( /obj/item/weapon/reagent_containers/food/snacks/cheesewedge, @@ -1224,54 +1224,54 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesecake -/datum/recipe/cake/peanut +/datum/recipe/microwave/cake/peanut fruit = list("peanut" = 3) reagents = list("milk" = 5, "flour" = 10, "sugar" = 5, "egg" = 6, "peanutbutter" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/peanutcake -/datum/recipe/cake/orange +/datum/recipe/microwave/cake/orange fruit = list("orange" = 1) reagents = list("milk" = 5, "flour" = 15, "egg" = 9,"sugar" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/orangecake -/datum/recipe/cake/lime +/datum/recipe/microwave/cake/lime fruit = list("lime" = 1) reagents = list("milk" = 5, "flour" = 15, "egg" = 9,"sugar" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/limecake -/datum/recipe/cake/lemon +/datum/recipe/microwave/cake/lemon fruit = list("lemon" = 1) reagents = list("milk" = 5, "flour" = 15, "egg" = 9,"sugar" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/lemoncake -/datum/recipe/cake/chocolate +/datum/recipe/microwave/cake/chocolate items = list(/obj/item/weapon/reagent_containers/food/snacks/chocolatebar) reagents = list("milk" = 5, "flour" = 15, "egg" = 9,"sugar" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/chocolatecake -/datum/recipe/cake/birthday +/datum/recipe/microwave/cake/birthday reagents = list("milk" = 5, "flour" = 15, "sugar" = 15, "egg" = 9) items = list(/obj/item/clothing/head/cakehat) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/birthdaycake -/datum/recipe/cake/apple +/datum/recipe/microwave/cake/apple fruit = list("apple" = 1) reagents = list("milk" = 5, "flour" = 15, "egg" = 9,"sugar" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/applecake -/datum/recipe/cake/brain +/datum/recipe/microwave/cake/brain reagents = list("milk" = 5, "flour" = 15, "sugar" = 15, "egg" = 9) items = list(/obj/item/organ/internal/brain) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/braincake -/datum/recipe/bagelplain +/datum/recipe/microwave/bagelplain reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/bun ) result = /obj/item/weapon/reagent_containers/food/snacks/bagelplain -/datum/recipe/bagelsunflower +/datum/recipe/microwave/bagelsunflower reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, @@ -1279,7 +1279,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/bagelsunflower -/datum/recipe/bagelcheese +/datum/recipe/microwave/bagelcheese reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, @@ -1287,7 +1287,7 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/bagelcheese -/datum/recipe/bagelraisin +/datum/recipe/microwave/bagelraisin reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, @@ -1295,15 +1295,15 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/bagelraisin -/datum/recipe/bagelpoppy +/datum/recipe/microwave/bagelpoppy fruit = list("poppy" = 1) reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/bun ) - result = /obj/item/weapon/reagent_containers/food/snacks/bagelraisin + result = /obj/item/weapon/reagent_containers/food/snacks/bagelpoppy -/datum/recipe/bageleverything +/datum/recipe/microwave/bageleverything reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, @@ -1311,10 +1311,10 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/bageleverything -/datum/recipe/bageltwo +/datum/recipe/microwave/bageltwo reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/bun, /obj/item/device/soulstone ) - result = /obj/item/weapon/reagent_containers/food/snacks/bageltwo \ No newline at end of file + result = /obj/item/weapon/reagent_containers/food/snacks/bageltwo diff --git a/code/modules/food/recipes_microwave_vr.dm b/code/modules/food/recipes_microwave_vr.dm index 1514dce7c7..14fe3a0b98 100644 --- a/code/modules/food/recipes_microwave_vr.dm +++ b/code/modules/food/recipes_microwave_vr.dm @@ -1,5 +1,5 @@ /* -/datum/recipe/unique_name +/datum/recipe/microwave/unique_name fruit = list("example_fruit1" = 1, "example_fruit2" = 2) reagents = list("example_reagent1" = 10, "example_reagent2" = 5) items = list( @@ -9,23 +9,23 @@ result = /obj/item/weapon/reagent_containers/food/snacks/path_to_some_food */ -/datum/recipe/jellydonut +/datum/recipe/microwave/jellydonut items = list( /obj/item/weapon/reagent_containers/food/snacks/doughslice) -/datum/recipe/jellydonut/slime +/datum/recipe/microwave/jellydonut/slime items = list( /obj/item/weapon/reagent_containers/food/snacks/doughslice) -/datum/recipe/jellydonut/cherry +/datum/recipe/microwave/jellydonut/cherry items = list( /obj/item/weapon/reagent_containers/food/snacks/doughslice) -/datum/recipe/donut +/datum/recipe/microwave/donut items = list( /obj/item/weapon/reagent_containers/food/snacks/doughslice) -/datum/recipe/sushi +/datum/recipe/microwave/sushi fruit = list("cabbage" = 1) reagents = list("rice" = 20) items = list( @@ -35,7 +35,7 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/sushi -/datum/recipe/lasagna +/datum/recipe/microwave/lasagna fruit = list("tomato" = 2, "eggplant" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/cutlet, @@ -45,7 +45,7 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/lasagna -/datum/recipe/goulash +/datum/recipe/microwave/goulash fruit = list("tomato" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/cutlet, @@ -53,7 +53,7 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/goulash -/datum/recipe/donerkebab +/datum/recipe/microwave/donerkebab fruit = list("tomato" = 1, "cabbage" = 1) reagents = list("sodiumchloride" = 1) items = list( @@ -62,21 +62,21 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/donerkebab -/datum/recipe/roastbeef +/datum/recipe/microwave/roastbeef fruit = list("carrot" = 2, "potato" = 2) items = list( /obj/item/weapon/reagent_containers/food/snacks/meat ) result = /obj/item/weapon/reagent_containers/food/snacks/roastbeef -/datum/recipe/reishicup +/datum/recipe/microwave/reishicup reagents = list("psilocybin" = 3, "sugar" = 3) items = list( /obj/item/weapon/reagent_containers/food/snacks/chocolatebar ) result = /obj/item/weapon/reagent_containers/food/snacks/reishicup -/datum/recipe/chickenwings +/datum/recipe/microwave/chickenwings reagents = list("capsaicin" = 5, "flour" = 10) items = list( /obj/item/weapon/reagent_containers/food/snacks/meat, @@ -86,7 +86,7 @@ ) result = /obj/item/weapon/storage/box/wings //This is kinda like the donut box. -/datum/recipe/hotandsoursoup +/datum/recipe/microwave/hotandsoursoup fruit = list("cabbage" = 1, "mushroom" = 1) reagents = list("sodiumchloride" = 2, "blackpepper" = 2, "water" = 10) items = list( @@ -94,7 +94,7 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/hotandsoursoup -/datum/recipe/kitsuneudon +/datum/recipe/microwave/kitsuneudon reagents = list("egg" = 3) items = list( /obj/item/weapon/reagent_containers/food/snacks/spagetti, @@ -102,7 +102,7 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/kitsuneudon -/datum/recipe/generalschicken +/datum/recipe/microwave/generalschicken reagents = list("capsaicin" = 2, "sugar" = 2, "flour" = 10) items = list( /obj/item/weapon/reagent_containers/food/snacks/meat, @@ -110,40 +110,40 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/generalschicken -/datum/recipe/chocroizegg +/datum/recipe/microwave/chocroizegg items = list( /obj/item/weapon/reagent_containers/food/snacks/chocolatebar, /obj/item/weapon/reagent_containers/food/snacks/egg/roiz ) result = /obj/item/weapon/reagent_containers/food/snacks/chocolateegg/roiz -/datum/recipe/friedroizegg +/datum/recipe/microwave/friedroizegg reagents = list("sodiumchloride" = 1, "blackpepper" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/egg/roiz ) result = /obj/item/weapon/reagent_containers/food/snacks/friedegg/roiz -/datum/recipe/boiledroizegg +/datum/recipe/microwave/boiledroizegg reagents = list("water" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/egg/roiz ) result = /obj/item/weapon/reagent_containers/food/snacks/boiledegg/roiz -/datum/recipe/pillbugball +/datum/recipe/microwave/pillbugball reagents = list("carbon" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat ) result = /obj/item/weapon/reagent_containers/food/snacks/bugball -/datum/recipe/mammi +/datum/recipe/microwave/mammi fruit = list("orange" = 1) reagents = list("water" = 10, "flour" = 10, "milk" = 5, "sodiumchloride" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/mammi -/datum/recipe/makaroni +/datum/recipe/microwave/makaroni reagents = list("flour" = 15, "milk" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat, @@ -153,34 +153,34 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/makaroni -/datum/recipe/lobster +/datum/recipe/microwave/lobster fruit = list("lemon" = 1, "cabbage" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/lobster ) result = /obj/item/weapon/reagent_containers/food/snacks/lobstercooked -/datum/recipe/cuttlefish +/datum/recipe/microwave/cuttlefish items = list( /obj/item/weapon/reagent_containers/food/snacks/cuttlefish ) result = /obj/item/weapon/reagent_containers/food/snacks/cuttlefishcooked -/datum/recipe/monkfish +/datum/recipe/microwave/monkfish fruit = list("chili" = 1, "onion" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/monkfishfillet ) result = /obj/item/weapon/reagent_containers/food/snacks/monkfishcooked -/datum/recipe/sharksteak +/datum/recipe/microwave/sharksteak reagents = list("blackpepper"= 1, "sodiumchloride" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish/sharkmeat ) result = /obj/item/weapon/reagent_containers/food/snacks/sharkmeatcooked -/datum/recipe/sharkdip +/datum/recipe/microwave/sharkdip reagents = list("sodiumchloride" = 1) fruit = list("chili" = 1) items = list( @@ -188,7 +188,7 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/sharkmeatdip -/datum/recipe/sharkcubes +/datum/recipe/microwave/sharkcubes reagents = list("soysauce" = 5, "sodiumchloride" = 1) fruit = list("potato" = 1) items = list( @@ -196,28 +196,28 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/sharkmeatcubes -/datum/recipe/margheritapizzacargo +/datum/recipe/microwave/margheritapizzacargo reagents = list() items = list( /obj/item/weapon/reagent_containers/food/snacks/pizza/margfrozen ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/margcargo -/datum/recipe/mushroompizzacargo +/datum/recipe/microwave/mushroompizzacargo reagents = list() items = list( /obj/item/weapon/reagent_containers/food/snacks/pizza/mushfrozen ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/mushcargo -/datum/recipe/meatpizzacargo +/datum/recipe/microwave/meatpizzacargo reagents = list() items = list( /obj/item/weapon/reagent_containers/food/snacks/pizza/meatfrozen ) result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/meatcargo -/datum/recipe/vegtablepizzacargo +/datum/recipe/microwave/vegtablepizzacargo reagents = list() items = list( /obj/item/weapon/reagent_containers/food/snacks/pizza/vegfrozen @@ -226,7 +226,7 @@ //// food cubes -/datum/recipe/foodcubes +/datum/recipe/microwave/foodcubes reagents = list("enzyme" = 20,"virusfood" = 5, "nutriment" = 15, "protein" = 15) // labor intensive items = list() result = /obj/item/weapon/storage/box/wings/tray \ No newline at end of file diff --git a/code/modules/gamemaster/game_master.dm b/code/modules/gamemaster/game_master.dm index e931cd878f..8814fb362e 100644 --- a/code/modules/gamemaster/game_master.dm +++ b/code/modules/gamemaster/game_master.dm @@ -101,7 +101,7 @@ if(action.length) spawn(action.length) action.end() - next_action = world.time + rand(15 MINUTES, 30 MINUTES) + next_action = world.time + rand(5 MINUTES, 20 MINUTES) last_department_used = action.departments[1] diff --git a/code/modules/hydroponics/seed.dm b/code/modules/hydroponics/seed.dm index 874d3dcb10..70b5c99170 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -452,11 +452,15 @@ var/additional_chems = rand(0,5) if(additional_chems) - + //VOREStation Edit Start TFF 24/1/20 - More chems to the blacklist for prefs reasoning. var/list/banned_chems = list( "adminordrazine", - "nutriment" + "nutriment", + "macrocillin", + "microcillin", + "normalcillin" ) + //VOREStation Edit End for(var/x=1;x<=additional_chems;x++) diff --git a/code/modules/hydroponics/seed_datums_vr.dm b/code/modules/hydroponics/seed_datums_vr.dm index 5fcf7c4432..1816128e7f 100644 --- a/code/modules/hydroponics/seed_datums_vr.dm +++ b/code/modules/hydroponics/seed_datums_vr.dm @@ -41,4 +41,4 @@ set_trait(TRAIT_PRODUCT_COLOUR,"#DADA00") /datum/seed/gnomes - harvest_sound = 'sound/items/hooh.ogg' \ No newline at end of file +// harvest_sound = 'sound/items/hooh.ogg' // Yawnstation edit - comments out gnome sounds. diff --git a/code/modules/hydroponics/trays/tray.dm b/code/modules/hydroponics/trays/tray.dm index d86f19adeb..2e5d64c244 100644 --- a/code/modules/hydroponics/trays/tray.dm +++ b/code/modules/hydroponics/trays/tray.dm @@ -377,7 +377,7 @@ return // Check if we should even bother working on the current seed datum. - if(seed.mutants. && seed.mutants.len && severity > 1) + if(seed.mutants && seed.mutants.len && severity > 1) mutate_species() return diff --git a/code/modules/integrated_electronics/subtypes/input.dm b/code/modules/integrated_electronics/subtypes/input.dm index 74ed4d224e..dc17f3323b 100644 --- a/code/modules/integrated_electronics/subtypes/input.dm +++ b/code/modules/integrated_electronics/subtypes/input.dm @@ -567,7 +567,8 @@ LANGUAGE_SOL_COMMON, LANGUAGE_TRADEBAND, LANGUAGE_GUTTER, - LANGUAGE_TERMINUS + LANGUAGE_TERMINUS, + LANGUAGE_SIGN ) /obj/item/integrated_circuit/input/microphone/sign/Initialize() @@ -587,7 +588,8 @@ set_pin_data(IC_OUTPUT, 2, msg) push_data() - activate_pin(1) + if(!translated) + activate_pin(1) if(translated) activate_pin(2) diff --git a/code/modules/library/lib_items.dm b/code/modules/library/lib_items.dm index 9b9be0d6c8..009980bec5 100644 --- a/code/modules/library/lib_items.dm +++ b/code/modules/library/lib_items.dm @@ -13,6 +13,7 @@ /obj/structure/bookcase name = "bookcase" + desc = "A set of wooden shelves, perfect for placing books on." icon = 'icons/obj/library.dmi' icon_state = "book-0" anchored = 1 @@ -95,7 +96,34 @@ else icon_state = "book-5" +/* +Book Cart +*/ +/obj/structure/bookcase/bookcart + name = "book cart" + icon = 'icons/obj/library.dmi' + icon_state = "bookcart-0" + anchored = 0 + opacity = 0 + +/obj/structure/bookcase/bookcart/attackby(obj/item/O as obj, mob/user as mob) + if(istype(O, /obj/item/weapon/book)) + user.drop_item() + O.loc = src + update_icon() + else + return + +/obj/structure/bookcase/bookcart/update_icon() + if(contents.len < 5) + icon_state = "bookcart-[contents.len]" + else + icon_state = "bookcart-5" + +/* +Book Cart End +*/ /obj/structure/bookcase/manuals/medical name = "Medical Manuals bookcase" @@ -297,7 +325,7 @@ user << browse(dat + "[P.name]" \ + "" \ + "
Written on the back:
[P.scribble]" : ]"\ + + "[P.scribble ? "
Written on the back:
[P.scribble]" : null]"\ + "", "window=[name]") else if(!isnull(pages[page])) if(!(istype(usr, /mob/living/carbon/human) || isobserver(usr) || istype(usr, /mob/living/silicon))) diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm index e86ed026b7..b5b6d8efb6 100644 --- a/code/modules/library/lib_machines.dm +++ b/code/modules/library/lib_machines.dm @@ -116,6 +116,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f // It is August 22nd, 2012... This TODO has already been here for months.. I wonder how long it'll last before someone does something about it. // Nov 2019. Nope. /obj/machinery/librarycomp name = "Check-In/Out Computer" + desc = "Print books from the archives! (You aren't quite sure how they're printed by it, though.)" icon = 'icons/obj/library.dmi' icon_state = "computer" anchored = 1 @@ -228,7 +229,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f dat += "

External Archive

" //VOREStation Edit establish_old_db_connection() - dat += "

Warning: System Administrator has slated this archive for removal. Personal uploads should be taken to the NT board of internal literature.

" +// dat += "

Warning: System Administrator has slated this archive for removal. Personal uploads should be taken to the NT board of internal literature.

" //VOREStation Removal TFF 29/1/20 - Redundant warning, we're not removing our library entries. if(!dbcon_old.IsConnected()) dat += "ERROR: Unable to contact External Archive. Please contact your system administrator for assistance." @@ -521,6 +522,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f */ /obj/machinery/bookbinder name = "Book Binder" + desc = "Bundles up a stack of inserted paper into a convenient book format." icon = 'icons/obj/library.dmi' icon_state = "binder" anchored = 1 diff --git a/code/modules/mining/coins.dm b/code/modules/mining/coins.dm index 9b75a1dba8..7335165092 100644 --- a/code/modules/mining/coins.dm +++ b/code/modules/mining/coins.dm @@ -3,6 +3,7 @@ /obj/item/weapon/coin icon = 'icons/obj/items.dmi' name = "Coin" + desc = "A simple coin you can flip." icon_state = "coin" force = 0.0 throwforce = 0.0 diff --git a/code/modules/mining/machine_stacking.dm b/code/modules/mining/machine_stacking.dm index 220828bd61..347601176a 100644 --- a/code/modules/mining/machine_stacking.dm +++ b/code/modules/mining/machine_stacking.dm @@ -130,7 +130,7 @@ S.amount = stack_amt stack_storage[sheet] -= stack_amt S.update_icon() - + if(console) console.updateUsrDialog() return diff --git a/code/modules/mob/language/station_YW.dm b/code/modules/mob/language/station_YW.dm new file mode 100644 index 0000000000..9fa93fe6a3 --- /dev/null +++ b/code/modules/mob/language/station_YW.dm @@ -0,0 +1,9 @@ +/datum/language/grey + name = LANGUAGE_PSIONIC + desc = "Grey Psionic communication" + speech_verb = "says" + whisper_verb = "whispers" + colour = "psionic" + key = "^" + flags = HIVEMIND | RESTRICTED + syllables = list("blah","blah","blah","bleh","meh","neh","nah","wah") \ No newline at end of file diff --git a/code/modules/mob/living/bot/bot_vr.dm b/code/modules/mob/living/bot/bot_vr.dm new file mode 100644 index 0000000000..958db0dc9f --- /dev/null +++ b/code/modules/mob/living/bot/bot_vr.dm @@ -0,0 +1,2 @@ +/mob/living/bot + no_vore = TRUE \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index f1efd4933d..643287cb19 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1186,7 +1186,7 @@ if(LAZYLEN(species.descriptors)) descriptors = list() for(var/desctype in species.descriptors) - var/datum/mob_descriptor.descriptor = species.descriptors[desctype] + var/datum/mob_descriptor/descriptor = species.descriptors[desctype] descriptors[desctype] = descriptor.default_value spawn(0) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 57cef190ec..52d771ad30 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -575,9 +575,8 @@ emp_act return perm // This is for preventing harm by being covered in water, which only prometheans need to deal with. -// This is not actually used for now since the code for prometheans gets changed a lot. /mob/living/carbon/human/get_water_protection() - var/protection = ..() // Todo: Replace with species var later. + var/protection = species.water_resistance if(protection == 1) // No point doing permeability checks if it won't matter. return protection // Wearing clothing with a low permeability_coefficient can protect from water. @@ -585,8 +584,15 @@ emp_act var/converted_protection = 1 - protection var/perm = reagent_permeability() converted_protection *= perm - return 1-converted_protection + return CLAMP(1-converted_protection, 0, 1) +/mob/living/carbon/human/water_act(amount) + adjust_fire_stacks(-amount * 5) + for(var/atom/movable/AM in contents) + AM.water_act(amount) + remove_modifiers_of_type(/datum/modifier/fire) + + species.handle_water_damage(src, amount) /mob/living/carbon/human/shank_attack(obj/item/W, obj/item/weapon/grab/G, mob/user, hit_zone) @@ -614,4 +620,4 @@ emp_act G.last_action = world.time flick(G.hud.icon_state, G.hud) - return 1 \ No newline at end of file + return 1 diff --git a/code/modules/mob/living/carbon/human/human_powers_YW.dm b/code/modules/mob/living/carbon/human/human_powers_YW.dm new file mode 100644 index 0000000000..abb3a70ab9 --- /dev/null +++ b/code/modules/mob/living/carbon/human/human_powers_YW.dm @@ -0,0 +1,17 @@ +/mob/living/carbon/human/proc/telepathy(mob/M as mob in oview()) + set name = "Project mind" + set desc = "Talk telepathically to someone over a distance." + set category = "Abilities" + + var/msg = sanitize(input("Message:", "Project mind") as text|null) + if(msg) + var/mob/living/carbon/human/H = M + log_say("(GreyTP to [key_name(M)]) [msg]", src) + if(H.species.name == src.species.name) + M << "you hear [src.name]'s voice: [msg]" + to_chat(src, "You said: \"[msg]\" to [M]") + else + M << "you hear a voice echo in your head... [msg]" + to_chat(src, "You said: \"[msg]\" to [M]") + + return \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index dfc44661c8..67c429e833 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -142,6 +142,8 @@ "Your skin prickles in the heat." ) + var/water_resistance = 0.1 // How wet the species gets from being splashed. + var/water_damage_mod = 0 // How much water damage is multiplied by when splashing this species. var/passive_temp_gain = 0 // Species will gain this much temperature every second var/hazard_high_pressure = HAZARD_HIGH_PRESSURE // Dangerously high pressure. @@ -474,3 +476,9 @@ // Allow species to display interesting information in the human stat panels /datum/species/proc/Stat(var/mob/living/carbon/human/H) return + +/datum/species/proc/handle_water_damage(var/mob/living/carbon/human/H, var/amount = 0) + amount *= 1 - H.get_water_protection() + amount *= water_damage_mod + if(amount > 0) + H.adjustToxLoss(amount) diff --git a/code/modules/mob/living/carbon/human/species/station/greyYW.dm b/code/modules/mob/living/carbon/human/species/station/greyYW.dm new file mode 100644 index 0000000000..d6f946ec7d --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/station/greyYW.dm @@ -0,0 +1,63 @@ +/datum/species/grey + name = SPECIES_GREY_YW + name_plural = "Gray" + icobase = 'icons/mob/human_races/r_grey.dmi' + deform = 'icons/mob/human_races/r_def_grey.dmi' + unarmed_types = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/punch) + blurb = "Insert Grey Lore." + num_alternate_languages = 3 + species_language = LANGUAGE_PSIONIC + secondary_langs = list(LANGUAGE_PSIONIC) + name_language = null // Use the first-name last-name generator rather than a language scrambler + assisted_langs = list(LANGUAGE_EAL, LANGUAGE_SKRELLIAN, LANGUAGE_SKRELLIANFAR, LANGUAGE_ROOTLOCAL, LANGUAGE_ROOTGLOBAL, LANGUAGE_VOX) + flesh_color = "#a598ad" + blood_color = "#A200FF" + brute_mod = 1.25 + flash_mod = 1.15 + darksight = 5 + reagent_tag = IS_GREY + + + + min_age = 18 + max_age = 130 + + + health_hud_intensity = 1.5 + + spawn_flags = SPECIES_CAN_JOIN + appearance_flags = HAS_LIPS | HAS_UNDERWEAR | HAS_EYE_COLOR + + has_organ = list( + O_HEART = /obj/item/organ/internal/heart, + O_LUNGS = /obj/item/organ/internal/lungs, + O_VOICE = /obj/item/organ/internal/voicebox, + O_LIVER = /obj/item/organ/internal/liver, + O_KIDNEYS = /obj/item/organ/internal/kidneys, + O_BRAIN = /obj/item/organ/internal/brain, + O_APPENDIX = /obj/item/organ/internal/appendix, + O_SPLEEN = /obj/item/organ/internal/spleen, + O_EYES = /obj/item/organ/internal/eyes/grey, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine + ) + + has_limbs = list( + BP_TORSO = list("path" = /obj/item/organ/external/chest), + BP_GROIN = list("path" = /obj/item/organ/external/groin), + BP_HEAD = list("path" = /obj/item/organ/external/head/vr/grey), + BP_L_ARM = list("path" = /obj/item/organ/external/arm), + BP_R_ARM = list("path" = /obj/item/organ/external/arm/right), + BP_L_LEG = list("path" = /obj/item/organ/external/leg), + BP_R_LEG = list("path" = /obj/item/organ/external/leg/right), + BP_L_HAND = list("path" = /obj/item/organ/external/hand), + BP_R_HAND = list("path" = /obj/item/organ/external/hand/right), + BP_L_FOOT = list("path" = /obj/item/organ/external/foot), + BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right) + ) + + inherent_verbs = list(/mob/living/carbon/human/proc/telepathy) + +/datum/species/grey/handle_environment_special(var/mob/living/carbon/human/H) + if(H.fire_stacks < 0 && H.get_water_protection() <= 0.5) // If over half your body is soaked, you're melting. + H.adjustFireLoss(max(0,(3 - (3 * H.get_water_protection())))) // Tripled because 0.5 is miniscule, and fire_stacks are capped in both directions. diff --git a/code/modules/mob/living/carbon/human/species/station/prometheans.dm b/code/modules/mob/living/carbon/human/species/station/prometheans.dm index b55bb03094..915c5cdb27 100644 --- a/code/modules/mob/living/carbon/human/species/station/prometheans.dm +++ b/code/modules/mob/living/carbon/human/species/station/prometheans.dm @@ -71,6 +71,9 @@ var/datum/species/shapeshifter/promethean/prometheans rarity_value = 5 siemens_coefficient = 0.8 + water_resistance = 0 + water_damage_mod = 0.3 + genders = list(MALE, FEMALE, NEUTER, PLURAL) unarmed_types = list(/datum/unarmed_attack/slime_glomp) @@ -171,9 +174,11 @@ var/datum/species/shapeshifter/promethean/prometheans var/regen_burn = TRUE var/regen_tox = TRUE var/regen_oxy = TRUE - if(H.fire_stacks < 0) // If you're soaked, you're melting. - H.adjustToxLoss(3 * heal_rate) // Tripled because 0.5 is miniscule, and fire_stacks are capped in both directions + // Yawn Wider Changes Start re-adds prom water damage + if(H.fire_stacks < 0 && H.get_water_protection() <= 0.5) // If over half your body is soaked, you're melting. + H.adjustToxLoss(max(0,(3 - (3 * H.get_water_protection())) * heal_rate)) // Tripled because 0.5 is miniscule, and fire_stacks are capped in both directions. healing = FALSE + //Yawn Wider Changes End //Prometheans automatically clean every surface they're in contact with every life tick - this includes the floor without shoes. //They gain nutrition from doing this. diff --git a/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm b/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm index b1aa904421..aa6287eedd 100644 --- a/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm @@ -4,6 +4,7 @@ push_flags = ~HEAVY swap_flags = ~HEAVY gluttonous = 0 + //water_damage_mod = 0 YW Edit valid_transform_species = list( "Human", "Unathi", "Tajara", "Skrell", "Diona", "Teshari", "Monkey","Sergal", diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm index dc4d75e16e..2a122f9281 100644 --- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm +++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm @@ -61,7 +61,7 @@ humanform = H updatehealth() refactory = locate() in humanform.internal_organs - //verbs |= /mob/living/proc/ventcrawl YAWN Edit: Too OP + verbs |= /mob/living/proc/ventcrawl verbs |= /mob/living/proc/hide else update_icon() diff --git a/code/modules/mob/living/carbon/human/species/station/seromi.dm b/code/modules/mob/living/carbon/human/species/station/seromi.dm index b302875d28..269286e0ac 100644 --- a/code/modules/mob/living/carbon/human/species/station/seromi.dm +++ b/code/modules/mob/living/carbon/human/species/station/seromi.dm @@ -63,7 +63,7 @@ mob_size = MOB_SMALL pass_flags = PASSTABLE holder_type = /obj/item/weapon/holder/human -// short_sighted = 1 + short_sighted = 1 gluttonous = 1 blood_volume = 400 hunger_factor = 0.2 @@ -239,3 +239,9 @@ H.next_loneliness_time = world.time+500 */ //CHOMPStation Removal End + +/datum/species/teshari/get_vision_flags(var/mob/living/carbon/human/H) + if(!(H.sdisabilities & DEAF) && !H.ear_deaf) + return SEE_SELF|SEE_MOBS + else + return SEE_SELF diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm index 001a65fa8f..104fd06085 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm @@ -33,7 +33,7 @@ desc = "Your body requires near cryogenic temperatures to operate. Extremely intricate arrangements are needed for you to remain indoors. The outdoors is comfortable for you, however. WARNING: You will spawn in an atmosphere that is VERY hostile to you with no protective equipment!" cost = 0 var_changes = list("heat_discomfort_level" = T0C) - excludes = list(/datum/trait/cold_discomfort,/datum/trait/hot_discomfort,/datum/trait/cold_blood) + excludes = list(/datum/trait/hot_blood,/datum/trait/cold_blood,/datum/trait/extreme_cold_blood) */ // YW Addition End diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm index b03714f4f6..e5bdb401c6 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm @@ -454,7 +454,6 @@ src.modules += new /obj/item/weapon/tool/screwdriver/cyborg(src) src.modules += new /obj/item/weapon/reagent_containers/glass/beaker/large(src) src.modules += new /obj/item/weapon/storage/part_replacer(src) - //YW changes, start, bringing Research Hound more in line with standard cyborgs src.modules += new /obj/item/weapon/card/robot(src) src.modules += new /obj/item/weapon/gripper/no_use/organ/robotics(src) src.modules += new /obj/item/weapon/gripper/no_use/mech(src) @@ -463,7 +462,6 @@ src.modules += new /obj/item/weapon/tool/wrench/cyborg(src) src.modules += new /obj/item/weapon/tool/wirecutters/cyborg(src) src.modules += new /obj/item/device/multitool(src) - //YW changes, end src.emag = new /obj/item/weapon/hand_tele(src) var/datum/matter_synth/water = new /datum/matter_synth(500) @@ -480,7 +478,6 @@ B.water = water src.modules += B - //YW changes start, adding wires and nanopaste features var/datum/matter_synth/nanite = new /datum/matter_synth/nanite(10000) synths += nanite var/datum/matter_synth/wire = new /datum/matter_synth/wire() @@ -495,7 +492,6 @@ var/obj/item/stack/cable_coil/cyborg/C = new /obj/item/stack/cable_coil/cyborg(src) C.synths = list(wire) src.modules += C - //YW changes end, wires and nanopaste R.icon = 'icons/mob/widerobot_vr.dmi' R.hands.icon = 'icons/mob/screen1_robot_vr.dmi' @@ -517,7 +513,7 @@ sprites = list( "Pupdozer" = "pupdozer", "Borgi" = "borgi-eng", - "V2 Engidog" = "thottbot" //YW changes + "V2 Engidog" = "thottbot" ) channels = list("Engineering" = 1) networks = list(NETWORK_ENGINEERING) @@ -532,21 +528,23 @@ src.modules += new /obj/item/weapon/tool/wirecutters/cyborg(src) src.modules += new /obj/item/device/multitool(src) src.modules += new /obj/item/device/t_scanner(src) + src.modules += new /obj/item/device/analyzer(src) src.modules += new /obj/item/taperoll/engineering(src) src.modules += new /obj/item/weapon/inflatable_dispenser/robot(src) + src.modules += new /obj/item/device/pipe_painter(src) + src.modules += new /obj/item/device/floor_painter(src) + src.modules += new /obj/item/weapon/gripper/no_use/loader(src) src.modules += new /obj/item/weapon/pickaxe(src) src.modules += new /obj/item/weapon/dogborg/jaws/small(src) src.modules += new /obj/item/device/dogborg/boop_module(src) src.modules += new /obj/item/weapon/gripper(src) src.modules += new /obj/item/weapon/gripper/circuit(src) - //YW changes start, bringing Pupdozer in line with normal borgs src.modules += new /obj/item/device/analyzer(src) src.modules += new /obj/item/device/pipe_painter(src) src.modules += new /obj/item/device/floor_painter(src) src.modules += new /obj/item/device/geiger(src) - src.modules += new /obj/item/weapon/pipe_dispenser(src) //YW changes - //YW changes end src.emag = new /obj/item/weapon/dogborg/pounce(src) + src.modules += new /obj/item/weapon/pipe_dispenser(src) //YW change //Painfully slow charger regen but high capacity. Also starts with low amount. var/datum/matter_synth/metal = new /datum/matter_synth/metal() @@ -570,10 +568,10 @@ plastic.max_energy = 50000 plastic.energy = 10000 var/datum/matter_synth/plasteel = new /datum/matter_synth/plasteel() - plasteel.name = "Plasteel reserves"//YW changes start, adding plasteel synthesizer + plasteel.name = "Plasteel reserves"// Adding plasteel synthesizer to move in-line with Engiborg. plasteel.recharge_rate = 100 plasteel.max_energy = 20000 - plasteel.energy = 10000//YW changes end, adding plasteel synthesizer + plasteel.energy = 10000 var/datum/matter_synth/water = new /datum/matter_synth(500) water.name = "Water reserves" water.recharge_rate = 0 @@ -586,7 +584,7 @@ synths += plastic synths += wire synths += water - synths += plasteel //YW changes, adding plasteel features + synths += plasteel var/obj/item/device/dogborg/tongue/T = new /obj/item/device/dogborg/tongue(src) T.water = water diff --git a/code/modules/mob/living/silicon/robot/robot_remote_control.dm b/code/modules/mob/living/silicon/robot/robot_remote_control.dm index 35ad010b97..90d74b2638 100644 --- a/code/modules/mob/living/silicon/robot/robot_remote_control.dm +++ b/code/modules/mob/living/silicon/robot/robot_remote_control.dm @@ -69,14 +69,11 @@ GLOBAL_LIST_EMPTY(available_ai_shells) // Languages and comms. languages = AI.languages.Copy() speech_synthesizer_langs = AI.speech_synthesizer_langs.Copy() - //VOREStation Edit Start - if(radio && AI.aiRadio && module) //AI keeps all channels, including Syndie if it is an Infiltrator. + if(radio && AI.aiRadio) //AI keeps all channels, including Syndie if it is an Infiltrator. // if(AI.radio.syndie) // radio.make_syndie() radio.subspace_transmission = TRUE - module.channels = AI.aiRadio.channels - radio.recalculateChannels() - //VOREStation Edit End + radio.channels = AI.aiRadio.channels // Called after the AI transfers over. /mob/living/silicon/robot/proc/post_deploy() @@ -97,8 +94,7 @@ GLOBAL_LIST_EMPTY(available_ai_shells) mainframe.deployed_shell = null SetName("[modtype] AI Shell [num2text(ident)]") // undeployment_action.Remove(src) - if(radio && module) //Return radio to normal //VOREStation Edit - module.channels = initial(module.channels) //VOREStation Edit + if(radio) //Return radio to normal radio.recalculateChannels() if(!QDELETED(camera)) camera.c_tag = real_name //update the camera name too diff --git a/code/modules/mob/living/silicon/robot/subtypes/lost_drone.dm b/code/modules/mob/living/silicon/robot/subtypes/lost_drone.dm index 9d41f8b59b..d374562230 100644 --- a/code/modules/mob/living/silicon/robot/subtypes/lost_drone.dm +++ b/code/modules/mob/living/silicon/robot/subtypes/lost_drone.dm @@ -104,7 +104,7 @@ if("corrupted") // Load them up with ion laws. var/datum/ai_laws/laws = new() // Start with an empty lawset. - for(1 to rand(1, 3)) + for(var/i in 1 to rand(1, 3)) laws.add_ion_law(generate_ion_law(exclude_crew_names = TRUE)) return laws diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm index a6df03cf34..3407da13f0 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm @@ -155,8 +155,8 @@ GLOBAL_VAR_INIT(chicken_count, 0) // How mant chickens DO we have? emote_hear = list("cheeps") emote_see = list("pecks at the ground","flaps its tiny wings") - +//YW Addition /mob/living/simple_mob/animal/passive/chicken/clucky name = "Commander Clucky" real_name = "Commander Clucky" - desc = "It's Commander Clucky!" \ No newline at end of file + desc = "It's Commander Clucky!" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm index 8fe4b53b06..73deeefdb5 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm @@ -1,7 +1,7 @@ /mob/living/simple_mob/animal/passive/mouse nutrition = 20 //To prevent draining maint mice for infinite food. Low nutrition has no mechanical effect on simplemobs, so wont hurt mice themselves. - no_vore = 1 //Mice can't eat others due to the amount of bugs caused by it. + no_vore = TRUE //Mice can't eat others due to the amount of bugs caused by it. vore_taste = "cheese" can_pull_size = ITEMSIZE_TINY // Rykka - Uncommented these. Not sure why they were commented out in the original Polaris files, maybe a mob rework mistake? diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm index cc29ee0c31..09f80bdef6 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm @@ -107,6 +107,11 @@ name = "Bockscar" real_name = "Bockscar" +/mob/living/simple_mob/animal/passive/dog/corgi/puppy/wiggle //yw addition + name = "Mister Wiggles" + real_name = "Mister Wiggles" + desc = "An emotional support corgi! He gets along with everyone, even Runtime." + //IAN! SQUEEEEEEEEE~ /mob/living/simple_mob/animal/passive/dog/corgi/Ian name = "Ian" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/vox.dm b/code/modules/mob/living/simple_mob/subtypes/animal/vox.dm index d31540fcda..69a774ca1e 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/vox.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/vox.dm @@ -38,6 +38,7 @@ visible_message("[src] shudders violently and explodes!","You feel your body rupture!") gib() explosion(gloc, -1, -1, 3, 5) + qdel(src) /mob/living/simple_mob/vox/armalis/attackby(var/obj/item/O as obj, var/mob/user as mob) base_attack_cooldown = 5 @@ -138,7 +139,7 @@ return ..() /mob/living/simple_mob/vox/armalis/regenerate_icons() - + ..() overlays = list() if(armour) var/icon/armour = image('icons/mob/vox.dmi',"armour") diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm b/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm index ca0ecbbb58..89ad7ac121 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm @@ -65,12 +65,12 @@ can_breakthrough = TRUE violent_breakthrough = TRUE -//yw edit +//YW Addition /mob/living/simple_mob/vore/aggressive/deathclaw/den maxHealth = 400 health = 400 see_in_dark = 8 - desc = "Big! Big! The size of three men! Claws as long as my forearm! Ripped apart! Ripped apart! This one seems angrier then most." + desc = "Big! Big! The size of three men! Claws as long as my forearm! Ripped apart! Ripped apart! This one seems angrier than most." melee_damage_lower = 10 - melee_damage_upper = 40 \ No newline at end of file + melee_damage_upper = 40 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm index ce9616ffe8..f4cfab55f5 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm @@ -62,6 +62,10 @@ var/global/list/moth_amount = 0 // Chompstation Addition, Rykka waz here. *pawst /datum/say_list/solargrub emote_see = list("squelches", "squishes") +/mob/living/simple_mob/vore/solargrub/New() + existing_solargrubs += src + ..() + /mob/living/simple_mob/vore/solargrub/Life() . = ..() if(!.) return @@ -148,6 +152,10 @@ var/global/list/moth_amount = 0 // Chompstation Addition, Rykka waz here. *pawst set_light(0) ..() +/mob/living/simple_mob/vore/solargrub/Destroy() + existing_solargrubs -= src + ..() + /mob/living/simple_mob/vore/solargrub/handle_light() . = ..() if(. == 0 && !is_dead()) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm index b06f5ed4f9..42ce8a2897 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm @@ -50,6 +50,7 @@ var/global/list/grub_machine_overlays = list() /mob/living/simple_mob/animal/solargrub_larva/New() ..() + existing_solargrubs += src powermachine = new(src) sparks = new(src) sparks.set_up() @@ -62,6 +63,7 @@ var/global/list/grub_machine_overlays = list() return ..() /mob/living/simple_mob/animal/solargrub_larva/Destroy() + existing_solargrubs -= src QDEL_NULL(powermachine) QDEL_NULL(sparks) QDEL_NULL(machine_effect) diff --git a/code/modules/mob/living/voice/voice_vr.dm b/code/modules/mob/living/voice/voice_vr.dm new file mode 100644 index 0000000000..0eabd01a34 --- /dev/null +++ b/code/modules/mob/living/voice/voice_vr.dm @@ -0,0 +1,2 @@ +/mob/living/voice + no_vore = TRUE \ No newline at end of file diff --git a/code/modules/modular_computers/computers/subtypes/preset_console.dm b/code/modules/modular_computers/computers/subtypes/preset_console.dm index d2f409b51e..5670c37522 100644 --- a/code/modules/modular_computers/computers/subtypes/preset_console.dm +++ b/code/modules/modular_computers/computers/subtypes/preset_console.dm @@ -4,6 +4,7 @@ tesla_link = new/obj/item/weapon/computer_hardware/tesla_link(src) hard_drive = new/obj/item/weapon/computer_hardware/hard_drive/super(src) network_card = new/obj/item/weapon/computer_hardware/network_card/wired(src) + nano_printer = new/obj/item/weapon/computer_hardware/nano_printer(src) // Engineering /obj/item/modular_computer/console/preset/engineering/install_default_programs() diff --git a/code/modules/multiz/movement.dm b/code/modules/multiz/movement.dm index 28f111c72c..e7375b5235 100644 --- a/code/modules/multiz/movement.dm +++ b/code/modules/multiz/movement.dm @@ -269,7 +269,7 @@ return FALSE var/turf/below = GetBelow(src) - if((locate(/obj/structure/disposalpipe/up) in below) || locate(/obj/machinery/atmospherics/pipe/zpipe/up in below)) + if((locate(/obj/structure/disposalpipe/up) in below) || locate(/obj/machinery/atmospherics/pipe/zpipe/up) in below) return FALSE /mob/living/can_fall() diff --git a/code/modules/organs/internal/augment.dm b/code/modules/organs/internal/augment.dm index 0c168d1679..d134ad12ca 100644 --- a/code/modules/organs/internal/augment.dm +++ b/code/modules/organs/internal/augment.dm @@ -7,6 +7,7 @@ icon_state = "cell_bay" + robotic = ORGAN_ROBOT parent_organ = BP_TORSO organ_verbs = list(/mob/living/carbon/human/proc/augment_menu) // Verbs added by the organ when present in the body. @@ -145,6 +146,12 @@ var/mob/living/carbon/human/M = src + if(buckled) + var/obj/Ob = buckled + if(Ob.buckle_lying) + to_chat(M, "You cannot use your augments when restrained.") + return 0 + if((slot == slot_l_hand && l_hand) || (slot == slot_r_hand && r_hand)) to_chat(M,"Your hand is full. Drop something first.") return 0 diff --git a/code/modules/organs/subtypes/standard_vr.dm b/code/modules/organs/subtypes/standard_vr.dm index ce6eaf9d9f..bf429cb878 100644 --- a/code/modules/organs/subtypes/standard_vr.dm +++ b/code/modules/organs/subtypes/standard_vr.dm @@ -69,3 +69,9 @@ eye_icons_vr = 'icons/mob/human_face_vr.dmi' eye_icon_vr = "eyes_shadekin" + + //yw edit +/obj/item/organ/external/head/vr/grey + eye_icons_vr = 'icons/mob/human_face_yw.dmi' + eye_icon_vr = "eyes_grey" + //yw edit diff --git a/code/modules/paperwork/clipboard.dm b/code/modules/paperwork/clipboard.dm index b0da801703..94510629c5 100644 --- a/code/modules/paperwork/clipboard.dm +++ b/code/modules/paperwork/clipboard.dm @@ -1,5 +1,6 @@ /obj/item/weapon/clipboard name = "clipboard" + desc = "Used to clip paper to, for an on-the-go writing board." icon = 'icons/obj/bureaucracy.dmi' icon_state = "clipboard" item_state = "clipboard" diff --git a/code/modules/paperwork/faxmachine.dm b/code/modules/paperwork/faxmachine.dm index 3feabab1e7..069e6c3405 100644 --- a/code/modules/paperwork/faxmachine.dm +++ b/code/modules/paperwork/faxmachine.dm @@ -6,6 +6,7 @@ var/list/adminfaxes = list() //cache for faxes that have been sent to admins /obj/machinery/photocopier/faxmachine name = "fax machine" + desc = "Sent papers and pictures far away! Or to your co-worker's office a few doors down." icon = 'icons/obj/library.dmi' icon_state = "fax" insert_anim = "faxsend" diff --git a/code/modules/paperwork/handlabeler.dm b/code/modules/paperwork/handlabeler.dm index 4f2c6d59ba..12f99f150f 100644 --- a/code/modules/paperwork/handlabeler.dm +++ b/code/modules/paperwork/handlabeler.dm @@ -1,5 +1,6 @@ /obj/item/weapon/hand_labeler name = "hand labeler" + desc = "Label everything like you've always wanted to! Stuck to the side is a label reading \'Labeler\'. Seems you're too late for that one." icon = 'icons/obj/bureaucracy.dmi' icon_state = "labeler0" var/label = null diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 97454e140c..fe3e218639 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -414,13 +414,17 @@ usr << "There isn't enough space left on \the [src] to write anything." return - var/t = sanitize(input("Enter what you want to write:", "Write", null, null) as message, free_space, extra = 0) + var/t = sanitize(input("Enter what you want to write:", "Write", null, null) as message, MAX_PAPER_MESSAGE_LEN, extra = 0) if(!t) return var/obj/item/i = usr.get_active_hand() // Check to see if he still got that darn pen, also check if he's using a crayon or pen. var/iscrayon = 0 + if(!istype(i, /obj/item/weapon/pen)) + alert(usr, "You aren't holding a pen anymore! If you want to keep your work, grab one.", "", "Okay") + i = usr.get_active_hand() + if(!istype(i, /obj/item/weapon/pen)) var/mob/living/M = usr if(istype(M) && M.back && istype(M.back,/obj/item/weapon/rig)) @@ -559,7 +563,7 @@ stamps += (stamps=="" ? "
" : "
") + "This paper has been stamped with the [P.name]." var/image/stampoverlay = image('icons/obj/bureaucracy.dmi') - var/{x; y;} + var/x, y if(istype(P, /obj/item/weapon/stamp/captain) || istype(P, /obj/item/weapon/stamp/centcomm)) x = rand(-2, 0) y = rand(-1, 2) diff --git a/code/modules/paperwork/paper_bundle.dm b/code/modules/paperwork/paper_bundle.dm index 2e3bfb2f79..5a15777b72 100644 --- a/code/modules/paperwork/paper_bundle.dm +++ b/code/modules/paperwork/paper_bundle.dm @@ -134,7 +134,7 @@ user << browse(dat + "[P.name]" \ + "" \ + "
Written on the back:
[P.scribble]" : ]"\ + + "[P.scribble ? "
Written on the back:
[P.scribble]" : null]"\ + "", "window=[name]") /obj/item/weapon/paper_bundle/attack_self(mob/user as mob) diff --git a/code/modules/paperwork/paperbin.dm b/code/modules/paperwork/paperbin.dm index 4a24500fd3..850f8f6c8e 100644 --- a/code/modules/paperwork/paperbin.dm +++ b/code/modules/paperwork/paperbin.dm @@ -1,5 +1,6 @@ /obj/item/weapon/paper_bin name = "paper bin" + desc = "A plastic bin full of paper. It seems to have both regular and carbon-copy paper to choose from." icon = 'icons/obj/bureaucracy.dmi' icon_state = "paper_bin1" item_icons = list( diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index 24ad752845..d5e04d97a4 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -1,5 +1,6 @@ /obj/machinery/photocopier name = "photocopier" + desc = "Copy all your important papers here!" icon = 'icons/obj/library.dmi' icon_state = "bigscanner" var/insert_anim = "bigscanner1" @@ -24,6 +25,10 @@ component_parts += new /obj/item/weapon/stock_parts/matter_bin(src) RefreshParts() +/obj/machinery/photocopier/examine(mob/user as mob) + if(..(user, 1)) + to_chat(user, "The screen shows there's [toner ? "[toner]" : "no"] toner left in the printer.") + /obj/machinery/photocopier/attack_ai(mob/user as mob) return attack_hand(user) diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 80eca3e149..6f5c99fe66 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -103,6 +103,7 @@ var/has_electronics = 0 // 0 - none, 1 - plugged in, 2 - secured by screwdriver var/beenhit = 0 // used for counting how many times it has been hit, used for Aliens at the moment var/longtermpower = 10 + var/emergency_lights = FALSE var/datum/wires/apc/wires = null var/update_state = -1 var/update_overlay = -1 @@ -793,6 +794,7 @@ "gridCheck" = grid_check, "coverLocked" = coverlocked, "siliconUser" = issilicon(user) || isobserver(user), //I add observer here so admins can have more control, even if it makes 'siliconUser' seem inaccurate. + "emergencyLights" = !emergency_lights, "powerChannels" = list( list( @@ -833,7 +835,7 @@ if (!ui) // the ui does not exist, so we'll create a new() one // for a list of parameters and their descriptions see the code docs in \code\modules\nano\nanoui.dm - ui = new(user, src, ui_key, "apc.tmpl", "[area.name] - APC", 520, data["siliconUser"] ? 465 : 440) + ui = new(user, src, ui_key, "apc.tmpl", "[area.name] - APC", 520, data["siliconUser"] ? 490 : 465) // when the ui is first opened this is the data it will use ui.set_initial_data(data) // open the new ui window @@ -930,6 +932,14 @@ update_icon() update() + else if (href_list["emergency_lighting"]) + emergency_lights = !emergency_lights + for(var/obj/machinery/light/L in area) + if(!initial(L.no_emergency)) //If there was an override set on creation, keep that override + L.no_emergency = emergency_lights + INVOKE_ASYNC(L, /obj/machinery/light/.proc/update, FALSE) + CHECK_TICK + else if (href_list["breaker"]) toggle_breaker() @@ -1183,7 +1193,7 @@ // defines a state machine, returns the new state obj/machinery/power/apc/proc/autoset(var/cur_state, var/on) switch(cur_state) - if(POWERCHAN_OFF); //autoset will never turn on a channel set to off + //if(POWERCHAN_OFF); //autoset will never turn on a channel set to off if(POWERCHAN_OFF_AUTO) if(on == 1) return POWERCHAN_ON_AUTO diff --git a/code/modules/power/cells/power_cells.dm b/code/modules/power/cells/power_cells.dm index 3afb0d5450..3638c625f1 100644 --- a/code/modules/power/cells/power_cells.dm +++ b/code/modules/power/cells/power_cells.dm @@ -132,3 +132,16 @@ overlays.Cut() target.nutrition += amount user.custom_emote(message = "connects \the [src] to [user == target ? "their" : "[target]'s"] charging port, expending it.") + +/obj/item/weapon/cell/emergency_light + name = "miniature power cell" + desc = "A tiny power cell with a very low power capacity. Used in light fixtures to power them in the event of an outage." + maxcharge = 120 //Emergency lights use 0.2 W per tick, meaning ~10 minutes of emergency power from a cell + matter = list("glass" = 20) + w_class = ITEMSIZE_TINY + +/obj/item/weapon/cell/emergency_light/Initialize() + . = ..() + var/area/A = get_area(src) + if(!A.lightswitch || !A.light_power) + charge = 0 //For naturally depowered areas, we start with no power \ No newline at end of file diff --git a/code/modules/power/fusion/fuel_assembly/fuel_control.dm b/code/modules/power/fusion/fuel_assembly/fuel_control.dm index 6825f9ba37..54e0bfb024 100644 --- a/code/modules/power/fusion/fuel_assembly/fuel_control.dm +++ b/code/modules/power/fusion/fuel_assembly/fuel_control.dm @@ -1,5 +1,6 @@ /obj/machinery/computer/fusion_fuel_control name = "fuel injection control computer" + desc = "Displays information about the fuel rods." icon = 'icons/obj/machines/power/fusion.dmi' icon_state = "fuel" circuit = /obj/item/weapon/circuitboard/fusion_fuel_control diff --git a/code/modules/power/fusion/gyrotron/gyrotron_control.dm b/code/modules/power/fusion/gyrotron/gyrotron_control.dm index 4f5abdbd3b..e638eee3e3 100644 --- a/code/modules/power/fusion/gyrotron/gyrotron_control.dm +++ b/code/modules/power/fusion/gyrotron/gyrotron_control.dm @@ -1,5 +1,6 @@ /obj/machinery/computer/gyrotron_control name = "gyrotron control console" + desc = "Used to control the R-UST stability beams." icon = 'icons/obj/machines/power/fusion.dmi' icon_state = "engine" light_color = COLOR_BLUE diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm index ba60c84d32..5e1271827a 100644 --- a/code/modules/power/lighting.dm +++ b/code/modules/power/lighting.dm @@ -10,6 +10,7 @@ #define LIGHT_BURNED 3 #define LIGHT_BULB_TEMPERATURE 400 //K - used value for a 60W bulb #define LIGHTING_POWER_FACTOR 2 //5W per luminosity * range //VOREStation Edit: why the fuck are lights eating so much power, 2W per thing +#define LIGHT_EMERGENCY_POWER_USE 0.2 //How much power emergency lights will consume per tick var/global/list/light_type_cache = list() /proc/get_light_type_instance(var/light_type) @@ -29,6 +30,10 @@ var/global/list/light_type_cache = list() var/stage = 1 var/fixture_type = /obj/machinery/light var/sheets_refunded = 2 + var/obj/machinery/light/newlight = null + var/obj/item/weapon/cell/cell = null + + var/cell_connectors = TRUE /obj/machinery/light_construct/New(var/atom/newloc, var/newdir, var/building = 0, var/datum/frame/frame_types/frame_type, var/obj/machinery/light/fixture = null) ..(newloc) @@ -61,9 +66,41 @@ var/global/list/light_type_cache = list() to_chat(user, "It's wired.") if(3) to_chat(user, "The casing is closed.") + if(cell_connectors) + if(cell) + to_chat(user, "You see [cell] inside the casing.") + else + to_chat(user, "The casing has no power cell for backup power.") + else + to_chat(user, "This casing doesn't support power cells for backup power.") + +/obj/machinery/light_construct/attack_hand(mob/user) + if(cell) + user.visible_message("[user] removes [cell] from [src]!","You remove [cell].") + user.put_in_hands(cell) + cell.update_icon() + cell = null + add_fingerprint(user) /obj/machinery/light_construct/attackby(obj/item/weapon/W as obj, mob/user as mob) src.add_fingerprint(user) + if(istype(W, /obj/item/weapon/cell/emergency_light)) + if(!cell_connectors) + to_chat(user, "This [name] can't support a power cell!") + return + if(!user.unEquip(W)) + to_chat(user, "[W] is stuck to your hand!") + return + if(cell) + to_chat(user, "There is a power cell already installed!") + else if(user.drop_from_inventory(W)) + user.visible_message("[user] hooks up [W] to [src].", \ + "You add [W] to [src].") + playsound(src, 'sound/machines/click.ogg', 50, TRUE) + W.forceMove(src) + cell = W + add_fingerprint(user) + return if (W.is_wrench()) if (src.stage == 1) playsound(src, W.usesound, 75, 1) @@ -114,6 +151,10 @@ var/global/list/light_type_cache = list() var/obj/machinery/light/newlight = new fixture_type(src.loc, src) newlight.set_dir(src.dir) src.transfer_fingerprints_to(newlight) + if(cell) + newlight.cell = cell + cell.forceMove(newlight) + cell = null qdel(src) return ..() @@ -190,6 +231,16 @@ var/global/list/light_type_cache = list() var/current_alert = null // Which alert are we showing right now? //VOREStation Edit End + var/obj/item/weapon/cell/emergency_light/cell + var/start_with_cell = TRUE // if true, this fixture generates a very weak cell at roundstart + + var/emergency_mode = FALSE // if true, the light is in emergency mode + var/no_emergency = FALSE // if true, this light cannot ever have an emergency mode + var/bulb_emergency_brightness_mul = 0.25 // multiplier for this light's base brightness in emergency power mode + var/bulb_emergency_colour = "#FF3232" // determines the colour of the light while it's in emergency mode + var/bulb_emergency_pow_mul = 0.75 // the multiplier for determining the light's power in emergency mode + var/bulb_emergency_pow_min = 0.5 // the minimum value for the light's power in emergency mode + var/auto_flicker = FALSE // If true, will constantly flicker, so long as someone is around to see it (otherwise its a waste of CPU). /obj/machinery/light/flicker @@ -208,6 +259,12 @@ var/global/list/light_type_cache = list() /obj/machinery/light/small/flicker auto_flicker = TRUE +/obj/machinery/light/poi + start_with_cell = FALSE + +/obj/machinery/light/small/poi + start_with_cell = FALSE + /obj/machinery/light/flamp icon = 'icons/obj/lighting.dmi' //VOREStation Edit icon_state = "flamp1" @@ -222,7 +279,8 @@ var/global/list/light_type_cache = list() /obj/machinery/light/flamp/New(atom/newloc, obj/machinery/light_construct/construct = null) ..(newloc, construct) - + if(start_with_cell && !no_emergency) + cell = new/obj/item/weapon/cell/emergency_light(src) if(construct) lamp_shade = 0 update_icon() @@ -255,7 +313,10 @@ var/global/list/light_type_cache = list() /obj/machinery/light/New(atom/newloc, obj/machinery/light_construct/construct = null) ..(newloc) + if(start_with_cell && !no_emergency) + cell = new/obj/item/weapon/cell/emergency_light(src) if(construct) + start_with_cell = FALSE status = LIGHT_EMPTY construct_type = construct.type construct.transfer_fingerprints_to(src) @@ -274,6 +335,7 @@ var/global/list/light_type_cache = list() if(A) on = 0 // A.update_lights() + QDEL_NULL(cell) return ..() /obj/machinery/light/update_icon() @@ -369,9 +431,14 @@ var/global/list/light_type_cache = list() else use_power = 2 set_light(brightness_range, brightness_power, brightness_color) - else + else if(has_emergency_power(LIGHT_EMERGENCY_POWER_USE) && !turned_off()) use_power = 1 + emergency_mode = TRUE + START_PROCESSING(SSobj, src) + else + use_power = 2 set_light(0) + update_icon() active_power_usage = ((light_range * light_power) * LIGHTING_POWER_FACTOR) @@ -408,6 +475,9 @@ var/global/list/light_type_cache = list() on = (s && status == LIGHT_OK) update() +/obj/machinery/light/get_cell() + return cell + // examine verb /obj/machinery/light/examine(mob/user) var/fitting = get_fitting_name() @@ -420,6 +490,9 @@ var/global/list/light_type_cache = list() to_chat(user, "[desc] The [fitting] is burnt out.") if(LIGHT_BROKEN) to_chat(user, "[desc] The [fitting] has been smashed.") + if(cell) + to_chat(user, "Its backup power charge meter reads [round((cell.charge / cell.maxcharge) * 100, 0.1)]%.") + /obj/machinery/light/proc/get_fitting_name() var/obj/item/weapon/light/L = light_type @@ -545,6 +618,12 @@ var/global/list/light_type_cache = list() ..() +// returns if the light has power /but/ is manually turned off +// if a light is turned off, it won't activate emergency power +/obj/machinery/light/proc/turned_off() + var/area/A = get_area(src) + return !A.lightswitch && A.power_light || flickering + // returns whether this light has power // true if area has power and lightswitch is on /obj/machinery/light/proc/has_power() @@ -558,6 +637,28 @@ var/global/list/light_type_cache = list() else return A && A.lightswitch && (!A.requires_power || A.power_light) +// returns whether this light has emergency power +// can also return if it has access to a certain amount of that power +/obj/machinery/light/proc/has_emergency_power(pwr) + if(no_emergency || !cell) + return FALSE + if(pwr ? cell.charge >= pwr : cell.charge) + return status == LIGHT_OK + +// attempts to use power from the installed emergency cell, returns true if it does and false if it doesn't +/obj/machinery/light/proc/use_emergency_power(pwr = LIGHT_EMERGENCY_POWER_USE) + if(turned_off()) + return FALSE + if(!has_emergency_power(pwr)) + return FALSE + if(cell.charge > 300) //it's meant to handle 120 W, ya doofus + visible_message("[src] short-circuits from too powerful of a power cell!") + status = LIGHT_BURNED + return FALSE + cell.use(pwr) + set_light(brightness_range * bulb_emergency_brightness_mul, max(bulb_emergency_pow_min, bulb_emergency_pow_mul * (cell.charge / cell.maxcharge)), bulb_emergency_colour) + return TRUE + /obj/machinery/light/proc/flicker(var/amount = rand(10, 20)) if(flickering) return flickering = 1 @@ -572,10 +673,12 @@ var/global/list/light_type_cache = list() update(0) flickering = 0 -// ai attack - make lights flicker, because why not +// ai attack - turn on/off emergency lighting for a specific fixture /obj/machinery/light/attack_ai(mob/user) - src.flicker(1) + no_emergency = !no_emergency + to_chat(user, "Emergency lights for this fixture have been [no_emergency ? "disabled" : "enabled"].") + update(FALSE) return /obj/machinery/light/flamp/attack_ai(mob/user) @@ -700,6 +803,17 @@ var/global/list/light_type_cache = list() // use power /obj/machinery/light/process() + if(!cell) + return PROCESS_KILL + if(has_power()) + emergency_mode = FALSE + update(FALSE) + if(cell.charge == cell.maxcharge) + return PROCESS_KILL + cell.charge = min(cell.maxcharge, cell.charge + LIGHT_EMERGENCY_POWER_USE*2) //Recharge emergency power automatically while not using it + if(emergency_mode && !use_emergency_power(LIGHT_EMERGENCY_POWER_USE)) + update(FALSE) //Disables emergency mode and sets the color to normal + if(auto_flicker && !flickering) if(check_for_player_proximity(src, radius = 12, ignore_ghosts = FALSE, ignore_afk = TRUE)) seton(TRUE) // Lights must be on to flicker. diff --git a/code/modules/power/supermatter/supermatter.dm b/code/modules/power/supermatter/supermatter.dm index 9e1f3f06c2..8430b717ca 100644 --- a/code/modules/power/supermatter/supermatter.dm +++ b/code/modules/power/supermatter/supermatter.dm @@ -171,7 +171,7 @@ /obj/machinery/power/supermatter/proc/announce_warning() var/integrity = get_integrity() var/alert_msg = " Integrity at [integrity]%" - var/message_sound = 'sound/ambience/matteralarm.ogg' // VOREStation Edit - Rykka adds SM Delam alarm + var/message_sound = 'sound/ambience/matteralarm.ogg' if(damage > emergency_point) alert_msg = emergency_alert + alert_msg @@ -192,9 +192,9 @@ //Public alerts if((damage > emergency_point) && !public_alert) global_announcer.autosay("WARNING: SUPERMATTER CRYSTAL DELAMINATION IMMINENT!", "Supermatter Monitor") - for(var/mob/M in player_list) // VOREStation Edit - Rykka adds SM Delam alarm - if(!istype(M,/mob/new_player) && !isdeaf(M)) // VOREStation Edit - Rykka adds SM Delam alarm - M << message_sound // VOREStation Edit - Rykka adds SM Delam alarm + for(var/mob/M in player_list) // Rykka adds SM Delam alarm + if(!istype(M,/mob/new_player) && !isdeaf(M)) // Rykka adds SM Delam alarm + M << message_sound // Rykka adds SM Delam alarm admin_chat_message(message = "SUPERMATTER DELAMINATING!", color = "#FF2222") //VOREStation Add public_alert = 1 log_game("SUPERMATTER([x],[y],[z]) Emergency PUBLIC announcement. Power:[power], Oxygen:[oxygen], Damage:[damage], Integrity:[get_integrity()]") diff --git a/code/modules/projectiles/projectile/special.dm b/code/modules/projectiles/projectile/special.dm index 705a817236..78e3f4f46b 100644 --- a/code/modules/projectiles/projectile/special.dm +++ b/code/modules/projectiles/projectile/special.dm @@ -17,7 +17,7 @@ var/sev3_range = 1 var/sev4_range = 1 -/obj/item/projectile/ion/on_hit(var/atom/target, var/blocked = 0) +/obj/item/projectile/ion/on_impact(var/atom/target) empulse(target, sev1_range, sev2_range, sev3_range, sev4_range) return 1 diff --git a/code/modules/reagents/Chemistry-Machinery.dm b/code/modules/reagents/Chemistry-Machinery.dm index a481cfaf33..9cbf00ddc6 100644 --- a/code/modules/reagents/Chemistry-Machinery.dm +++ b/code/modules/reagents/Chemistry-Machinery.dm @@ -10,10 +10,12 @@ /obj/machinery/chem_master name = "ChemMaster 3000" + desc = "Used to seperate and package chemicals in to patches, pills, or bottles. Warranty void if used to create Space Drugs." density = 1 anchored = 1 icon = 'icons/obj/chemical.dmi' icon_state = "mixer0" + circuit = /obj/item/weapon/circuitboard/chem_master use_power = 1 idle_power_usage = 20 var/beaker = null @@ -72,6 +74,10 @@ else if(default_unfasten_wrench(user, B, 20)) return + if(default_deconstruction_screwdriver(user, B)) + return + if(default_deconstruction_crowbar(user, B)) + return return @@ -322,6 +328,7 @@ /obj/machinery/reagentgrinder name = "All-In-One Grinder" + desc = "Grinds stuff into itty bitty bits." icon = 'icons/obj/kitchen.dmi' icon_state = "juicer1" density = 0 diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Core.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Core.dm index cbe7dd9c5b..633b3828c3 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Core.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Core.dm @@ -180,7 +180,7 @@ L.ExtinguishMob() L.adjust_fire_stacks(-(amount / 5)) remove_self(needed) -/* //VOREStation Edit Start. Stops slimes from dying from water. Fixes fuel affect_ingest, too. + //YWedit start, readds promethean damage that was removed by vorestation. /datum/reagent/water/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) if(alien == IS_SLIME) M.adjustToxLoss(6 * removed) @@ -194,10 +194,10 @@ ..() /datum/reagent/water/affect_touch(var/mob/living/carbon/M, var/alien, var/removed) - if(alien == IS_SLIME) + if(alien == IS_SLIME && prob(10)) M.visible_message("[M]'s flesh sizzles where the water touches it!", "Your flesh burns in the water!") ..() -*/ //VOREStation Edit End. + //VOREStation Edit End, /datum/reagent/fuel name = "Welding fuel" diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm index 0171551226..19347d82a0 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm @@ -105,7 +105,7 @@ strength_mod = 0 if(alien == IS_SLIME) strength_mod *= 2 // VOREStation Edit - M.adjustToxLoss(removed) - + M.add_chemical_effect(CE_ALCOHOL, 1) var/effective_dose = dose * strength_mod * (1 + volume/60) //drinking a LOT will make you go down faster @@ -344,10 +344,14 @@ var/meltdose = 10 // How much is needed to melt /datum/reagent/acid/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + if(alien == IS_GREY) //ywedit + return if(issmall(M)) removed *= 2 M.take_organ_damage(0, removed * power * 2) /datum/reagent/acid/affect_touch(var/mob/living/carbon/M, var/alien, var/removed) // This is the most interesting + if(alien == IS_GREY) //ywedit + return if(ishuman(M)) var/mob/living/carbon/human/H = M if(H.head) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm index fca004a9f3..203649cbce 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm @@ -3568,6 +3568,28 @@ glass_name = "fusionnaire" glass_desc = "A relatively new cocktail, mostly served in the bars of NanoTrasen owned stations." +/datum/reagent/ethanol/deathbell + name = "Deathbell" + id = "deathbell" + description = "A successful experiment to make the most alcoholic thing possible." + taste_description = "your brains smashed out by a smooth brick of hard, ice cold alcohol" + color = "#9f6aff" + taste_mult = 5 + strength = 10 + adj_temp = 10 + targ_temp = 330 + + glass_name = "Deathbell" + glass_desc = "The perfect blend of the most alcoholic things a bartender can get their hands on." + +/datum/reagent/ethanol/deathbell/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + ..() + + if(dose * strength >= strength) // Early warning + M.make_dizzy(24) // Intentionally higher than normal to compensate for it's previous effects. + if(dose * strength >= strength * 2.5) // Slurring takes longer. Again, intentional. + M.slurring = max(M.slurring, 30) + /datum/reagent/nutriment/magicdust name = "Magic Dust" id = "magicdust" diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm index a18207b6e4..537aa3854d 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm @@ -104,9 +104,10 @@ M.nutrition += (alt_nutriment_factor * removed) - +/* Yawnstation edit start - Removes gnome sounds on ingestion. /datum/reagent/nutriment/magicdust/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) ..() playsound(M.loc, 'sound/items/hooh.ogg', 50, 1, -1) if(prob(5)) - to_chat(M, "You feel like you've been gnomed...") \ No newline at end of file + to_chat(M, "You feel like you've been gnomed...") + Yawnstation edit end. */ diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 932ab5063a..d709134b98 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -2210,6 +2210,13 @@ required_reagents = list("sake" = 1, "melonliquor" = 1) result_amount = 2 +/datum/chemical_reaction/drinks/deathbell + name = "Deathbell" + id = "deathbell" + result = "deathbell" + required_reagents = list("antifreeze" = 1, "gargleblaster" = 1, "syndicatebomb" =1) + result_amount = 3 + /datum/chemical_reaction/bitters name = "Bitters" id = "bitters" diff --git a/code/modules/reagents/dispenser/dispenser2.dm b/code/modules/reagents/dispenser/dispenser2.dm index 38c6cf39da..b09c55d95b 100644 --- a/code/modules/reagents/dispenser/dispenser2.dm +++ b/code/modules/reagents/dispenser/dispenser2.dm @@ -1,5 +1,6 @@ /obj/machinery/chemical_dispenser name = "chemical dispenser" + desc = "Automagically fabricates chemicals from electricity." icon = 'icons/obj/chemical.dmi' icon_state = "dispenser" diff --git a/code/modules/reagents/reagent_containers/food/drinks/bluespacecoffee.dm b/code/modules/reagents/reagent_containers/food/drinks/bluespacecoffee.dm index ff28ebb9f5..6f696ff282 100644 --- a/code/modules/reagents/reagent_containers/food/drinks/bluespacecoffee.dm +++ b/code/modules/reagents/reagent_containers/food/drinks/bluespacecoffee.dm @@ -5,7 +5,7 @@ icon_state = "bluespace_coffee" center_of_mass = list("x"=15, "y"=10) volume = 50 - New() + Initialize() ..() reagents.add_reagent("coffee", 50) diff --git a/code/modules/recycling/sortingmachinery.dm b/code/modules/recycling/sortingmachinery.dm index 69b9937158..47adce6373 100755 --- a/code/modules/recycling/sortingmachinery.dm +++ b/code/modules/recycling/sortingmachinery.dm @@ -212,6 +212,7 @@ /obj/item/weapon/packageWrap name = "package wrapper" + desc = "Like wrapping paper, but less festive." icon = 'icons/obj/items.dmi' icon_state = "deliveryPaper" w_class = ITEMSIZE_NORMAL diff --git a/code/modules/research/designs/circuits/circuits.dm b/code/modules/research/designs/circuits/circuits.dm index f47ff46947..63150b8967 100644 --- a/code/modules/research/designs/circuits/circuits.dm +++ b/code/modules/research/designs/circuits/circuits.dm @@ -102,6 +102,13 @@ CIRCUITS BELOW build_path = /obj/item/weapon/circuitboard/clonescanner sort_string = "FAGAG" +/datum/design/circuit/chem_master + name = "ChemMaster 3000" + id = "chemmaster" + req_tech = list(TECH_DATA = 3, TECH_MAGNET = 2) + build_path = /obj/item/weapon/circuitboard/chem_master + sort_string = "FAGAH" + /datum/design/circuit/crewconsole name = "crew monitoring console" id = "crewconsole" @@ -607,6 +614,13 @@ CIRCUITS BELOW build_path = /obj/item/weapon/circuitboard/aicore sort_string = "XAAAA" +/datum/design/circuit/microwave/advanced + name = "deluxe microwave" + id = "deluxe microwave" + req_tech = list(TECH_DATA = 5, TECH_ENGINEERING = 5, TECH_BLUESPACE = 4) + build_path = /obj/item/weapon/circuitboard/microwave/advanced + sort_string = "MAAAC" + /* I have no idea how this was even running before, but it doesn't seem to be necessary. /////////////////////////////////// diff --git a/code/modules/research/designs/engineering.dm b/code/modules/research/designs/engineering.dm index f499a47a86..2f77d225a7 100644 --- a/code/modules/research/designs/engineering.dm +++ b/code/modules/research/designs/engineering.dm @@ -31,6 +31,14 @@ build_path = /obj/item/weapon/tool/crowbar/power sort_string = "NAAAC" +/datum/design/item/tool/rpd // YW addition begins + name = "Rapid Piping Device (RPD)" + desc = "A device used to rapidly pipe things." + id = "RPD" + req_tech = list(TECH_ENGINEERING = 3, TECH_MATERIAL = 2, TECH_BLUESPACE = 2) + materials = list(DEFAULT_WALL_MATERIAL = 300, "silver" = 100, "diamond" = 500) + build_path = /obj/item/weapon/pipe_dispenser + sort_string = "NAAAB" // YW addition end // Other devices /datum/design/item/engineering/AssembleDesignName() @@ -71,4 +79,4 @@ req_tech = list(TECH_ENGINEERING = 2) materials = list(DEFAULT_WALL_MATERIAL = 200, "glass" = 100) build_path = /obj/item/device/analyzer - sort_string = "NBABA" \ No newline at end of file + sort_string = "NBABA" diff --git a/code/modules/research/message_server.dm b/code/modules/research/message_server.dm index 75fb5fff2a..a23193581e 100644 --- a/code/modules/research/message_server.dm +++ b/code/modules/research/message_server.dm @@ -51,6 +51,7 @@ var/global/list/obj/machinery/message_server/message_servers = list() icon = 'icons/obj/machines/research.dmi' icon_state = "server" name = "Messaging Server" + desc = "Facilitates both PDA messages and request console functions." density = 1 anchored = 1.0 use_power = 1 @@ -80,6 +81,11 @@ var/global/list/obj/machinery/message_server/message_servers = list() ..() return +/obj/machinery/message_server/examine(mob/user, distance, infix, suffix) + if(..()) + to_chat(user, "It appears to be [active ? "online" : "offline"].") + + /obj/machinery/message_server/proc/GenerateKey() //Feel free to move to Helpers. var/newKey @@ -231,6 +237,7 @@ var/obj/machinery/blackbox_recorder/blackbox icon = 'icons/obj/stationobjs.dmi' icon_state = "blackbox" name = "Blackbox Recorder" + desc = "Records all radio communications, as well as various other information in case of the worst." density = 1 anchored = 1.0 use_power = 1 diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm index 5346f50e6e..192df50bec 100755 --- a/code/modules/research/rdconsole.dm +++ b/code/modules/research/rdconsole.dm @@ -29,6 +29,7 @@ won't update every console in existence) but it's more of a hassle to do. Also, /obj/machinery/computer/rdconsole name = "R&D control console" + desc = "Science, in a computer! Experiment results not guaranteed." icon_keyboard = "rd_key" icon_screen = "rdcomp" light_color = "#a97faa" @@ -393,7 +394,7 @@ won't update every console in existence) but it's more of a hassle to do. Also, var/obj/item/weapon/paper/PR = new/obj/item/weapon/paper PR.name = "list of researched technologies" PR.info = "
[station_name()] Science Laboratories" - PR.info += "

[ (text2num(href_list["print"]) == 2) ? "Detailed" : ] Research Progress Report

" + PR.info += "

[ (text2num(href_list["print"]) == 2) ? "Detailed" : null] Research Progress Report

" PR.info += "report prepared at [stationtime2text()] station time

" if(text2num(href_list["print"]) == 2) PR.info += GetResearchListInfo() diff --git a/code/modules/research/server.dm b/code/modules/research/server.dm index 7e736980db..8963928b36 100644 --- a/code/modules/research/server.dm +++ b/code/modules/research/server.dm @@ -150,6 +150,7 @@ /obj/machinery/computer/rdservercontrol name = "R&D Server Controller" + desc = "Manage the research designs and servers. Can also modify upload/download permissions to R&D consoles." icon_keyboard = "rd_key" icon_screen = "rdcomp" light_color = "#a97faa" diff --git a/code/modules/scripting/Parser/Expressions.dm b/code/modules/scripting/Parser/Expressions.dm index f27a30d3ad..14fa1b297c 100644 --- a/code/modules/scripting/Parser/Expressions.dm +++ b/code/modules/scripting/Parser/Expressions.dm @@ -53,10 +53,9 @@ if(/token/word) return new/node/expression/value/variable(T.value) if(/token/accessor) - var - token/accessor/A=T - node/expression/value/variable/E//=new(A.member) - stack/S=new() + var/token/accessor/A=T + var/node/expression/value/variable/E//=new(A.member) + var/stack/S=new() while(istype(A.object, /token/accessor)) S.Push(A) A=A.object @@ -181,11 +180,10 @@ - */ ParseExpression(list/end=list(/token/end), list/ErrChars=list("{", "}")) - var/stack - opr=new - val=new + var/stack/opr=new + var/stack/val=new src.expecting=VALUE - for() + while(TRUE) if(EndOfExpression(end)) break if(istype(curToken, /token/symbol) && ErrChars.Find(curToken.value)) @@ -278,7 +276,7 @@ NextToken() //skip open parenthesis, already found var/loops = 0 - for() + while(TRUE) loops++ if(loops>=1000) CRASH("Something TERRIBLE has gone wrong in ParseFunctionExpression ;__;") diff --git a/code/modules/scripting/Parser/Keywords.dm b/code/modules/scripting/Parser/Keywords.dm index 7d933c52ef..94e6f41afe 100644 --- a/code/modules/scripting/Parser/Keywords.dm +++ b/code/modules/scripting/Parser/Keywords.dm @@ -134,7 +134,7 @@ var/const/Represents a special statement in the code triggered by a keyword. parser.NextToken() if(!parser.CheckToken("(", /token/symbol)) return KW_FAIL - for() //for now parameters can be separated by whitespace - they don't need a comma in between + while(TRUE) //for now parameters can be separated by whitespace - they don't need a comma in between if(istype(parser.curToken, /token/symbol)) switch(parser.curToken.value) if(",") diff --git a/code/modules/scripting/Parser/Parser.dm b/code/modules/scripting/Parser/Parser.dm index ad961c755f..fa7dd8789f 100644 --- a/code/modules/scripting/Parser/Parser.dm +++ b/code/modules/scripting/Parser/Parser.dm @@ -172,7 +172,7 @@ if(!CheckToken("(", /token/symbol)) //Check for and skip open parenthesis return var/loops = 0 - for() + while(TRUE) loops++ if(loops>=6000) CRASH("Something TERRIBLE has gone wrong in ParseFunctionStatement ;__;") diff --git a/code/modules/scripting/Scanner/Scanner.dm b/code/modules/scripting/Scanner/Scanner.dm index 0162119760..78c120a22e 100644 --- a/code/modules/scripting/Scanner/Scanner.dm +++ b/code/modules/scripting/Scanner/Scanner.dm @@ -153,8 +153,7 @@ start - The character used to start the string. */ ReadString(start) - var - buf + var/buf for(, codepos <= length(code), codepos++)//codepos to length(code)) var/char=copytext(code, codepos, codepos+1) switch(char) @@ -189,9 +188,8 @@ Reads characters separated by an item in into a token. */ ReadWord() - var - char=copytext(code, codepos, codepos+1) - buf + var/char=copytext(code, codepos, codepos+1) + var/buf while(!delim.Find(char) && codepos<=length(code)) buf+=char char=copytext(code, ++codepos, codepos+1) @@ -206,9 +204,8 @@ Reads a symbol into a token. */ ReadSymbol() - var - char=copytext(code, codepos, codepos+1) - buf + var/char=copytext(code, codepos, codepos+1) + var/buf while(options.symbols.Find(buf+char)) buf+=char @@ -223,10 +220,9 @@ Reads a number into a token. */ ReadNumber() - var - char=copytext(code, codepos, codepos+1) - buf - dec=0 + var/char=copytext(code, codepos, codepos+1) + var/buf + var/dec=0 while(options.IsDigit(char) || (char=="." && !dec)) if(char==".") dec=1 @@ -246,14 +242,13 @@ */ ReadComment() - var - char=copytext(code, codepos, codepos+1) - nextchar=copytext(code, codepos+1, codepos+2) - charstring = char+nextchar - comm = 1 - // 1: single-line comment - // 2: multi-line comment - expectedend = 0 + var/char=copytext(code, codepos, codepos+1) + var/nextchar=copytext(code, codepos+1, codepos+2) + var/charstring = char+nextchar + var/comm = 1 + // 1: single-line comment + // 2: multi-line comment + var/expectedend = 0 if(charstring == "//" || charstring == "/*") if(charstring == "/*") diff --git a/code/modules/shuttles/shuttle_console.dm b/code/modules/shuttles/shuttle_console.dm index 3d5422f4f1..5055eb7543 100644 --- a/code/modules/shuttles/shuttle_console.dm +++ b/code/modules/shuttles/shuttle_console.dm @@ -1,5 +1,6 @@ /obj/machinery/computer/shuttle_control name = "shuttle control console" + desc = "Used to control a linked shuttle." icon_keyboard = "atmos_key" icon_screen = "shuttle" circuit = null diff --git a/code/modules/turbolift/turbolift_console.dm b/code/modules/turbolift/turbolift_console.dm index a0cf1dbd52..71579d5471 100644 --- a/code/modules/turbolift/turbolift_console.dm +++ b/code/modules/turbolift/turbolift_console.dm @@ -116,6 +116,7 @@ // Panel. Lists floors (HTML), moves with the elevator, schedules a move to a given floor. /obj/structure/lift/panel name = "elevator control panel" + desc = "A control panel for moving the elevator. There's a slot for swiping IDs to enable additional controls." icon_state = "panel" req_access = list(access_eva) req_one_access = list(access_heads, access_atmospherics, access_medical) diff --git a/code/modules/vehicles/Securitrain_vr.dm b/code/modules/vehicles/Securitrain_vr.dm index f826ea2fcb..92424bde4d 100644 --- a/code/modules/vehicles/Securitrain_vr.dm +++ b/code/modules/vehicles/Securitrain_vr.dm @@ -23,7 +23,8 @@ var/car_limit = 0 //how many cars an engine can pull before performance degrades. This should be 0 to prevent trailers from unhitching. active_engines = 1 - var/obj/item/weapon/key/security/key + var/obj/item/weapon/key/key //TFF 19/1/20 - Bugfix for key being prevented from getting used again + var/key_type = /obj/item/weapon/key/security var/siren = 0 //This is for eventually getting the siren sprite to work. /obj/item/weapon/key/security @@ -61,7 +62,7 @@ /obj/vehicle/train/security/engine/New() ..() cell = new /obj/item/weapon/cell/high(src) - key = new(src) + key = new key_type(src) //TFF 19/1/20 - Bugfix for key being prevented from getting used again var/image/I = new(icon = 'icons/obj/vehicles.dmi', icon_state = "cargo_engine_overlay", layer = src.layer + 0.2) //over mobs overlays += I turn_off() //so engine verbs are correctly set @@ -90,7 +91,7 @@ ..() /obj/vehicle/train/security/engine/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(istype(W, /obj/item/weapon/key/cargo_train)) + if(istype(W, key_type)) //TFF 19/1/20 - Bugfix for key being prevented from getting used again if(!key) user.drop_item() W.forceMove(src) diff --git a/code/modules/vehicles/cargo_train.dm b/code/modules/vehicles/cargo_train.dm index 46e838d37a..6e387ae04e 100644 --- a/code/modules/vehicles/cargo_train.dm +++ b/code/modules/vehicles/cargo_train.dm @@ -26,6 +26,7 @@ /obj/vehicle/train/trolley name = "cargo train trolley" + desc = "A large, flat platform made for putting things on. Or people." icon = 'icons/obj/vehicles_vr.dmi' //VOREStation Edit icon_state = "cargo_trailer" anchored = 0 diff --git a/code/modules/virus2/analyser.dm b/code/modules/virus2/analyser.dm index af17836409..90c6135ecf 100644 --- a/code/modules/virus2/analyser.dm +++ b/code/modules/virus2/analyser.dm @@ -1,5 +1,6 @@ /obj/machinery/disease2/diseaseanalyser name = "disease analyser" + desc = "Analyzes diseases to find out information about them!" icon = 'icons/obj/virology.dmi' icon_state = "analyser" anchored = 1 diff --git a/code/modules/virus2/disease2.dm b/code/modules/virus2/disease2.dm index 2769c97a84..d62502084a 100644 --- a/code/modules/virus2/disease2.dm +++ b/code/modules/virus2/disease2.dm @@ -172,6 +172,7 @@ disease.stageprob = stageprob disease.antigen = antigen disease.uniqueID = uniqueID + disease.resistance = resistance disease.affected_species = affected_species.Copy() for(var/datum/disease2/effectholder/holder in effects) var/datum/disease2/effectholder/newholder = new /datum/disease2/effectholder diff --git a/code/modules/virus2/dishincubator.dm b/code/modules/virus2/dishincubator.dm index 379d7ef533..c6be7bea09 100644 --- a/code/modules/virus2/dishincubator.dm +++ b/code/modules/virus2/dishincubator.dm @@ -1,5 +1,6 @@ /obj/machinery/disease2/incubator/ name = "pathogenic incubator" + desc = "Encourages the growth of diseases. This model comes with a dispenser system and a small radiation generator." density = 1 anchored = 1 icon = 'icons/obj/virology.dmi' diff --git a/code/modules/virus2/isolator.dm b/code/modules/virus2/isolator.dm index da2c543fc8..0aa5f80a58 100644 --- a/code/modules/virus2/isolator.dm +++ b/code/modules/virus2/isolator.dm @@ -5,6 +5,7 @@ /obj/machinery/disease2/isolator/ name = "pathogenic isolator" + desc = "Used to isolate and identify diseases, allowing for comparison with a remote database." density = 1 anchored = 1 icon = 'icons/obj/virology.dmi' diff --git a/code/modules/vore/appearance/sprite_accessories_taur_yw.dm b/code/modules/vore/appearance/sprite_accessories_taur_yw.dm index 6dd7d7cffb..9abbd3f133 100644 --- a/code/modules/vore/appearance/sprite_accessories_taur_yw.dm +++ b/code/modules/vore/appearance/sprite_accessories_taur_yw.dm @@ -3,11 +3,13 @@ name = "Kentauri (Taur)" icon_state = "kentauri_s" extra_overlay = "kentauri_markings" + icon = 'icons/mob/vore/taurs_yw.dmi' /datum/sprite_accessory/tail/taur/wolf/husky icon = 'icons/mob/vore/taurs_yw.dmi' //CHOMP Fix name = "Husky (Taur)" icon_state = "husky_s" + icon = 'icons/mob/vore/taurs_yw.dmi' /datum/sprite_accessory/tail/taur/wolf/huskyfat icon = 'icons/mob/vore/taurs_yw.dmi' //CHOMP Fix @@ -23,3 +25,16 @@ icon = 'icons/mob/vore/taurs_yw.dmi' //CHOMP Fix name = "Fat Wolf (Taur)" icon_state = "wolf2f_s" + +/datum/sprite_accessory/tail/taur/long_lizard + name = "Large Dragon Tail" + icon_state = "big_liz" + icon = 'icons/mob/vore/taurs_yw.dmi' + can_ride = 0 + hide_body_parts = null + clip_mask_icon = null + clip_mask_state = null + +/datum/sprite_accessory/tail/taur/long_lizard/scaled + name = "Large Dragon Tail/W scales" + extra_overlay = "big_liz_mark" \ No newline at end of file diff --git a/code/modules/vore/appearance/sprite_accessories_yw.dm b/code/modules/vore/appearance/sprite_accessories_yw.dm index 89ccde1ed1..5d9df5a5d4 100644 --- a/code/modules/vore/appearance/sprite_accessories_yw.dm +++ b/code/modules/vore/appearance/sprite_accessories_yw.dm @@ -101,29 +101,39 @@ extra_overlay = "ninekitsune-tips" /datum/sprite_accessory/tail/vulpkanin_alt_color - icon = 'icons/mob/vore/tails_yw.dmi' - name = "Vulpkanin alt" - desc = "" - icon_state = "vulpkanin_alt_color" - do_colouration = 1 - color_blend_mode = ICON_MULTIPLY - extra_overlay = "vulpkanin_alt_color_tips" - ani_state = "vulpkanin_alt_color_w" - extra_overlay_w = "vulpkanin_alt_color_tips_w" + icon = 'icons/mob/vore/tails_yw.dmi' + name = "Vulpkanin alt" + desc = "" + icon_state = "vulpkanin_alt_color" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "vulpkanin_alt_color_tips" + ani_state = "vulpkanin_alt_color_w" + extra_overlay_w = "vulpkanin_alt_color_tips_w" /datum/sprite_accessory/tail/raccoon_tail - icon = 'icons/mob/vore/tails_yw.dmi' - name = "Raccoon gray tail" - desc = "" - icon_state = "raccoon_tail" - do_colouration = 0 - color_blend_mode = ICON_MULTIPLY + icon = 'icons/mob/vore/tails_yw.dmi' + name = "Raccoon gray tail" + desc = "" + icon_state = "raccoon_tail" + do_colouration = 0 + color_blend_mode = ICON_MULTIPLY /datum/sprite_accessory/tail/striped_tail - icon = "icons/mob/vore/tails_yw.dmi" - name = "Striped tail, colorable" - desc = "" - icon_state = "stripedtail_colorable" - do_colouration = 1 - color_blend_mode = ICON_MULTIPLY - extra_overlay = "stripedtail_colorable_w" \ No newline at end of file + icon = 'icons/mob/vore/tails_yw.dmi' + name = "Striped tail, colorable" + desc = "" + icon_state = "stripedtail_colorable" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "stripedtail_colorable_w" + +//ears + +/datum/sprite_accessory/ears/large_dragon + icon = 'icons/mob/vore/ears_yw.dmi' + name = "vary large dragon horns" + desc = "" + icon_state = "big_liz" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY \ No newline at end of file diff --git a/code/modules/vore/fluffstuff/custom_clothes_yw.dm b/code/modules/vore/fluffstuff/custom_clothes_yw.dm index 0eaa343647..6f42eb1b6b 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_yw.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_yw.dm @@ -1578,6 +1578,14 @@ siemens_coefficient = 0.9 armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 35, bio = 75, rad = 35) +/obj/item/clothing/accessory/poncho/cloak/fluff/mocha + name = "Warden Cloak" + desc = "A cloak denoting the rank of a warden, the name \"Mocha\" is embroidered along the collar in red lettering" + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "mocha_cloak" + icon_override = "icons/vore/custom_clothes_yw.dmi" + item_state = "mocha_cloak_s" + // ****** // Lawst // ****** @@ -1591,3 +1599,12 @@ icon_override = 'icons/vore/custom_clothes_yw.dmi' item_state = "valormedal1_mob" overlay_state = "valormedal1_mob" + +// ****** +// Foxicide +// ****** +/obj/item/weapon/storage/backpack/fluff/kaith + name = "Light duffle bag" + desc = "A compact duffle bag, meant for long hikes." + icon = 'icons/obj/clothing/backpack.dmi' + icon_state = "duffle" \ No newline at end of file diff --git a/code/modules/vore/fluffstuff/custom_items_yw.dm b/code/modules/vore/fluffstuff/custom_items_yw.dm index 9f62aa8163..32c8215359 100644 --- a/code/modules/vore/fluffstuff/custom_items_yw.dm +++ b/code/modules/vore/fluffstuff/custom_items_yw.dm @@ -568,3 +568,23 @@ from_suit = /obj/item/clothing/suit/storage/hooded/explorer to_suit = /obj/item/clothing/suit/storage/hooded/fluff/mocha_suit +// ************* +// Foxicide +// ************* +/obj/item/weapon/material/knife/tacknife/survival/fluff/kaith + name = "Trusty Survival Knife" + desc = "An old looking knife with an outdated wooden handle. Still looks robust, though." + icon = 'icons/vore/custom_items_yw.dmi' + icon_state = "kaithknife" + named_from_material = 0 + +/obj/item/device/modkit_conversion/fluff/kaith_knife_kit + name = "Kaith's modkit" + desc = "A kit containing all the needed tools and parts to modify a survival knife" + + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "modkit" + + from_suit = /obj/item/weapon/material/knife/tacknife/survival + to_suit = /obj/item/weapon/material/knife/tacknife/survival/fluff/kaith + diff --git a/code/modules/vore/fluffstuff/guns/bsharpoon.dm b/code/modules/vore/fluffstuff/guns/bsharpoon.dm index 0f7bc335a1..e8ffea51cd 100644 --- a/code/modules/vore/fluffstuff/guns/bsharpoon.dm +++ b/code/modules/vore/fluffstuff/guns/bsharpoon.dm @@ -62,18 +62,25 @@ var/turf/FromTurf = mode ? get_turf(user) : get_turf(A) var/turf/ToTurf = mode ? get_turf(A) : get_turf(user) - for(var/obj/O in FromTurf) - if(O.anchored) continue - if(prob(5)) - O.forceMove(pick(trange(24,user))) - else - O.forceMove(ToTurf) + if(mode) + if(user in FromTurf) + if(prob(5)) + user.forceMove(pick(trange(24,user))) + else + user.forceMove(ToTurf) + else + for(var/obj/O in FromTurf) + if(O.anchored) continue + if(prob(5)) + O.forceMove(pick(trange(24,user))) + else + O.forceMove(ToTurf) - for(var/mob/living/M in FromTurf) - if(prob(5)) - M.forceMove(pick(trange(24,user))) - else - M.forceMove(ToTurf) + for(var/mob/living/M in FromTurf) + if(prob(5)) + M.forceMove(pick(trange(24,user))) + else + M.forceMove(ToTurf) /obj/item/weapon/bluespace_harpoon/attack_self(mob/living/user as mob) return chande_fire_mode(user) diff --git a/html/changelogs/TheFurryFeline - Changeling_Item_Name-Desc-Fixy.yml b/html/changelogs/TheFurryFeline - Changeling_Item_Name-Desc-Fixy.yml new file mode 100644 index 0000000000..685be07341 --- /dev/null +++ b/html/changelogs/TheFurryFeline - Changeling_Item_Name-Desc-Fixy.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: TheFurryFeline + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Name and desc vars switched for changeling combat boots so removal of item doesn't output an excessively long name." diff --git a/html/changelogs/TheFurryFeline - Light_Frame_Infinite_Steel_Fixy.yml b/html/changelogs/TheFurryFeline - Light_Frame_Infinite_Steel_Fixy.yml new file mode 100644 index 0000000000..f1fdd37a33 --- /dev/null +++ b/html/changelogs/TheFurryFeline - Light_Frame_Infinite_Steel_Fixy.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: TheFurryFeline + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Fixes light frames returning 5 steel per deconstruction when 2 steel is used to create the frame." \ No newline at end of file diff --git a/html/changelogs/TheFurryFeline - Typo_Fixy_Again.yml b/html/changelogs/TheFurryFeline - Typo_Fixy_Again.yml new file mode 100644 index 0000000000..fb38f29e2a --- /dev/null +++ b/html/changelogs/TheFurryFeline - Typo_Fixy_Again.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: TheFurryFeline + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Fixes an extra 'unleash' in desc.." diff --git a/html/changelogs/atermonera - preset_printers.yml b/html/changelogs/atermonera - preset_printers.yml new file mode 100644 index 0000000000..59bd88cd32 --- /dev/null +++ b/html/changelogs/atermonera - preset_printers.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Atermonera + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added a printer to all preset (mapped-in) modular computer systems, so that word processors can actually print stuff or something." diff --git a/html/changelogs/schnayy-bookcart.yml b/html/changelogs/schnayy-bookcart.yml new file mode 100644 index 0000000000..7268566f5d --- /dev/null +++ b/html/changelogs/schnayy-bookcart.yml @@ -0,0 +1,6 @@ + author: schnayy + +delete-after: True + +changes: + - rscadd: "Adds book cart to library." \ No newline at end of file diff --git a/icons/mob/head_yw.dmi b/icons/mob/head_yw.dmi index 76d6e80edd..124168cd68 100644 Binary files a/icons/mob/head_yw.dmi and b/icons/mob/head_yw.dmi differ diff --git a/icons/mob/human_face_yw.dmi b/icons/mob/human_face_yw.dmi new file mode 100644 index 0000000000..3f777b1af1 Binary files /dev/null and b/icons/mob/human_face_yw.dmi differ diff --git a/icons/mob/human_races/r_def_grey.dmi b/icons/mob/human_races/r_def_grey.dmi new file mode 100644 index 0000000000..b243f88e40 Binary files /dev/null and b/icons/mob/human_races/r_def_grey.dmi differ diff --git a/icons/mob/human_races/r_grey.dmi b/icons/mob/human_races/r_grey.dmi new file mode 100644 index 0000000000..1f66332a57 Binary files /dev/null and b/icons/mob/human_races/r_grey.dmi differ diff --git a/icons/mob/items/righthand_instruments.dmi b/icons/mob/items/righthand_instruments.dmi index b1e6b1a3af..66831d5f86 100644 Binary files a/icons/mob/items/righthand_instruments.dmi and b/icons/mob/items/righthand_instruments.dmi differ diff --git a/icons/mob/species/grey/eyes.dmi b/icons/mob/species/grey/eyes.dmi new file mode 100644 index 0000000000..a49fd089ca Binary files /dev/null and b/icons/mob/species/grey/eyes.dmi differ diff --git a/icons/mob/species/grey/mask.dmi b/icons/mob/species/grey/mask.dmi new file mode 100644 index 0000000000..041cbb1267 Binary files /dev/null and b/icons/mob/species/grey/mask.dmi differ diff --git a/icons/mob/species/grey/uniform.dmi b/icons/mob/species/grey/uniform.dmi new file mode 100644 index 0000000000..74d62beb33 Binary files /dev/null and b/icons/mob/species/grey/uniform.dmi differ diff --git a/icons/mob/species/seromi/head.dmi b/icons/mob/species/seromi/head.dmi index 687497ca57..6137dc02fa 100644 Binary files a/icons/mob/species/seromi/head.dmi and b/icons/mob/species/seromi/head.dmi differ diff --git a/icons/mob/species/seromi/suit.dmi b/icons/mob/species/seromi/suit.dmi index b2498921d0..c1f7e5a473 100644 Binary files a/icons/mob/species/seromi/suit.dmi and b/icons/mob/species/seromi/suit.dmi differ diff --git a/icons/mob/suit_yw.dmi b/icons/mob/suit_yw.dmi index ba2331842e..d8f572fb53 100644 Binary files a/icons/mob/suit_yw.dmi and b/icons/mob/suit_yw.dmi differ diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index b65057ef8b..2b252caa14 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/mob/ties_yw.dmi b/icons/mob/ties_yw.dmi new file mode 100644 index 0000000000..1609af6fb2 Binary files /dev/null and b/icons/mob/ties_yw.dmi differ diff --git a/icons/mob/vore/ears_yw.dmi b/icons/mob/vore/ears_yw.dmi new file mode 100644 index 0000000000..d0dfd80776 Binary files /dev/null and b/icons/mob/vore/ears_yw.dmi differ diff --git a/icons/mob/vore/taurs_yw.dmi b/icons/mob/vore/taurs_yw.dmi index e8dde65548..7192f08ae3 100644 Binary files a/icons/mob/vore/taurs_yw.dmi and b/icons/mob/vore/taurs_yw.dmi differ diff --git a/icons/mob/widerobot_vr.dmi b/icons/mob/widerobot_vr.dmi index 957055b916..2798d7a159 100644 Binary files a/icons/mob/widerobot_vr.dmi and b/icons/mob/widerobot_vr.dmi differ diff --git a/icons/mob/widerobot_yw.dmi b/icons/mob/widerobot_yw.dmi index f7a001cf1d..1a139ace53 100644 Binary files a/icons/mob/widerobot_yw.dmi and b/icons/mob/widerobot_yw.dmi differ diff --git a/icons/obj/clothing/hats_yw.dmi b/icons/obj/clothing/hats_yw.dmi index 0a9dcecabb..ab7089a4ed 100644 Binary files a/icons/obj/clothing/hats_yw.dmi and b/icons/obj/clothing/hats_yw.dmi differ diff --git a/icons/obj/clothing/ties_yw.dmi b/icons/obj/clothing/ties_yw.dmi new file mode 100644 index 0000000000..49ebe2fd36 Binary files /dev/null and b/icons/obj/clothing/ties_yw.dmi differ diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index c9fb21b22e..36e2091041 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ diff --git a/icons/obj/food.dmi b/icons/obj/food.dmi index a68bc39c86..d3f2b6273b 100644 Binary files a/icons/obj/food.dmi and b/icons/obj/food.dmi differ diff --git a/icons/obj/food64x64.dmi b/icons/obj/food64x64.dmi new file mode 100644 index 0000000000..5feda38026 Binary files /dev/null and b/icons/obj/food64x64.dmi differ diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index 6c5a251283..45cbd2be03 100644 Binary files a/icons/obj/kitchen.dmi and b/icons/obj/kitchen.dmi differ diff --git a/icons/obj/library.dmi b/icons/obj/library.dmi index 35dee6f7c5..e1d6b69aaf 100644 Binary files a/icons/obj/library.dmi and b/icons/obj/library.dmi differ diff --git a/icons/vore/custom_clothes_yw.dmi b/icons/vore/custom_clothes_yw.dmi index 65ae5d1eb3..2cb2f39bdd 100644 Binary files a/icons/vore/custom_clothes_yw.dmi and b/icons/vore/custom_clothes_yw.dmi differ diff --git a/icons/vore/custom_items_yw.dmi b/icons/vore/custom_items_yw.dmi index ff68d3a58b..293396d8cc 100644 Binary files a/icons/vore/custom_items_yw.dmi and b/icons/vore/custom_items_yw.dmi differ diff --git a/maps/southern_cross/southern_cross_jobs_vr.dm b/maps/southern_cross/southern_cross_jobs_vr.dm index 4a1b8ee28c..4ded9f89e1 100644 --- a/maps/southern_cross/southern_cross_jobs_vr.dm +++ b/maps/southern_cross/southern_cross_jobs_vr.dm @@ -64,8 +64,8 @@ var/const/SAR =(1<<14) department = "Exploration" department_flag = MEDSCI faction = "Station" - total_positions = 2 - spawn_positions = 2 + total_positions = 3 + spawn_positions = 3 supervisors = "the pathfinder and the research director" selection_color = "#999440" economic_modifier = 6 diff --git a/maps/tether/backup/tether-07-station3.dmm b/maps/tether/backup/tether-07-station3.dmm new file mode 100644 index 0000000000..47961a6688 --- /dev/null +++ b/maps/tether/backup/tether-07-station3.dmm @@ -0,0 +1,49600 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/turf/simulated/mineral/vacuum, +/area/mine/explored/upper_level) +"ac" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec_fore_outer"; + locked = 1; + name = "Security Starboard External Access"; + req_access = newlist(); + req_one_access = list(1,2,18) + }, +/turf/simulated/floor, +/area/security/eva) +"ad" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"ae" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"af" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/station/sec_upper) +"ag" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"ah" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"ai" = ( +/turf/simulated/wall/r_wall, +/area/security/armory/red) +"aj" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Hardsuit Storage"; + req_access = list(1,2,18) + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/turf/simulated/floor/tiled/dark, +/area/security/eva) +"ak" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "sec_fore_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1379; + id_tag = "sec_fore_sensor"; + pixel_x = 24; + pixel_y = 10 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1379; + id_tag = "sec_fore_airlock"; + pixel_x = 24; + pixel_y = 0; + req_one_access = list(13); + tag_airpump = "sec_fore_pump"; + tag_chamber_sensor = "sec_fore_sensor"; + tag_exterior_door = "sec_fore_outer"; + tag_interior_door = "sec_fore_inner" + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"al" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"am" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec_fore_inner"; + locked = 1; + name = "Security Fore Internal Access"; + req_access = newlist(); + req_one_access = list(1,2,18) + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor, +/area/security/eva) +"an" = ( +/obj/machinery/door/airlock/maintenance/sec{ + name = "Security Airlock Access"; + req_access = list(1,2,18) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/security/eva) +"ao" = ( +/turf/simulated/wall/r_wall, +/area/security/armory/blue) +"ap" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"aq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Briefing Room"; + req_access = newlist(); + req_one_access = list(1,38) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"ar" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/obj/machinery/meter{ + frequency = 1443; + id = "dist_aux_meter"; + name = "Distribution Loop" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"as" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"at" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Briefing Room"; + req_access = newlist(); + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"au" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"av" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security"; + req_access = list(58) + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"aw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/security/eva) +"ax" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec_fore_inner"; + locked = 1; + name = "Security Fore Internal Access"; + req_access = newlist(); + req_one_access = list(1,2,18) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor, +/area/security/eva) +"ay" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/security/eva) +"az" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"aA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_security{ + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"aB" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"aC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"aD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"aE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"aF" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/rack{ + dir = 1 + }, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/turf/simulated/floor, +/area/maintenance/station/ai) +"aG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"aH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"aI" = ( +/turf/simulated/wall, +/area/maintenance/station/sec_upper) +"aJ" = ( +/obj/structure/lattice, +/obj/structure/railing, +/turf/space, +/area/space) +"aK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"aL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_security{ + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"aM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass_security{ + id_tag = "BrigFoyer"; + layer = 2.8; + name = "Security"; + req_access = newlist(); + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"aN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass_security{ + id_tag = "BrigFoyer"; + layer = 2.8; + name = "Security"; + req_access = newlist(); + req_one_access = list(1,38) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"aO" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/space) +"aP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/gglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/gglasses, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"aQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/blanks{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/blanks{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"aR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/ammo_magazine/m9mmt/practice, +/obj/item/ammo_magazine/m9mmt/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/turf/simulated/floor/tiled, +/area/security/range) +"aS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/bag/trash, +/obj/item/weapon/storage/bag/trash, +/turf/simulated/floor/tiled, +/area/security/range) +"aT" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northright{ + req_access = list(1,2,18) + }, +/turf/simulated/floor/tiled/dark, +/area/security/eva) +"aU" = ( +/turf/simulated/wall/r_wall, +/area/security/eva) +"aV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"aW" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/dispenser{ + phorontanks = 0 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/security/eva) +"aX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"aY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled, +/area/security/eva) +"aZ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/item/clothing/head/helmet/bulletproof, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"ba" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"bb" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + icon_state = "secintercom"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"bc" = ( +/turf/simulated/wall, +/area/security/eva) +"bd" = ( +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"be" = ( +/turf/simulated/wall/r_wall, +/area/tether/exploration) +"bf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/range) +"bg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"bh" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/space, +/area/space) +"bi" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"bj" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + name = "Jetpack Storage"; + req_access = list(1,2,18); + req_one_access = newlist() + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/dark, +/area/security/eva) +"bk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"bl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"bm" = ( +/turf/simulated/wall, +/area/maintenance/substation/security) +"bn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + icon_state = "light1"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"bo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"bp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"bq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/warden) +"br" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bv" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/shotgunshells{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"bw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/substation/security) +"bx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/armory/blue) +"by" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/substation/security) +"bz" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Security Subgrid"; + name_tag = "Security Subgrid" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/security) +"bA" = ( +/obj/machinery/power/smes/buildable{ + charge = 0; + output_attempt = 0; + outputting = 0; + RCon_tag = "Substation - Security" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor, +/area/maintenance/substation/security) +"bB" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Security Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/substation/security) +"bC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/ward, +/obj/item/weapon/stamp/denied{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"bD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/closet/secure_closet/warden, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + ammo_type = /obj/item/ammo_casing/a12g/beanbag; + desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; + name = "warden's shotgun" + }, +/obj/item/weapon/book/manual/security_space_law, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "armory_red"; + name = "HoS Armory Access"; + pixel_x = -10; + pixel_y = 28; + req_access = list(58) + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"bE" = ( +/obj/effect/landmark/start{ + name = "Warden" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"bF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"bG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/security/range) +"bH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bI" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/security/eva) +"bK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"bM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bP" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + icon_state = "bordercolorcorner"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"bR" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/gunbox{ + pixel_y = 6 + }, +/obj/item/gunbox{ + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"bS" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "armoryred"; + name = "Red Armory Access"; + pixel_x = 8; + pixel_y = -24; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"bT" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/light/small, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/turf/simulated/floor, +/area/maintenance/substation/security) +"bU" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/security/armory/red) +"bV" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/turf/simulated/floor, +/area/maintenance/station/ai) +"bW" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/maintenance/substation/security) +"bX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"bY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"bZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"ca" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_security{ + name = "Firing Range"; + req_access = list(1) + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/range) +"cb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_security{ + name = "Security EVA"; + req_one_access = list(1,2,18) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"cc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 22; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"cd" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access = list(3) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/warden) +"ce" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"cf" = ( +/turf/simulated/wall/r_wall, +/area/security/hallwayaux) +"cg" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/hallwayaux) +"ch" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"ci" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"cj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"ck" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/window/reinforced, +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"cl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/turf/simulated/floor, +/area/maintenance/substation/security) +"cm" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/structure/closet/bombcloset/double, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"cn" = ( +/obj/machinery/door/airlock/engineering{ + name = "Security Substation"; + req_one_access = list(1,11,24) + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/substation/security) +"co" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"cp" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "sec_fore_airlock"; + name = "interior access button"; + pixel_x = 25; + pixel_y = 25; + req_one_access = list(13) + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"cq" = ( +/obj/random/trash_pile, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"cr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"cs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"ct" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/hallwayaux) +"cu" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Warden's Office" + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"cv" = ( +/turf/simulated/wall/r_wall, +/area/security/range) +"cw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/security/breakroom) +"cx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"cy" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"cz" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/substation/security) +"cA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"cB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"cC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"cD" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"cE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"cF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"cG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"cH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"cI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"cJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"cK" = ( +/turf/simulated/floor/reinforced, +/area/tether/exploration) +"cL" = ( +/obj/effect/floor_decal/borderfloor{ + pixel_y = 16 + }, +/obj/effect/floor_decal/corner/red/border{ + pixel_y = 16 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"cM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"cN" = ( +/obj/structure/table/reinforced, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"cO" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"cP" = ( +/turf/simulated/wall, +/area/security/observation) +"cQ" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"cR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"cS" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/security/brig) +"cT" = ( +/obj/structure/lattice, +/obj/structure/catwalk, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "sec_riot_control" + }, +/turf/simulated/open, +/area/security/brig) +"cU" = ( +/turf/simulated/wall/r_wall, +/area/security/observation) +"cV" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/security/brig) +"cW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/hallwayaux) +"cX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"cY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"cZ" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"da" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"db" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"dc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"dd" = ( +/obj/structure/toilet, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"de" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Break Room"; + req_one_access = list(1,38) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/wood, +/area/security/breakroom) +"df" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"dg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + icon_state = "secintercom"; + pixel_x = 24; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"dh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"di" = ( +/obj/machinery/meter, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"dj" = ( +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"dk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"dl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"dm" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"dn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"do" = ( +/obj/machinery/light, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -32 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "security_lockdown"; + name = "Brig Lockdown"; + pixel_x = -6; + pixel_y = -40; + req_access = list(3) + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "warden"; + name = "Office Shutters"; + pixel_x = 6; + pixel_y = -39; + req_access = list(3) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"dp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"dq" = ( +/obj/machinery/door/airlock/security{ + name = "Security Restroom"; + req_one_access = list(1,38) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"dr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"ds" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"dt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"du" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"dv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"dw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"dx" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/effect/floor_decal/rust, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/station/ai) +"dy" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"dz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"dA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"dB" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"dC" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"dD" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + pixel_x = 26; + pixel_y = 39; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"dE" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 6; + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"dF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"dG" = ( +/obj/machinery/door/airlock/vault/bolted{ + req_access = list(53) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "VaultAc"; + name = "\improper Vault" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/remote/blast_door{ + id = "VaultAc"; + name = "Vault Blast Door"; + pixel_x = 0; + pixel_y = -32; + req_access = list(53); + req_one_access = list(53) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"dH" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"dI" = ( +/turf/simulated/wall/r_wall, +/area/security/warden) +"dJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"dK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"dL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"dM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"dN" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"dO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"dP" = ( +/turf/simulated/wall, +/area/security/security_bathroom) +"dQ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"dR" = ( +/turf/simulated/wall/r_wall, +/area/security/breakroom) +"dS" = ( +/turf/simulated/wall/r_wall, +/area/security/security_bathroom) +"dT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/cargo) +"dU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"dV" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/station/ai) +"dW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/pilot, +/obj/item/clothing/head/helmet/space/void/pilot, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"dX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"dY" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"dZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external{ + icon_state = "door_locked"; + id_tag = "expshuttle_door_cargo"; + locked = 1; + req_one_access = list() + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + dir = 4; + icon_state = "doorctrl0"; + id = "expshuttle_door_cargo"; + name = "hatch bolt control"; + pixel_x = -32; + req_one_access = list(19,43,67); + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"ea" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/excursion/tether) +"eb" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/excursion/tether) +"ec" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"ed" = ( +/obj/structure/railing, +/turf/space, +/area/space) +"ee" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"ef" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"eg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 27 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"eh" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + icon_state = "bordercolorcorner"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"ei" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ej" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ek" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"el" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"em" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"en" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/stunshells{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/flashshells{ + pixel_x = 1; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/beanbags{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "armoryblue"; + name = "Blue Armory Access"; + pixel_x = 24; + pixel_y = -8; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"eo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ep" = ( +/turf/simulated/wall, +/area/security/security_lockerroom) +"eq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"er" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"es" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/cargo) +"et" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"eu" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/secure_closet/security, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/device/holowarrant, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"ev" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + icon_state = "bordercolorcorner"; + dir = 8 + }, +/obj/structure/table/bench/steel, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"ew" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ex" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"ey" = ( +/turf/simulated/floor/carpet, +/area/security/breakroom) +"ez" = ( +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"eA" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/snack, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"eB" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"eC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"eD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/observation) +"eE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"eF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"eG" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"eH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/red_hos, +/obj/item/weapon/stamp/hos, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"eI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"eJ" = ( +/turf/simulated/floor/wood, +/area/security/breakroom) +"eK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/obj/structure/table/bench/steel, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"eL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/cargo) +"eM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor, +/area/maintenance/station/ai) +"eN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"eO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + id_tag = "detdoor"; + name = "Detective"; + req_access = list(4) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"eP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"eQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"eR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"eS" = ( +/obj/item/frame, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"eT" = ( +/turf/simulated/wall, +/area/security/security_equiptment_storage) +"eU" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"eV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security, +/turf/simulated/floor/tiled, +/area/security/hallway) +"eW" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"eX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/briefing_room) +"eY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"eZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"fa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"fb" = ( +/obj/machinery/light_switch{ + dir = 4; + icon_state = "light1"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"fc" = ( +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"fd" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"fe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ff" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"fg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"fh" = ( +/obj/machinery/light/spot{ + pixel_y = 32 + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"fi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"fj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"fk" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/armor/vest/wolftaur{ + pixel_x = -16; + pixel_y = 4 + }, +/obj/item/clothing/suit/armor/vest/wolftaur{ + pixel_x = -12; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"fl" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"fm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/security/hallway) +"fn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Warden's Desk"; + req_access = list(3) + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Warden's Desk"; + req_access = list(1) + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "warden"; + layer = 3.1; + name = "Warden's Office Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/security/warden) +"fo" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"fp" = ( +/obj/random/junk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/ai) +"fq" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"fr" = ( +/obj/machinery/photocopier, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"fs" = ( +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ft" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"fu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"fv" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_access = newlist(); + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"fw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_access = newlist(); + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"fx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/excursion/tether) +"fy" = ( +/turf/simulated/wall/r_wall, +/area/ai) +"fz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"fA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"fB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"fC" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + name = "Equipment Storage"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"fD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/security/hallway) +"fE" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"fF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"fG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/machinery/shower{ + icon_state = "shower"; + dir = 1 + }, +/obj/structure/curtain/open/shower/security, +/turf/simulated/floor/tiled, +/area/security/security_bathroom) +"fH" = ( +/turf/simulated/wall, +/area/security/detectives_office) +"fI" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"fJ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"fK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/device/camera, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"fL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"fM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"fN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_access = newlist(); + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"fO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/weapon/reagent_containers/syringe, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"fP" = ( +/turf/simulated/wall/r_wall, +/area/ai_core_foyer) +"fQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"fR" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Security Lobby" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/security/lobby) +"fS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"fT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"fU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"fV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/clothing/head/pilot, +/obj/item/clothing/head/pilot, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"fW" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"fX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"fY" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/lockbox, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"fZ" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"ga" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"gb" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/security/brig) +"gc" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/dnaforensics, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"gd" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"ge" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/target_stake, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gf" = ( +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gg" = ( +/turf/simulated/floor/airless, +/area/space) +"gh" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gi" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gj" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "sec_fore_airlock"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -25; + req_one_access = list(13) + }, +/turf/simulated/floor/airless, +/area/space) +"gk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gl" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec_fore_outer"; + locked = 1; + name = "Security Starboard External Access"; + req_access = newlist(); + req_one_access = list(1,2,18) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor, +/area/security/eva) +"gm" = ( +/obj/structure/grille, +/turf/space, +/area/space) +"gn" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"go" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/projectile/shotgun/pump{ + ammo_type = /obj/item/ammo_casing/a12g/pellet; + pixel_x = 2; + pixel_y = -6 + }, +/obj/item/weapon/gun/projectile/shotgun/pump{ + ammo_type = /obj/item/ammo_casing/a12g/pellet; + pixel_x = 1; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gp" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/clothing/head/helmet/laserproof, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gq" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gr" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/laser{ + pixel_x = -1; + pixel_y = -11 + }, +/obj/item/weapon/gun/energy/laser{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gs" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gt" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/ionrifle, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gx" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1379; + id_tag = "sec_fore_pump" + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"gy" = ( +/turf/simulated/wall, +/area/maintenance/station/ai) +"gz" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/structure/window/reinforced, +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/item/clothing/head/helmet/bulletproof, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gA" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gB" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gC" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/clothing/head/helmet/laserproof, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gD" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gE" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/structure/window/reinforced, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gH" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gJ" = ( +/turf/simulated/mineral/vacuum, +/area/maintenance/station/ai) +"gK" = ( +/turf/simulated/floor, +/area/maintenance/station/ai) +"gL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/meter, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -26 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"gM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/machinery/meter, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"gN" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gO" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gP" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gQ" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"gR" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"gT" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + name = "Hardsuit Storage"; + req_access = list(1,2,18) + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/turf/simulated/floor/tiled/dark, +/area/security/eva) +"gU" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Jetpack Storage"; + req_access = list(1,2,18) + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/dark, +/area/security/eva) +"gV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"gW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/device/gps/security{ + pixel_y = 3 + }, +/obj/item/device/gps/security{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"gX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"gY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"gZ" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/security/eva) +"ha" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/security/eva) +"hb" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled, +/area/security/eva) +"hc" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"hd" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Security" + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"he" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"hf" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"hg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hl" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/machinery/light_switch{ + dir = 4; + icon_state = "light1"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"hm" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"hn" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/gun/energy/laser/practice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"ho" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/gun/energy/laser/practice, +/turf/simulated/floor/tiled/dark, +/area/security/range) +"hp" = ( +/turf/simulated/wall, +/area/security/range) +"hq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"hr" = ( +/turf/simulated/floor/tiled, +/area/security/eva) +"hs" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/cigarettes, +/turf/simulated/floor, +/area/maintenance/station/ai) +"ht" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"hu" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance/sec{ + name = "Security Airlock Access"; + req_access = list(1,2,18) + }, +/turf/simulated/floor, +/area/security/eva) +"hv" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"hw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"hx" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"hy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/ai) +"hz" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"hA" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"hB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"hC" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"hD" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + dir = 4; + icon_state = "light1"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hE" = ( +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hF" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/shotgunshells{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/shotgunshells{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "armory_red"; + name = "HoS Armory Access"; + pixel_x = -10; + pixel_y = -24; + req_access = list(58) + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hG" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/table/steel, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -38 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/obj/item/device/megaphone, +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/corner/red/border/shifted, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/security/observation) +"hI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"hK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"hL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"hM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"hN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"hO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"hP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"hQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/suit_cycler/security, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"hR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"hS" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/armory/blue) +"hT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Sensitive Object Lockup"; + req_one_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"hU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security/armory{ + color = ""; + desc = "It opens and closes. Only accessible on Security Level Red."; + id_tag = "armory_red"; + req_one_access = list(3); + secured_wires = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"hV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security{ + name = "Armory Storage"; + secured_wires = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + icon_state = "pdoor1"; + id = "armoryred"; + name = "Red Armory"; + p_open = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Armory Storage"; + secured_wires = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + icon_state = "pdoor1"; + id = "armoryred"; + name = "Red Armory"; + p_open = 0 + }, +/obj/structure/sign/department/armory{ + color = "#Bf4040"; + name = "RED ARMORY"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"hX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"hY" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "Hardsuit Storage"; + req_access = list(1,2,18) + }, +/turf/simulated/floor/tiled/dark, +/area/security/eva) +"hZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"ia" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"ib" = ( +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/ai) +"ic" = ( +/obj/machinery/power/smes/buildable{ + charge = 5e+006; + input_attempt = 1; + input_level = 200000; + output_level = 200000 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/bluegrid, +/area/ai) +"id" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/maintenance/engineering, +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"ie" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - AI Subgrid"; + name_tag = "AI Subgrid" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"if" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/weapon/gun/energy/gun{ + pixel_y = 7 + }, +/obj/item/weapon/gun/energy/gun{ + pixel_y = -5 + }, +/obj/item/weapon/gun/energy/gun{ + pixel_y = -5 + }, +/obj/item/weapon/gun/energy/gun{ + pixel_y = 7 + }, +/obj/item/weapon/gun/energy/gun{ + pixel_y = -5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"ig" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + icon_state = "borderfloorcorner2_black"; + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"ih" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"ii" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"ij" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/hand_labeler, +/obj/structure/sign/department/armory{ + color = "#3385ff"; + name = "BLUE ARMORY"; + pixel_x = -32 + }, +/obj/structure/sign/department/armory{ + color = "#Bf4040"; + name = "RED ARMORY"; + pixel_y = 32 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"ik" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"il" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"im" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"in" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/eva) +"io" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + name = "Security EVA"; + req_one_access = list(1,2,18) + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"ip" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"iq" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"ir" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"is" = ( +/obj/machinery/porta_turret/ai_defense, +/turf/simulated/floor/bluegrid, +/area/ai) +"it" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"iu" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"iv" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastright, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"iw" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"ix" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"iy" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Blue Armory"; + req_access = list(3); + secured_wires = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"iz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance/sec{ + name = "Security Substation"; + req_access = list(1); + req_one_access = newlist() + }, +/turf/simulated/floor, +/area/maintenance/substation/security) +"iJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"iK" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "shuttle_outbound" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"iL" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/storage/box/trackimp, +/obj/item/weapon/storage/box/trackimp, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"iM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + icon_state = "borderfloorcorner2_black"; + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"iN" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/storage/vest/heavy/officer{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/clothing/suit/storage/vest/heavy/officer{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/item/clothing/suit/storage/vest/heavy/officer{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/suit/storage/vest/heavy/officer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"iO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/security/warden) +"iP" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/obj/item/device/radio{ + pixel_x = -4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"iQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/weapon/bone/skull/unathi, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"iT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"iU" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/substation/security) +"iV" = ( +/turf/simulated/wall, +/area/maintenance/cargo) +"iW" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"iX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"iY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"iZ" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/deployable/barrier, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"ja" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jc" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jd" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/security/warden) +"je" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/heads/hos) +"jf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"jg" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"ji" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/ammo_magazine/m45/rubber{ + pixel_x = 0; + pixel_y = 9 + }, +/obj/item/ammo_magazine/m45/rubber{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/m45/rubber{ + pixel_x = 0; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = -9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jj" = ( +/obj/effect/floor_decal/borderfloor{ + pixel_y = 16 + }, +/obj/effect/floor_decal/corner/red/border{ + pixel_y = 16 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/computer/prisoner{ + icon_state = "computer"; + dir = 1 + }, +/obj/item/device/radio/intercom/department/security{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"jk" = ( +/turf/simulated/open, +/area/security/brig) +"jl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"jm" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"jn" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"jo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"jp" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"jq" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"jr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"js" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"jt" = ( +/turf/simulated/floor/bluegrid, +/area/ai) +"ju" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/flasher/portable, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/closet/wardrobe/red, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"jw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"jx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"jy" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/security/brig) +"jz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"jA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"jB" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"jC" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"jD" = ( +/turf/simulated/wall/durasteel, +/area/ai) +"jE" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/closet/l3closet/security, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + name = "Armory Storage"; + secured_wires = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 1; + id = "armoryblue"; + name = "Blue Armory" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/remote/blast_door{ + id = "armoryblue"; + name = "Blue Armory Access"; + pixel_x = -24; + pixel_y = 24; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"jJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"jK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"jL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Brig Observation" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/observation) +"jM" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"jN" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"jO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"jP" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"jQ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"jR" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/deployable/barrier, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Armory Storage"; + secured_wires = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 1; + id = "armoryblue"; + name = "Blue Armory" + }, +/obj/structure/sign/department/armory{ + color = "#3385ff"; + name = "BLUE ARMORY"; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"jU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"jV" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/station/cargo) +"jW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"jX" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"jY" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"jZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"ka" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"kb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/closet/secure_closet/guncabinet/excursion, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"kc" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"kd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"ke" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"kf" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/security/armory/blue) +"kg" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"kh" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/security/breakroom) +"ki" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"kj" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "expshuttle_docker"; + pixel_y = 26; + req_one_access = list(19,43,67); + tag_airpump = "expshuttle_vent"; + tag_chamber_sensor = "expshuttle_sensor"; + tag_exterior_door = "expshuttle_door_Ro"; + tag_exterior_sensor = "expshuttle_exterior_sensor"; + tag_interior_door = "expshuttle_door_Ri" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "expshuttle_vent" + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"kk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "expshuttle_sensor"; + master_tag = "expshuttle_docker"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "expshuttle_docker_pump_out_internal" + }, +/obj/structure/handrail, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"kl" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"km" = ( +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 30; + pixel_y = 32 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 4; + icon_state = "intercom"; + pixel_x = 32 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 8; + listening = 1; + name = "Common Channel"; + pixel_x = -21; + pixel_y = 0 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"kn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"ko" = ( +/turf/simulated/wall/r_wall, +/area/security/security_equiptment_storage) +"kp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"kq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"kr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"ks" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"kt" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"ku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"kv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"kw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"kx" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "expshuttle_door_Ri"; + locked = 1 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "expshuttle_docker"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"ky" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"kz" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"kA" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"kB" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"kC" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"kD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/security/observation) +"kE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/observation) +"kF" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"kG" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/security/breakroom) +"kH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/glasses/square, +/turf/simulated/floor/wood, +/area/security/breakroom) +"kI" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/command_guide, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"kJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"kK" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"kL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"kM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"kN" = ( +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/computer/area_atmos/tag{ + dir = 2; + scrub_id = "sec_riot_control" + }, +/turf/simulated/floor/tiled, +/area/security/observation) +"kO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + icon_state = "secintercom"; + pixel_x = 24; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"kP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/item/device/radio/intercom/department/security{ + dir = 2; + icon_state = "secintercom"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"kQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"kR" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"kS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/exploration, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"kT" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"kU" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"kV" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"kW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"kX" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"kY" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -3 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 3 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"kZ" = ( +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"la" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"lb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"lc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"ld" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_security{ + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"le" = ( +/turf/simulated/wall/r_wall, +/area/security/briefing_room) +"lf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"lg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/papershredder, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"lh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Security" + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"li" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/multi, +/obj/structure/table/reinforced, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"lj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "hos_office" + }, +/turf/simulated/floor, +/area/crew_quarters/heads/hos) +"lk" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "AI Core"; + req_access = list(16) + }, +/turf/simulated/floor/tiled/dark, +/area/ai) +"ll" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0" + }, +/obj/machinery/turretid/stun{ + check_synth = 1; + control_area = /area/ai; + name = "AI Chamber turret control"; + pixel_x = 30; + pixel_y = 24 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -24; + pixel_y = 25 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id = "AICore"; + name = "AI Maintenance Hatch"; + pixel_x = 8; + pixel_y = -25; + req_access = list(16) + }, +/obj/machinery/light/small, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/ai) +"lm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"ln" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lo" = ( +/obj/structure/closet/crate, +/obj/item/clothing/accessory/tie/horrible, +/obj/random/drinkbottle, +/obj/item/weapon/flame/lighter/random, +/turf/simulated/floor, +/area/maintenance/station/ai) +"lp" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/corner, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lq" = ( +/obj/machinery/recharger, +/obj/structure/table/steel, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"lr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"ls" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lt" = ( +/obj/structure/closet, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/ai) +"lu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "hos_office" + }, +/turf/simulated/floor, +/area/crew_quarters/heads/hos) +"lv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sec_processing" + }, +/turf/simulated/floor, +/area/security/security_processing) +"lw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sec_processing" + }, +/turf/simulated/floor, +/area/security/security_processing) +"lx" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Equipment Storage"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"ly" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/security{ + name = "Equipment Storage"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"lz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"lA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"lB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/open, +/area/security/hallway) +"lC" = ( +/turf/simulated/open, +/area/security/hallway) +"lD" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/hallway) +"lE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"lF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"lG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"lH" = ( +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"lI" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"lJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"lK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/book/codex, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"lL" = ( +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"lM" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lO" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/corner, +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lP" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"lR" = ( +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"lS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"lT" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/steel, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"lV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"lW" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"lX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/vault/bolted{ + name = "AI core"; + req_access = list(16) + }, +/obj/machinery/door/blast/regular{ + id = "AICore"; + name = "AI core maintenance hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lY" = ( +/turf/space, +/area/shuttle/antag_space/north) +"lZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "hos_office" + }, +/turf/simulated/floor, +/area/crew_quarters/heads/hos) +"ma" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/turf/simulated/floor, +/area/security/breakroom) +"mb" = ( +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/turf/simulated/floor, +/area/security/forensics) +"mc" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + icon_state = "secintercom"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"md" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 + }, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"me" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 30 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/item/device/holowarrant, +/obj/item/device/holowarrant, +/obj/item/device/holowarrant, +/obj/item/device/holowarrant, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"mf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"mg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + icon_state = "borderfloorcorner2_black"; + dir = 8 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"mh" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/security_lockerroom) +"mi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"mj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"mk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Security"; + sortType = "Security" + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ml" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"mm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"mn" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"mo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"mp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/item/weapon/folder/red_hos, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"mq" = ( +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"mr" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"ms" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"mt" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"mu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"mv" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"mw" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"mx" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/nifsofts_security, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"my" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"mz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"mA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"mB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"mC" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"mD" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/closet/wardrobe/red, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"mE" = ( +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/turf/simulated/floor, +/area/security/forensics) +"mF" = ( +/obj/structure/grille, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/turf/simulated/floor, +/area/security/forensics) +"mG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"mH" = ( +/turf/simulated/wall/r_wall, +/area/security/hallway) +"mI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "iaa_office" + }, +/turf/simulated/floor, +/area/lawoffice) +"mJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "iaa_office" + }, +/turf/simulated/floor, +/area/lawoffice) +"mK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/security/hallway) +"mL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"mM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"mN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/glass, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"mO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"mP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"mQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"mR" = ( +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"mS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"mT" = ( +/obj/random/toolbox, +/obj/item/clothing/gloves/fyellow, +/obj/effect/decal/cleanable/ash, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/ai) +"mU" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"mV" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/cargo) +"mW" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"mX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"mY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"mZ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"na" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 1; + icon_state = "intercom"; + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"nb" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"nc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"nd" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"ne" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"nf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"ng" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"nh" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"ni" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/turf/simulated/floor/wood, +/area/security/breakroom) +"nj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"nk" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/structure/table/bench/steel, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"nl" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/holowarrant, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"nm" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "iaa_office" + }, +/turf/simulated/floor, +/area/lawoffice) +"nn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "iaa_office" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "iaa_office" + }, +/turf/simulated/floor, +/area/lawoffice) +"no" = ( +/turf/simulated/wall, +/area/security/hallway) +"np" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"nq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"nr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"ns" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"nt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/red, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"nu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"nv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"nw" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"nx" = ( +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/cargo) +"ny" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/porta_turret, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"nz" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"nA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"nB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"nC" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"nD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/closet/secure_closet/hos, +/obj/item/clothing/head/helmet/space/void/security/fluff/hos, +/obj/item/clothing/suit/space/void/security/fluff/hos, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"nE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper{ + desc = ""; + info = "The Chief of Security at CentCom is debating a new policy. It's not official yet, and probably won't be since it's hard to enforce, but I suggest following it anyway. That policy is, if a security officer claims they need more than two extra magazines (or batteries) to go on routine patrols, fire them. If they cannot subdue a single suspect using all that ammo, they are not competent as Security.\[br]-Jeremiah Acacius"; + name = "note to the Head of Security" + }, +/obj/item/clothing/accessory/permit/gun{ + desc = "An example of a card indicating that the owner is allowed to carry a firearm. There's a note saying to fax CentCom if you want to order more blank permits."; + name = "sample weapon permit"; + owner = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/multi, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"nF" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/button/windowtint{ + id = "hos_office"; + pixel_x = -36; + pixel_y = -26; + req_access = list(58) + }, +/obj/machinery/button/remote/airlock{ + id = "HoSdoor"; + name = "Office Door"; + pixel_x = -28; + pixel_y = -24 + }, +/obj/machinery/button/remote/blast_door{ + id = "security_lockdown"; + name = "Brig Lockdown"; + pixel_x = -28; + pixel_y = -36; + req_access = list(2) + }, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"nG" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"nH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/obj/item/device/holowarrant, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"nI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"nJ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/table/bench/steel, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"nK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"nL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"nM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security, +/obj/item/device/holowarrant, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"nN" = ( +/turf/simulated/floor/tiled, +/area/security/hallway) +"nO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"nP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"nQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"nR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"nS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"nT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"nU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"nV" = ( +/obj/structure/ladder{ + pixel_y = 16 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"nW" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/closet/secure_closet/hos2, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"nX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"nY" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"nZ" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/button/windowtint{ + id = "iaa_office"; + pixel_x = 0; + pixel_y = -36 + }, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"oa" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"ob" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/structure/closet/secure_closet/security, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = 0 + }, +/obj/item/device/holowarrant, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"oc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"od" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/structure/table/bench/steel, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"oe" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/obj/structure/closet/secure_closet/security, +/obj/item/device/holowarrant, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"of" = ( +/turf/simulated/wall/r_wall, +/area/security/security_processing) +"og" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "iaa_office" + }, +/turf/simulated/floor, +/area/lawoffice) +"oh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"oi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"oj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ok" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"ol" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"om" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"on" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"oo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/device/megaphone, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"op" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/random/junk, +/turf/simulated/floor, +/area/maintenance/cargo) +"oq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"or" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"os" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/action_figure, +/obj/structure/table/steel, +/turf/simulated/floor, +/area/maintenance/cargo) +"ot" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/grille, +/turf/space, +/area/space) +"ou" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"ov" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"ow" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"ox" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"oy" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Storage" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"oz" = ( +/turf/simulated/wall, +/area/security/evidence_storage) +"oA" = ( +/turf/simulated/wall, +/area/security/security_processing) +"oB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/machinery/light_switch{ + dir = 4; + icon_state = "light1"; + pixel_x = -24 + }, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"oC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/computer/secure_data, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"oD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"oE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"oF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"oG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"oH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"oI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"oJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"oK" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/folder/yellow, +/obj/machinery/camera/network/cargo{ + dir = 1; + name = "security camera" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"oL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"oM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"oN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"oO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/cargo) +"oP" = ( +/obj/structure/disposalpipe/tagger{ + dir = 8; + name = "package tagger - Trash"; + sort_tag = "Trash" + }, +/obj/structure/railing, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"oQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/cargo) +"oR" = ( +/obj/random/trash_pile, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/cargo) +"oS" = ( +/obj/random/action_figure, +/obj/structure/table/steel, +/turf/simulated/floor, +/area/maintenance/cargo) +"oT" = ( +/obj/random/mouseremains, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/ai) +"oU" = ( +/obj/structure/table/bench, +/turf/simulated/floor, +/area/maintenance/station/ai) +"oV" = ( +/obj/item/weapon/stool, +/turf/simulated/floor, +/area/maintenance/cargo) +"oW" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"oX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"oY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"oZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"pa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"pb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pe" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ph" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + icon_state = "bordercolorcorner"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pj" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + icon_state = "borderfloorcorner2_black"; + dir = 10 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"pk" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"pl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"pm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"pn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"po" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"pp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"pq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pr" = ( +/turf/simulated/wall, +/area/security/briefing_room) +"ps" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"pt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/cargo) +"pu" = ( +/obj/structure/disposalpipe/sortjunction/wildcard/flipped{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"pv" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/cargo) +"pw" = ( +/obj/structure/railing, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/cargo) +"px" = ( +/obj/structure/railing, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/cargo) +"py" = ( +/obj/structure/railing, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/closet/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/junk, +/obj/random/tech_supply, +/obj/random/maintenance/cargo, +/obj/random/action_figure, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/cargo) +"pz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"pA" = ( +/obj/random/trash, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/ai) +"pB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + id_tag = "detdoor"; + name = "Forensics Lab"; + req_access = list(4) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"pC" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"pD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pF" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pI" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + icon_state = "bordercolorcorner"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"pK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"pL" = ( +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"pM" = ( +/turf/simulated/floor/tiled, +/area/security/security_processing) +"pN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"pO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"pP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"pQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"pS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/computer/timeclock/premade/south, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"pT" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"pU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/cargo) +"pV" = ( +/obj/structure/disposalpipe/tagger/partial{ + name = "partial tagger - Sorting Office"; + sort_tag = "Sorting Office" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor, +/area/maintenance/cargo) +"pW" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/cargo) +"pX" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/cargo) +"pY" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"pZ" = ( +/obj/random/junk, +/turf/simulated/floor, +/area/maintenance/station/ai) +"qa" = ( +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"qb" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor, +/area/maintenance/cargo) +"qc" = ( +/turf/simulated/wall/r_wall, +/area/security/forensics) +"qd" = ( +/turf/simulated/wall, +/area/security/forensics) +"qe" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/detectives_office) +"qf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/security/detectives_office) +"qg" = ( +/obj/structure/table/woodentable, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/radio/intercom/department/security{ + pixel_y = -24 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"qh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/evidence, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"qi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"qj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"qk" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + name = "Security Processing"; + req_access = list(1) + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"ql" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"qm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"qn" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"qo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/cargo) +"qp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/cargo) +"qq" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/cargo) +"qr" = ( +/turf/simulated/wall, +/area/quartermaster/delivery) +"qs" = ( +/obj/machinery/disposal/deliveryChute, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/quartermaster/delivery) +"qt" = ( +/obj/machinery/door/airlock/maintenance/cargo{ + req_access = list(50); + req_one_access = list(48) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/quartermaster/delivery) +"qu" = ( +/turf/simulated/wall, +/area/quartermaster/office) +"qv" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/security/forensics) +"qw" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/forensics/sample_kit, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"qx" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/microscope, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"qy" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/dnaforensics, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"qz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"qA" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"qB" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"qC" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/forensics) +"qD" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"qE" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"qF" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"qG" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"qH" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"qI" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"qJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"qK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"qL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"qM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"qN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"qO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"qP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"qQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"qR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"qS" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 9 + }, +/obj/structure/closet/lawcloset, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"qT" = ( +/turf/simulated/floor, +/area/maintenance/station/elevator) +"qU" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"qV" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"qW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/cargo) +"qX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/cargo{ + req_access = list(50); + req_one_access = list(48) + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"qY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor, +/area/quartermaster/delivery) +"qZ" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ra" = ( +/obj/structure/disposalpipe/sortjunction/untagged/flipped{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"rb" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"rc" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"rd" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/security/forensics) +"re" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/forensics/sample_kit/powder, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"rf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"rg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"rh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/window/eastleft, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"ri" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"rj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"rk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"rl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"rm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"rn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"ro" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"rp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"rq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"rr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Forensics Lab"; + sortType = "Forensics Lab" + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"rs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"rt" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light_switch{ + dir = 4; + icon_state = "light1"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"ru" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"rv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"rw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"rx" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"ry" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"rz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"rA" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"rB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance/sec{ + name = "Security Maintenance"; + req_access = list(1,12) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/security/hallway) +"rC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"rD" = ( +/obj/structure/railing, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"rE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"rF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/cargo) +"rG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/cargo) +"rH" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/cargo) +"rI" = ( +/obj/structure/closet, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/tech_supply, +/obj/random/maintenance/cargo, +/obj/random/toy, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/cargo) +"rJ" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/simulated/floor, +/area/quartermaster/delivery) +"rK" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"rL" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Sorting Office"; + sortType = "Sorting Office" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"rM" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 5 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"rN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 0; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"rO" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_access = list(50); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/delivery) +"rP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"rQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"rR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"rS" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/turf/simulated/open, +/area/maintenance/station/ai) +"rT" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/ai) +"rU" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"rV" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"rW" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"rX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"rY" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"rZ" = ( +/obj/structure/noticeboard, +/turf/simulated/wall, +/area/quartermaster/office) +"sa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/spray/luminol, +/obj/item/device/uv_light, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"sb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"sc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/folder/yellow{ + pixel_y = -5 + }, +/obj/item/weapon/folder/blue{ + pixel_y = -3 + }, +/obj/item/weapon/folder/red, +/obj/item/weapon/storage/box/swabs{ + layer = 5 + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"sd" = ( +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet{ + name = "Forensics Gear" + }, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/storage/briefcase/crimekit, +/obj/item/weapon/storage/briefcase/crimekit, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"se" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"sf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"sg" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"sh" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/clothing/glasses/sunglasses, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"si" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"sj" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/handcuffs, +/obj/item/weapon/storage/fancy/cigarettes/dromedaryco, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"sk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/clothing/glasses/sunglasses, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"sl" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"sm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"sn" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security{ + name = "Security Processing"; + req_access = list(1) + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"so" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"sp" = ( +/turf/simulated/wall/r_wall, +/area/hallway/station/upper) +"sq" = ( +/turf/simulated/wall, +/area/hallway/station/upper) +"sr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/cargo) +"ss" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"st" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"su" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/junk, +/obj/random/maintenance/cargo, +/obj/effect/floor_decal/rust, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/cargo) +"sv" = ( +/obj/item/weapon/stool, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/delivery) +"sw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"sx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"sy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"sz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"sA" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_access = list(50); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/delivery) +"sB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"sC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/cargo{ + dir = 1; + name = "security camera" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"sD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"sE" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"sF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"sG" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/office) +"sH" = ( +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"sI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"sJ" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"sK" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"sL" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/security/forensics) +"sM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"sN" = ( +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"sO" = ( +/obj/machinery/door/window/eastright, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"sP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"sQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"sR" = ( +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"sS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"sT" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"sU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"sV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"sW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border/shifted, +/obj/effect/floor_decal/corner/red/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"sX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"sY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"sZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ta" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"tb" = ( +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/mineral/floor/vacuum, +/area/security/nuke_storage) +"tc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"td" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"te" = ( +/obj/structure/cable/green{ + icon_state = "32-2" + }, +/obj/structure/lattice, +/obj/structure/railing, +/turf/simulated/open, +/area/maintenance/station/elevator) +"tf" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"tg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"th" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + icon_state = "bordercolorcorner"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ti" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"tj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4; + pixel_x = -16 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4; + pixel_x = -16 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/structure/table/steel, +/obj/item/roller, +/obj/item/weapon/storage/box/autoinjectors, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = -9 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"tk" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"tl" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/station/elevator) +"tm" = ( +/obj/machinery/atmospherics/pipe/cap/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/station/elevator) +"tn" = ( +/turf/simulated/shuttle/wall/voidcraft/green{ + hard_corner = 1 + }, +/area/tether/elevator) +"to" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"tp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"tq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"tr" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"ts" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"tt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"tu" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quartermaster/delivery) +"tv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/delivery) +"tw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"tx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"ty" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + external_pressure_bound = 101.3; + external_pressure_bound_default = 101.3; + pressure_checks = 1; + pressure_checks_default = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"tz" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/office) +"tA" = ( +/obj/structure/sign/department/cargo, +/turf/simulated/wall, +/area/quartermaster/office) +"tB" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall, +/area/quartermaster/office) +"tC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"tD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"tE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"tF" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/ashtray/glass, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/item/weapon/deck/cards, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"tG" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/security/forensics) +"tH" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/device/mass_spectrometer/adv, +/obj/item/device/reagent_scanner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"tI" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"tJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 6 + }, +/obj/structure/filingcabinet, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"tK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"tL" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"tM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"tN" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/gun/energy/taser, +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30; + pixel_x = 2; + pixel_y = 3 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"tO" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"tP" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"tQ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"tR" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/obj/machinery/computer/security/wooden_tv, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"tS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"tT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"tU" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/maintenance/station/cargo) +"tV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"tW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"tX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/hallway) +"tY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/security/hallway) +"tZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ua" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ub" = ( +/obj/structure/mopbucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/maintenance/station/cargo) +"uc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ud" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"ue" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/medical, +/obj/item/weapon/storage/box/lights/mixed, +/obj/structure/railing, +/obj/random/tool, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"uf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"ug" = ( +/obj/machinery/door/airlock/maintenance/engi, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"uh" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/station/elevator) +"ui" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/tether/elevator) +"uj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"uk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"ul" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"um" = ( +/turf/simulated/floor/wood, +/area/hallway/station/upper) +"un" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/excursion/tether) +"uo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/floodlight, +/turf/simulated/floor, +/area/storage/emergency_storage/emergency3) +"up" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor, +/area/storage/emergency_storage/emergency3) +"uq" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/storage/emergency_storage/emergency3) +"ur" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/simulated/floor/plating, +/area/quartermaster/delivery) +"us" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/delivery) +"ut" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"uu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"uv" = ( +/obj/structure/table/steel, +/obj/item/weapon/wrapping_paper, +/obj/item/weapon/wrapping_paper, +/obj/item/weapon/wrapping_paper, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"uw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/quartermaster/delivery) +"ux" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"uy" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"uz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"uA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"uB" = ( +/obj/machinery/computer/supplycomp, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"uC" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"uD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"uE" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"uF" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/security/forensics) +"uG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/security/forensics) +"uH" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green, +/turf/simulated/floor, +/area/security/forensics) +"uI" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/security/forensics) +"uJ" = ( +/turf/simulated/wall/r_wall, +/area/security/detectives_office) +"uK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"uL" = ( +/obj/machinery/washing_machine, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"uM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/security{ + name = "Internal Affairs"; + req_access = list(38); + req_one_access = newlist() + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"uN" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"uO" = ( +/turf/simulated/wall/r_wall, +/area/lawoffice) +"uP" = ( +/turf/simulated/wall/r_wall, +/area/security/lobby) +"uQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/lobby) +"uR" = ( +/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/airlock/glass_security{ + name = "Front Desk"; + req_access = list(1) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/lobby) +"uS" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/lobby) +"uT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/hallway) +"uU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/security/hallway) +"uV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/hallway) +"uW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"uX" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "32-1" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/station/elevator) +"uY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"uZ" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/hallway/station/upper) +"va" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/wood, +/area/hallway/station/upper) +"vb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/storage/emergency_storage/emergency3) +"vc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/storage/emergency_storage/emergency3) +"vd" = ( +/obj/structure/closet/crate, +/obj/random/junk, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/device/t_scanner, +/turf/simulated/floor, +/area/storage/emergency_storage/emergency3) +"ve" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/quartermaster/delivery) +"vf" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = -1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"vg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"vh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"vi" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Mailing-Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"vj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"vk" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"vl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"vm" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"vn" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Mailing Room"; + req_access = list(50) + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"vo" = ( +/obj/random/trash, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"vp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"vq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"vr" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"vs" = ( +/turf/simulated/floor/airless, +/area/mine/explored/upper_level) +"vt" = ( +/turf/simulated/mineral/floor/vacuum, +/area/mine/explored/upper_level) +"vu" = ( +/turf/simulated/wall, +/area/lawoffice) +"vv" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"vw" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 1 + }, +/obj/structure/closet, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/camera{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/camera{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/weapon/storage/secure/briefcase, +/obj/item/weapon/storage/secure/briefcase, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"vx" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 1 + }, +/obj/structure/bookcase, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/command_guide, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"vy" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Internal Affairs" + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"vz" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"vA" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"vB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"vC" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"vD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/recharge_station, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/machinery/computer/security, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/structure/bed/chair, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vM" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/random/trash_pile, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"vN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"vO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/station/elevator) +"vP" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/hallway/station/upper) +"vQ" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/hallway/station/upper) +"vR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/storage/emergency_storage/emergency3) +"vS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small, +/turf/simulated/floor, +/area/storage/emergency_storage/emergency3) +"vT" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor, +/area/storage/emergency_storage/emergency3) +"vU" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/simulated/floor/plating, +/area/quartermaster/delivery) +"vV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"vW" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"vX" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"vY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"vZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"wa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"wb" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/ai) +"wc" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"wd" = ( +/obj/machinery/autolathe, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"we" = ( +/turf/space/cracked_asteroid, +/area/mine/explored/upper_level) +"wf" = ( +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"wg" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"wh" = ( +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"wi" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"wj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wn" = ( +/turf/simulated/floor/tiled, +/area/security/lobby) +"wo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/junk, +/obj/random/tool, +/obj/random/maintenance/clean, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"ws" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"wt" = ( +/obj/machinery/door/airlock/maintenance/engi, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/station/elevator) +"wu" = ( +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/station/elevator) +"wv" = ( +/obj/structure/sign/deck3, +/turf/simulated/shuttle/wall/voidcraft/green{ + hard_corner = 1 + }, +/area/tether/elevator) +"ww" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"wx" = ( +/obj/structure/sign/directions/cargo{ + dir = 4 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/medical{ + pixel_y = -8 + }, +/turf/simulated/wall, +/area/hallway/station/upper) +"wy" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hallway/station/upper) +"wz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock{ + name = "Cargo Emergency Storage" + }, +/turf/simulated/floor, +/area/storage/emergency_storage/emergency3) +"wA" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/quartermaster/delivery) +"wB" = ( +/obj/structure/sign/department/mail, +/turf/simulated/wall, +/area/quartermaster/delivery) +"wC" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_access = list(50); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/delivery) +"wD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/quartermaster/delivery) +"wE" = ( +/obj/structure/cable/green{ + icon_state = "32-2" + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/tether/exploration) +"wF" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"wG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"wH" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"wI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"wJ" = ( +/obj/machinery/door/airlock/maintenance/cargo{ + req_access = list(50); + req_one_access = list(48) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/quartermaster/office) +"wK" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/obj/item/device/multitool, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"wL" = ( +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/wood, +/area/hallway/station/upper) +"wM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"wN" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"wO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/papershredder, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wQ" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/button/remote/airlock{ + id = "BrigFoyer"; + name = "Brig Foyer"; + pixel_x = -6; + pixel_y = 0; + req_access = list(1) + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wR" = ( +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/corner/red/border/shifted, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/observation) +"wS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/security/forensics) +"wT" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/cups, +/obj/item/weapon/storage/box/cups{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wU" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wW" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/railing, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"wX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/station/elevator) +"wY" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"wZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"xd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xe" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xf" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xg" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hallway/station/upper) +"xh" = ( +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_y = -8 + }, +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_y = 8 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/wall, +/area/teleporter/departing) +"xi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"xl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"xm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"xn" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"xo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"xp" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/office) +"xq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"xr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"xs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"xt" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/yellow, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"xu" = ( +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_y = 8 + }, +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/wall/r_wall, +/area/tether/station/stairs_three) +"xv" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/security/nuke_storage) +"xw" = ( +/turf/simulated/wall/r_wall, +/area/security/nuke_storage) +"xx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xy" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/folder{ + pixel_x = -4 + }, +/obj/item/weapon/folder/blue{ + pixel_x = 5 + }, +/obj/item/weapon/folder/red{ + pixel_y = 3 + }, +/obj/item/weapon/folder/yellow, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/internalaffairs, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/internalaffairs, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xG" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/folder{ + pixel_x = -4 + }, +/obj/item/weapon/folder/blue{ + pixel_x = 5 + }, +/obj/item/weapon/folder/red{ + pixel_y = 3 + }, +/obj/item/weapon/folder/yellow, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"xI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"xJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 8 + }, +/obj/machinery/door/window/westright{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"xK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"xL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"xM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xN" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/turf/simulated/open, +/area/maintenance/station/elevator) +"xO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"xP" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/device/megaphone, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"xQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xV" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/maintenance/station/cargo) +"xW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"xY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"xZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"ya" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"yb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"yc" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"yd" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/office) +"ye" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"yf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"yg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"yh" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/belt/utility, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"yi" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 + }, +/obj/item/weapon/storage/briefcase{ + pixel_x = -2; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"yj" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + icon_state = "laptop"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"yk" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/weapon/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"yl" = ( +/obj/structure/sign/department/medbay, +/turf/simulated/wall/r_wall, +/area/medical/chemistry) +"ym" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"yn" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"yo" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + icon_state = "laptop"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"yp" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 27; + pixel_y = 0 + }, +/obj/item/weapon/storage/briefcase{ + pixel_x = 3; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"yq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/light_switch{ + dir = 4; + icon_state = "light1"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"yr" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"ys" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"yt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"yu" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"yv" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled, +/area/security/lobby) +"yw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"yx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/security/lobby) +"yy" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"yz" = ( +/turf/simulated/wall, +/area/maintenance/station/elevator) +"yA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"yB" = ( +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/space, +/area/security/nuke_storage) +"yC" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"yD" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"yE" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"yF" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"yG" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"yH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"yI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 1; + id = "chemistry"; + layer = 3.1; + name = "Chemistry Shutters" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"yJ" = ( +/turf/simulated/wall/r_wall, +/area/medical/chemistry) +"yK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "spacemedlobby"; + layer = 3.1; + name = "Medical Shutters" + }, +/turf/simulated/floor, +/area/medical/reception) +"yL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/security/lobby) +"yM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Medbay Lobby" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/medical/reception) +"yN" = ( +/obj/structure/sign/department/medbay, +/turf/simulated/wall, +/area/medical/medbay_emt_bay) +"yO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"yP" = ( +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/station/cargo) +"yQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"yR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"yS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"yT" = ( +/turf/simulated/wall, +/area/medical/medbay_emt_bay) +"yU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"yV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"yW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/porta_turret, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"yX" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"yY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"yZ" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/office) +"za" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"zb" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor, +/area/quartermaster/delivery) +"zc" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"zd" = ( +/obj/structure/table/standard, +/obj/item/weapon/tape_roll, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ze" = ( +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/silver, +/obj/structure/closet/crate/secure{ + name = "Silver Crate"; + req_access = list(19) + }, +/obj/item/weapon/coin/silver, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"zf" = ( +/obj/item/stack/material/gold, +/obj/item/weapon/storage/belt/champion, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure{ + name = "Gold Crate"; + req_access = list(19) + }, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"zg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/space/void/wizard, +/obj/item/clothing/head/helmet/space/void/wizard, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"zh" = ( +/obj/structure/filingcabinet/security{ + name = "Security Records" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"zi" = ( +/obj/structure/filingcabinet/medical{ + desc = "A large cabinet with hard copy medical records."; + name = "Medical Records" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"zj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/security/nuke_storage) +"zk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/hallway/station/upper) +"zl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/sign/warning/high_voltage, +/turf/simulated/floor/plating, +/area/hallway/station/upper) +"zm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock{ + name = "Internal Affairs"; + req_access = list(38) + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"zn" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/lobby) +"zo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/lobby) +"zp" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/lobby) +"zq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/security/lobby) +"zr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/medical/reception) +"zs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "EMT Bay" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"zt" = ( +/turf/simulated/wall, +/area/security/lobby) +"zu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"zv" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zw" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zx" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zy" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zz" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zC" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"zD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"zE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/maintenance/station/cargo) +"zF" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zG" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zH" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zI" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zJ" = ( +/obj/structure/sign/poster{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/wall, +/area/quartermaster/qm) +"zK" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "qm_office" + }, +/turf/simulated/floor/plating, +/area/quartermaster/qm) +"zL" = ( +/turf/simulated/wall, +/area/quartermaster/qm) +"zM" = ( +/obj/machinery/door/airlock/mining{ + name = "Quartermaster"; + req_access = list(41); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/qm) +"zN" = ( +/obj/structure/symbol/pr, +/turf/simulated/wall, +/area/quartermaster/qm) +"zO" = ( +/turf/simulated/wall, +/area/quartermaster/storage) +"zP" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"zQ" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/office) +"zR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"zS" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"zT" = ( +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"zU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"zV" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"zZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Aa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ab" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ac" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ad" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ae" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Af" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ag" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ah" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ai" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Aj" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Ak" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Al" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Am" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"An" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/beakers, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Ao" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ap" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Aq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ar" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"As" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"At" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Au" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Av" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Aw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ax" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ay" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Az" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Medical Department"; + departmentType = 3; + name = "Medical RC"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"AA" = ( +/obj/machinery/disposal, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"AB" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"AC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"AD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"AE" = ( +/obj/machinery/computer/transhuman/designer, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"AF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"AG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Secondary Janitorial Closet"; + req_access = list(26) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/station/cargo) +"AH" = ( +/turf/simulated/wall, +/area/maintenance/station/cargo) +"AI" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"AJ" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 32; + pixel_y = 30 + }, +/obj/machinery/computer/security/mining, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"AK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"AL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"AM" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"AN" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall, +/area/quartermaster/qm) +"AO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"AP" = ( +/obj/machinery/navbeacon/delivery/south{ + location = "QM #2" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"AQ" = ( +/obj/machinery/navbeacon/delivery/south{ + location = "QM #3" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"AR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"AS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"AT" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/weapon/stamp/cargo, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"AU" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/weapon/storage/backpack/dufflebag, +/obj/item/weapon/stamp/cargo, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"AV" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"AW" = ( +/obj/structure/closet/emcloset, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"AX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"AY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"AZ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Ba" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_three) +"Bb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"Bc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"Bd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"Be" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"Bf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Bg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/danger{ + icon_state = "danger"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bh" = ( +/obj/structure/filingcabinet/medical{ + desc = "A large cabinet with hard copy medical records."; + name = "Medical Records" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Bi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bn" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Br" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bu" = ( +/obj/structure/table/rack, +/obj/item/device/gps/medical{ + pixel_y = 3 + }, +/obj/item/device/gps/medical{ + pixel_x = -3 + }, +/obj/item/device/radio{ + pixel_x = 2 + }, +/obj/item/device/radio{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Bv" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Bw" = ( +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Bx" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"By" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Bz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"BA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"BB" = ( +/obj/machinery/suit_cycler/medical, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"BC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"BD" = ( +/turf/simulated/wall, +/area/maintenance/substation/medical) +"BE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"BF" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"BG" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"BH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"BI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"BJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "chemistry"; + layer = 3.1; + name = "Chemistry Shutters" + }, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"BK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled, +/area/security/eva) +"BL" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cargo_bay"; + layer = 3.3; + name = "cargo bay hatch controller"; + pixel_x = 30; + pixel_y = 0; + req_one_access = list(13,31); + tag_door = "cargo_bay_door" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"BM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/obj/machinery/button/windowtint{ + id = "qm_office"; + pixel_x = 26; + pixel_y = 8 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"BN" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"BO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"BP" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"BQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"BR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"BS" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/weapon/stamp/cargo, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"BT" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"BU" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"BV" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"BW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"BX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"BY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"BZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ca" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Cb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Cc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Cd" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ce" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Cf" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Cg" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"Ch" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ci" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Cj" = ( +/obj/machinery/light, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ck" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Cl" = ( +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Cm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Cn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Co" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Cp" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Cq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Cr" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Cs" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Ct" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Cu" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Cv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Cw" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical/emt, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Cx" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Cy" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Medical Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"Cz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"CA" = ( +/turf/simulated/floor/outdoors/grass/forest, +/area/quartermaster/qm) +"CB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation"; + req_one_access = list(11,24,5) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"CC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"CD" = ( +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"CE" = ( +/obj/structure/table/standard, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/qm, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"CF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"CG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"CH" = ( +/obj/machinery/door/airlock/mining{ + name = "Quartermaster"; + req_access = list(41); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/qm) +"CI" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"CJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"CK" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"CL" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + name = "Cargo Bay"; + sortType = "Cargo Bay" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"CM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"CN" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"CO" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "QMLoad2" + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"CP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"CQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"CR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"CS" = ( +/turf/simulated/floor/airless, +/area/supply/station{ + base_turf = /turf/simulated/floor/airless; + dynamic_lighting = 0 + }) +"CT" = ( +/obj/structure/safe, +/obj/item/clothing/under/color/yellow, +/obj/item/toy/katana, +/obj/item/weapon/disk/nuclear{ + name = "authentication disk" + }, +/obj/item/weapon/moneybag/vault, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"CU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/large/reinforced{ + anchored = 1; + desc = "A hefty, reinforced metal crate with an electronic locking system. It's securely bolted to the floor and cannot be moved."; + name = "gun safe"; + req_access = list(1) + }, +/obj/item/weapon/gun/projectile/revolver/consul, +/obj/item/ammo_magazine/s44, +/obj/item/ammo_magazine/s44, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"CV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + name = "Primary Medical Storage"; + sortType = "Primary Medical Storage" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"CW" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"CX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"CY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/station/upper) +"CZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/sign/warning/high_voltage, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/station/upper) +"Da" = ( +/turf/simulated/wall, +/area/teleporter/departing) +"Db" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/teleporter/departing) +"Dc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/glass{ + name = "Long-Range Teleporter Access" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/teleporter/departing) +"Dd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"De" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/rack{ + dir = 1 + }, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"Df" = ( +/turf/simulated/wall, +/area/tether/station/stairs_three) +"Dg" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Stairwell" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tether/station/stairs_three) +"Dh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tether/station/stairs_three) +"Di" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/random/junk, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/tech_supply, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"Dj" = ( +/obj/structure/sign/department/medbay, +/turf/simulated/wall, +/area/medical/reception) +"Dk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "spacemedlobby"; + layer = 3.1; + name = "Medical Shutters" + }, +/turf/simulated/floor/plating, +/area/medical/reception) +"Dl" = ( +/turf/simulated/wall, +/area/medical/reception) +"Dm" = ( +/obj/structure/table/rack, +/obj/item/device/defib_kit/compact/loaded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Dn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Do" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Dp" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Dq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Dr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Ds" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/door/window/westleft{ + name = "Medbay Reception"; + req_one_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Dt" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white{ + pixel_y = 4 + }, +/obj/item/weapon/folder/white{ + pixel_x = -2 + }, +/obj/item/weapon/folder/white{ + pixel_x = 2 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Du" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Dv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Dw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Dx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Dy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Dz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"DA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"DB" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"DC" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/simulated/floor, +/area/quartermaster/storage) +"DD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cargo_bay_door"; + locked = 1; + name = "Cargo Docking Hatch" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"DE" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/fancy/cigarettes{ + pixel_y = 2 + }, +/obj/item/weapon/deck/cards, +/obj/item/weapon/book/codex, +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner_steel_grid, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"DF" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/cups, +/obj/item/weapon/storage/box/cups{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"DG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"DH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"DI" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"DJ" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"DK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_three) +"DL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_three) +"DM" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"DN" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"DO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"DP" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"DQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"DR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"DS" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical/emt, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"DT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/toy, +/obj/structure/closet, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"DU" = ( +/obj/machinery/power/smes/buildable{ + charge = 0; + output_attempt = 0; + outputting = 0; + RCon_tag = "Substation - Medical" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"DV" = ( +/obj/structure/table/woodentable, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = -24 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"DW" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/random/junk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"DX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"DY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"DZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"Ea" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"Eb" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"Ec" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/cargo{ + req_access = list(50); + req_one_access = list(48) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/quartermaster/warehouse) +"Ed" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"Ee" = ( +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"Ef" = ( +/obj/structure/table/reinforced, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Eg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Eh" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Ei" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Ej" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "chemistry"; + layer = 3.1; + name = "Chemistry Shutters" + }, +/obj/machinery/door/window/eastright{ + name = "Chemistry" + }, +/obj/machinery/door/window/westleft{ + name = "Chemistry"; + req_one_access = list(33) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Ek" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"El" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Em" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"En" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/sortjunction{ + name = "Chemistry"; + sortType = "Chemistry" + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Eo" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Ep" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/toy/plushie/squid/blue, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/outdoors/grass/forest, +/area/quartermaster/qm) +"Eq" = ( +/obj/structure/table/standard, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/silver, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/weapon/cartridge/quartermaster, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Er" = ( +/obj/structure/closet/secure_closet/quartermaster, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Es" = ( +/obj/structure/closet, +/obj/item/weapon/storage/backpack/dufflebag, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Et" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "QM Office"; + sortType = "QM Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Eu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Ev" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/computer/supplycomp/control{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"Ew" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Ex" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Ey" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Ez" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cargo_bay_door"; + locked = 1; + name = "Cargo Docking Hatch" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"EA" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"EB" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"EC" = ( +/obj/effect/landmark{ + name = "JoinLateGateway" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"ED" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/machinery/computer/cryopod/gateway{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"EE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_three) +"EF" = ( +/obj/machinery/button/remote/blast_door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -26; + pixel_y = 0; + req_access = list(31) + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"EG" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"EH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"EI" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"EJ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"EK" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "EMT Bay" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"EL" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"EM" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"EN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"EO" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/medical/equipped, +/obj/structure/fireaxecabinet{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"EP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/trash_pile, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"EQ" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"ER" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"ES" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Medbay Subgrid"; + name_tag = "Medbay Subgrid" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"ET" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"EU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation"; + req_one_access = list(11,24,5) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"EV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"EW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/engineering{ + name = "Cargo Substation"; + req_one_access = list(11,24,50) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargo) +"EX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/engineering{ + name = "Cargo Substation"; + req_one_access = list(11,24,50) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargo) +"EY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"EZ" = ( +/obj/structure/table/reinforced, +/obj/item/device/mass_spectrometer/adv, +/obj/item/device/mass_spectrometer/adv, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Fa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Fb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Fc" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Fd" = ( +/turf/simulated/wall/r_wall, +/area/tether/station/stairs_three) +"Fe" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Ff" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Fg" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Fh" = ( +/obj/structure/table/glass, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Fi" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Fj" = ( +/turf/simulated/wall, +/area/quartermaster/warehouse) +"Fk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/engine{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Fl" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"Fm" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Fn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"Fo" = ( +/obj/structure/closet/wardrobe/black, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"Fp" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"Fq" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"Fr" = ( +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"Fs" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"Ft" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/open, +/area/tether/station/stairs_three) +"Fu" = ( +/obj/structure/sign/deck3{ + pixel_x = 32 + }, +/turf/simulated/open, +/area/tether/station/stairs_three) +"Fv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Fw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Fx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"Fy" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit{ + pixel_y = -5 + }, +/obj/item/device/suit_cooling_unit{ + pixel_y = -5 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Fz" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/heads/cmo) +"FA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"FB" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargo) +"FC" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/substation/cargo) +"FD" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargo) +"FE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"FF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"FG" = ( +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"FH" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"FI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"FJ" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"FK" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"FL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"FM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"FN" = ( +/obj/machinery/door/window/westright{ + name = "Medbay Reception"; + req_one_access = list(5) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"FO" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"FP" = ( +/obj/structure/table/glass, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/radio{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"FQ" = ( +/obj/structure/closet/secure_closet/paramedic, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"FR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"FS" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"FT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"FU" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"FV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"FW" = ( +/obj/machinery/keycard_auth{ + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"FX" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"FY" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Cargo Subgrid"; + name_tag = "Cargo Subgrid" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/substation/cargo) +"FZ" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/storage/box/syringes, +/obj/item/device/radio/headset/headset_med, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Ga" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"Gb" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/module/power_control, +/obj/item/weapon/cell{ + maxcharge = 2000 + }, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) +"Gc" = ( +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Gd" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/trolley{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Ge" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Gf" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"Gg" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"Gh" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"Gi" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/floor_decal/techfloor/hole/right, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"Gj" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"Gk" = ( +/turf/simulated/open, +/area/tether/station/stairs_three) +"Gl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Gm" = ( +/obj/machinery/chem_master, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "chemistry"; + name = "Chemistry Shutters"; + pixel_x = -6; + pixel_y = -24; + req_access = list(5) + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Gn" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = -24 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Go" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Gp" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/body_record_disk, +/obj/item/device/sleevemate, +/obj/item/weapon/paper{ + desc = ""; + info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing."; + name = "Body Designer Note" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Gq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Gr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Gs" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Gt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/weapon/backup_implanter{ + pixel_y = -12 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -5 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 2 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 9 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Gu" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Gv" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Gw" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "spacemedlobby"; + name = "Medical Shutters"; + pixel_x = 22; + pixel_y = -24; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"Gx" = ( +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Gy" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Gz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"GA" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"GB" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"GC" = ( +/turf/simulated/wall, +/area/maintenance/substation/cargo) +"GD" = ( +/obj/machinery/photocopier, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"GE" = ( +/obj/structure/bed/chair/office/light, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Control"; + pixel_x = -36; + pixel_y = 0; + req_access = list(5) + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the CMO's office."; + id = "cmodoor"; + name = "CMO Office Door Control"; + pixel_x = -36; + pixel_y = -8 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_x = -28; + pixel_y = 0; + req_access = list(5) + }, +/obj/machinery/button/windowtint{ + id = "cmo_office"; + pixel_x = -26; + pixel_y = -10 + }, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"GF" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"GG" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"GH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"GI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"GJ" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"GK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/trolley{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"GL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"GM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"GN" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"GO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"GP" = ( +/obj/machinery/conveyor{ + dir = 10; + icon_state = "conveyor0"; + id = "QMLoad" + }, +/turf/simulated/floor, +/area/quartermaster/storage) +"GQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cargo_bay_door"; + locked = 1; + name = "Cargo Docking Hatch" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"GR" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/simulated/floor, +/area/quartermaster/storage) +"GS" = ( +/obj/structure/filingcabinet, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"GT" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine{ + department = "CMO's Office" + }, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"GU" = ( +/obj/machinery/iv_drip, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"GV" = ( +/obj/machinery/smartfridge/chemistry/chemvator, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"GW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Chemistry"; + req_access = list(); + req_one_access = list(33) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"GX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "MedbayFoyer"; + name = "Treatment Centre"; + req_one_access = list(5) + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "spacemedlobby"; + layer = 3.1; + name = "Medical Shutters" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"GY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "spacemedlobby"; + layer = 3.1; + name = "Medical Shutters" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"GZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Medbay Reception"; + req_access = list(5) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ha" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "EMT Bay" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) +"Hb" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white_cmo, +/obj/item/weapon/stamp/cmo, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Hc" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Hd" = ( +/obj/structure/table/glass, +/obj/machinery/computer/skills{ + dir = 8; + icon_state = "laptop"; + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_x = -4; + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"He" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"Hf" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/medical_restroom) +"Hg" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"Hh" = ( +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/item/weapon/tool/wrench, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Hi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + icon_state = "map"; + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Hj" = ( +/obj/structure/table/glass, +/obj/item/weapon/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/structure/sign/department/chem{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Hk" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/nifsofts_medical, +/obj/item/device/flashlight/pen, +/obj/item/device/flashlight/pen, +/obj/item/device/flashlight/pen, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Hl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Hm" = ( +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/masks{ + pixel_y = 0 + }, +/obj/structure/table/glass, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Hn" = ( +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Ho" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/sign/department/chem{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/medical/medbay_primary_storage) +"Hp" = ( +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Hq" = ( +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Hr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Hs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ht" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Hu" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -4; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Hv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Hw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"Hx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"Hy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"Hz" = ( +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/warehouse) +"HA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"HB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"HC" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/office) +"HD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"HE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"HF" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/turf/simulated/floor, +/area/quartermaster/storage) +"HG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"HH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"HI" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"HJ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"HK" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"HL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"HM" = ( +/obj/structure/closet/l3closet/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"HN" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "cmo_office" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"HO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"HP" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"HQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"HR" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"HS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"HT" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"HU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"HV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"HW" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"HX" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"HY" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"HZ" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ia" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ib" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ic" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8; + icon_state = "map" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Id" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9; + icon_state = "intact" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ie" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"If" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ig" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ih" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ii" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ij" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ik" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Il" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Im" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) +"In" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Io" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Ip" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Iq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Ir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Is" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"It" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Iu" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Iv" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = 1; + id = "QMLoad" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Iw" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"Ix" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + name = "Runtime"; + req_one_access = list(40) + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/mob/living/simple_mob/animal/passive/cat/runtime, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"Iy" = ( +/turf/simulated/wall, +/area/medical/sleeper) +"Iz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"IA" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"IB" = ( +/obj/machinery/vending/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"IC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"ID" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"IE" = ( +/obj/structure/table/glass, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"IF" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"IG" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"IH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"II" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"IJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Medbay Equipment"; + req_access = list(5) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"IK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"IL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"IM" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"IN" = ( +/obj/machinery/shower{ + pixel_y = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/structure/curtain/open/shower/medical, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"IO" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Cargo Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargo) +"IP" = ( +/obj/machinery/power/smes/buildable{ + charge = 0; + output_attempt = 0; + outputting = 0; + RCon_tag = "Substation - Cargo" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/substation/cargo) +"IQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"IR" = ( +/obj/structure/closet/crate, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) +"IS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) +"IT" = ( +/obj/machinery/button/remote/blast_door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = 26; + pixel_y = 0; + req_access = list(31) + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"IU" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"IV" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"IW" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"IX" = ( +/obj/machinery/status_display/supply_display{ + pixel_y = -32 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/simulated/floor, +/area/quartermaster/storage) +"IY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/machinery/light, +/turf/simulated/floor, +/area/quartermaster/storage) +"IZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ja" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Jb" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Jc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/medical/sleeper) +"Jd" = ( +/obj/machinery/vending/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Je" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Jf" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"Jg" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"Jh" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Ji" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"Jj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Jk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"Jl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Jm" = ( +/obj/machinery/vending/coffee, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Jn" = ( +/obj/structure/sign/goldenplaque{ + desc = "Done No Harm."; + name = "Best Doctor 2552"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Jo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Jp" = ( +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Jq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Jr" = ( +/turf/simulated/wall, +/area/medical/medbay_primary_storage) +"Js" = ( +/obj/structure/railing, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Jt" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Ju" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/structure/railing, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Jv" = ( +/obj/structure/table/glass, +/obj/item/device/defib_kit/loaded, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Jw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Jx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Jy" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Jz" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"JA" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"JB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"JC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"JD" = ( +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"JE" = ( +/obj/machinery/vending/blood, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"JF" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"JG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + id_tag = "cmodoor"; + name = "Chief Medical Officer"; + req_access = list(40); + req_one_access = list() + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"JH" = ( +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"JI" = ( +/obj/structure/closet/crate/internals, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) +"JJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"JK" = ( +/obj/structure/closet/crate/medical, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"JL" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall, +/area/quartermaster/warehouse) +"JM" = ( +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"JN" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 0; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"JO" = ( +/obj/structure/table/standard, +/obj/item/clothing/head/soft, +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/soft, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"JP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"JQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"JR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"JS" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"JT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"JU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/lattice, +/obj/structure/cable/green{ + d1 = 32; + d2 = 8; + icon_state = "32-8" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/maintenance/station/cargo) +"JV" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"JW" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/space, +/area/security/nuke_storage) +"JX" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/mineral/floor/vacuum, +/area/security/nuke_storage) +"JY" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"JZ" = ( +/obj/structure/table/standard, +/obj/random/medical, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"Ka" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Kb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"Kc" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"Kd" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Ke" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Kf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Kg" = ( +/turf/simulated/open, +/area/medical/medbay_primary_storage) +"Kh" = ( +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"Ki" = ( +/obj/machinery/light, +/turf/simulated/open, +/area/medical/medbay_primary_storage) +"Kj" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Kk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Kl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Km" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Kn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ko" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Kp" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Kq" = ( +/obj/machinery/camera/network/security, +/turf/simulated/mineral/floor/vacuum, +/area/security/nuke_storage) +"Kr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"Ks" = ( +/obj/structure/table/glass, +/obj/item/bodybag/cryobag, +/obj/item/device/healthanalyzer, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Kt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ku" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"Kv" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/weapon/storage/belt/medical, +/obj/item/device/flashlight/pen, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/defib_kit/compact/combat/loaded, +/obj/item/weapon/cmo_disk_holder, +/obj/item/weapon/storage/secure/briefcase/ml3m_pack_cmo, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"Kw" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Kx" = ( +/obj/structure/bed/psych{ + name = "couch" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Ky" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Kz" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"KA" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/masks, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"KB" = ( +/obj/machinery/computer/arcade, +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"KC" = ( +/obj/structure/dogbed{ + desc = "Runtime's bed. Some of her disappointment seems to have rubbed off on it."; + name = "cat bed" + }, +/obj/item/toy/plushie/mouse/fluff, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"KD" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"KE" = ( +/turf/simulated/wall, +/area/crew_quarters/medical_restroom) +"KF" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Medbay Equipment"; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"KG" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall, +/area/medical/medbay_primary_storage) +"KH" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Scan Records" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"KI" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"KJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"KK" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"KL" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"KM" = ( +/obj/structure/table/glass, +/obj/random/medical, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"KN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"KO" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"KP" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"KQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"KR" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"KS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"KT" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Mailing Room"; + req_access = list(50) + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"KU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"KV" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"KW" = ( +/turf/simulated/wall, +/area/crew_quarters/medbreak) +"KX" = ( +/obj/structure/bookcase/manuals/medical, +/obj/item/weapon/book/manual/medical_diagnostics_manual{ + pixel_y = 7 + }, +/obj/item/weapon/book/manual/stasis, +/obj/item/weapon/book/manual/resleeving, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"KY" = ( +/obj/structure/flora/skeleton{ + name = "\proper Wilhelm" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"KZ" = ( +/obj/machinery/washing_machine, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"La" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Lb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"Lc" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Ld" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Le" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Lf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Lg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/crew_quarters/medbreak) +"Lh" = ( +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Li" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/pill_bottle/tramadol, +/obj/item/weapon/storage/pill_bottle/antitox, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Lj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Lk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ll" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Lm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ln" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Lo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Lp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/medical/medbay_primary_storage) +"Lq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "CMO Office"; + sortType = "CMO Office" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Lr" = ( +/obj/machinery/vending/fitness, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = -32; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Ls" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"Lt" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"Lu" = ( +/turf/simulated/wall, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"Lv" = ( +/obj/structure/railing, +/obj/structure/closet, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Lw" = ( +/obj/structure/railing, +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Lx" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Ly" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/railing, +/obj/structure/closet/crate, +/obj/random/maintenance/medical, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Lz" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"LA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"LB" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall/r_wall, +/area/medical/chemistry) +"LC" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"LD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"LE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"LF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"LG" = ( +/obj/structure/table/glass, +/obj/random/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LN" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LP" = ( +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LR" = ( +/obj/machinery/vending/wallmed1{ + pixel_y = -30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"LS" = ( +/obj/machinery/camera/network/security, +/mob/living/simple_mob/animal/sif/shantak/scruffy, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"LT" = ( +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) +"LU" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"LV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"LW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"LX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/medical, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"LY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"LZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Ma" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Mb" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/medical, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"Mc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"Md" = ( +/obj/machinery/door/airlock/medical{ + name = "Rest Room" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Me" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/warehouse) +"Mf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/medical_restroom) +"Mg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Mh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Mi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Mj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Mk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Ml" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Mm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Mn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Mo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Staff Room"; + req_access = list(5) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Mp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Mq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Mr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ms" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Mt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Mu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Mv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Mw" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Mx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"My" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"Mz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"MA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"MB" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/light_switch{ + dir = 4; + icon_state = "light1"; + pixel_x = -24 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MD" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) +"ME" = ( +/obj/structure/table/glass, +/obj/item/weapon/deck/cards, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MF" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MI" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"MK" = ( +/turf/simulated/open, +/area/medical/sleeper) +"ML" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"MM" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"MN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/conveyor_switch{ + id = "gloriouscargopipeline"; + name = "Mining Supply conveyor switch"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) +"MO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"MP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"MQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"MR" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "Rest Room" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MV" = ( +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MW" = ( +/obj/structure/table/glass, +/obj/item/device/universal_translator, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"MY" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"MZ" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Na" = ( +/obj/machinery/vending/wallmed1{ + pixel_y = -30 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Nb" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Nc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Nd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ne" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Nf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ng" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Nh" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Ni" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Nj" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"Nk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"Nl" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Nm" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Nn" = ( +/obj/structure/plasticflaps, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/turf/simulated/floor, +/area/quartermaster/warehouse) +"No" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/cups, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Np" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/gun/energy/taser, +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30; + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"Nq" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Nr" = ( +/turf/simulated/wall/r_wall, +/area/medical/virologyaccess) +"Ns" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access = list(39) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "virologyquar"; + name = "Virology Emergency Quarantine Blast Doors"; + opacity = 0 + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 0; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"Nt" = ( +/obj/structure/sign/department/virology, +/turf/simulated/wall/r_wall, +/area/medical/virologyaccess) +"Nu" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"Nv" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"Nw" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_core_foyer) +"Nx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) +"Ny" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Nz" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"NA" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/storage/mre/random, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"NB" = ( +/obj/machinery/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 2; + pixel_y = 0 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/curtain/open/shower/medical, +/turf/simulated/floor/tiled/steel, +/area/medical/virologyaccess) +"NC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"ND" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"NE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4; + pixel_x = -16 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4; + pixel_x = -16 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/structure/table/steel, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = -9 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"NF" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + frequency = 1380; + id_tag = "large_escape_pod_1_berth"; + pixel_x = -26; + pixel_y = 0; + tag_door = "large_escape_pod_1_berth_hatch" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"NG" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"NH" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"NI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"NJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"NK" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"NL" = ( +/turf/simulated/wall/r_wall, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"NM" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "large_escape_pod_1_berth_hatch"; + locked = 1; + name = "Large Escape Pod 1" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"NN" = ( +/obj/structure/sink{ + dir = 8; + icon_state = "sink"; + pixel_x = -12; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"NO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"NP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"NQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"NR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"NS" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/large_escape_pod1/station) +"NT" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "large_escape_pod_1_hatch"; + locked = 1; + name = "Emergency Airlock" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"NU" = ( +/obj/structure/sign/redcross, +/turf/simulated/shuttle/wall, +/area/shuttle/large_escape_pod1/station) +"NV" = ( +/turf/simulated/mineral/floor/vacuum, +/area/hallway/secondary/escape/medical_escape_pod_hallway) +"NW" = ( +/turf/simulated/wall/r_wall, +/area/medical/virology) +"NX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"NY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"NZ" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/large_escape_pod1/station) +"Oa" = ( +/obj/machinery/atmospherics/unary/cryo_cell{ + layer = 3.3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Ob" = ( +/obj/structure/table/standard, +/obj/random/medical/lite, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -4; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Oc" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency/oxygen, +/obj/item/weapon/tank/emergency/oxygen, +/obj/item/weapon/tank/emergency/oxygen, +/obj/item/weapon/tank/emergency/oxygen, +/obj/item/weapon/tank/emergency/oxygen, +/obj/item/weapon/tank/emergency/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Od" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + id_tag = "large_escape_pod_1"; + pixel_x = -26; + pixel_y = 26; + tag_door = "large_escape_pod_1_hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Oe" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Of" = ( +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Og" = ( +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Oh" = ( +/obj/structure/bed/chair, +/obj/machinery/vending/wallmed1{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = 28; + pixel_y = 0 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Oi" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/large_escape_pod1/station) +"Oj" = ( +/obj/structure/bed/padded, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Ok" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Ol" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/virology) +"Om" = ( +/obj/structure/table/glass, +/obj/item/weapon/hand_labeler, +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Virology. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Virology Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 24; + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_x = -2; + pixel_y = 28; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"On" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Oo" = ( +/obj/structure/sink{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Op" = ( +/obj/machinery/disease2/incubator, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Oq" = ( +/obj/machinery/computer/diseasesplicer, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Or" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -8; + pixel_y = -28; + req_access = list(39) + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"Os" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Ot" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Ou" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"Ov" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"Ow" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/shuttle/plating, +/area/shuttle/large_escape_pod1/station) +"Ox" = ( +/turf/simulated/open, +/area/tether/exploration) +"Oy" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Oz" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"OA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OB" = ( +/obj/machinery/door/window/eastright{ + name = "Virology Isolation Room One"; + req_one_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OE" = ( +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OG" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/light, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"OI" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1; + icon_state = "freezer_1"; + use_power = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"OJ" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = -32 + }, +/obj/item/device/defib_kit/loaded, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"OK" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"OL" = ( +/obj/machinery/sleep_console, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"OM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"ON" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"OO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"OP" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"OQ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"OR" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OT" = ( +/obj/machinery/disease2/isolator, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OU" = ( +/obj/machinery/computer/centrifuge, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OV" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/device/radio{ + anchored = 1; + broadcasting = 0; + canhear_range = 7; + frequency = 1487; + icon = 'icons/obj/items.dmi'; + icon_state = "red_phone"; + listening = 1; + name = "Virology Emergency Phone"; + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"OX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"OY" = ( +/obj/machinery/camera/network/cargo{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"OZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"Pa" = ( +/obj/item/weapon/stool/padded, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pb" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pc" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"Pd" = ( +/obj/structure/table/glass, +/obj/item/device/antibody_scanner{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/antibody_scanner, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pe" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_core_foyer) +"Pf" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/beakers, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Ph" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"Pi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pk" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Pl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pm" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/sign/deathsposal{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pn" = ( +/obj/machinery/door/window/eastright{ + name = "Virology Isolation Room Two"; + req_one_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Po" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pp" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pq" = ( +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/open, +/area/security/hallway) +"Pr" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_core_foyer) +"Ps" = ( +/obj/machinery/atmospherics/tvalve/bypass, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"Pt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"Pu" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/monkeycubes, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Pw" = ( +/obj/machinery/disease2/diseaseanalyser, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Px" = ( +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"Py" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/medical/virology) +"Pz" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 1; + pressure_checks_default = 1; + use_power = 1 + }, +/turf/simulated/floor/airless, +/area/medical/virology) +"PA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/freezer/money, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/machinery/light, +/obj/item/weapon/storage/mrebag/pill/sleevingcure, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"PB" = ( +/turf/simulated/wall/r_wall, +/area/medical/virologyisolation) +"PC" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"PD" = ( +/obj/machinery/smartfridge/secure/virology, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"PE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"PG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PH" = ( +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PI" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PJ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/medical/virologyisolation) +"PL" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/medical/virologyisolation) +"PM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/medical/virologyisolation) +"PN" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/storage/box/cups, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PO" = ( +/obj/item/weapon/stool/padded, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/tether/exploration) +"PQ" = ( +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PR" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PS" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PT" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PU" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PV" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PW" = ( +/obj/machinery/disposal, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/sign/deathsposal{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PY" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"PZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"Qa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/medical/virologyisolation) +"Qb" = ( +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/open, +/area/tether/exploration) +"Qc" = ( +/obj/structure/table/standard, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = -24 + }, +/obj/item/device/retail_scanner/civilian{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/machinery/camera/network/cargo{ + dir = 1; + name = "security camera" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"Qd" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Quartermaster-Office" + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Qe" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/machinery/camera/network/cargo{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor, +/area/quartermaster/storage) +"Qf" = ( +/obj/structure/toilet{ + pixel_y = 15 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Qg" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Qh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/trolley{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Qi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Qj" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Qk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ql" = ( +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/open, +/area/security/brig) +"Qm" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Qn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/door/window/southright{ + req_access = list(58) + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"Qo" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = -28 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/lockbox/vials, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Qp" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) +"Qq" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) +"Qr" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_r" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) +"Qs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Virology Laboratory"; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Qt" = ( +/turf/simulated/wall, +/area/tether/exploration) +"Qw" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"Qx" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Qz" = ( +/obj/structure/railing, +/turf/simulated/floor, +/area/maintenance/cargo) +"QE" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"QI" = ( +/obj/structure/cable/cyan{ + icon_state = "32-1" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_core_foyer) +"QJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"QK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor, +/area/tether/exploration) +"QL" = ( +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"QS" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"QT" = ( +/obj/effect/landmark/map_data/virgo3b, +/turf/space, +/area/space) +"QU" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/deployable/barrier, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) +"QV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "Cell 1"; + name = "Cell 1 Door"; + pixel_x = -24; + pixel_y = 7; + req_access = list(1,2) + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "Cell 2"; + name = "Cell 2 Door"; + pixel_x = -36; + pixel_y = 7; + req_access = list(1,2) + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "Cell 3"; + name = "Cell 3 Door"; + pixel_x = -24; + pixel_y = -7; + req_access = list(1,2) + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "Cell 4"; + name = "Cell 4 Door"; + pixel_x = -36; + pixel_y = -7; + req_access = list(1,2) + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/computer/general_air_control/fuel_injection{ + device_tag = "riot_inject"; + frequency = 1442; + name = "Riot Control Console" + }, +/turf/simulated/floor/tiled, +/area/security/observation) +"QW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"QX" = ( +/obj/structure/railing, +/turf/simulated/floor, +/area/maintenance/station/ai) +"QY" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"Ra" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"Rb" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"Rc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"Rd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"Re" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"Rf" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/security/lobby) +"Rg" = ( +/obj/structure/catwalk, +/turf/space, +/area/space) +"Rh" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"Ri" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"Rj" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"Rk" = ( +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"Rm" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai_core_foyer) +"Rn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ro" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/tether/exploration) +"Rp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/tether/exploration) +"Rq" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + dir = 2; + pixel_x = -4; + pixel_y = 12 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"Rr" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tool, +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Rs" = ( +/obj/machinery/button/windowtint{ + id = "sec_processing"; + pixel_x = 26; + pixel_y = 6; + req_access = list(1) + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"Rt" = ( +/obj/random/obstruction, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Ru" = ( +/turf/simulated/mineral/vacuum, +/area/quartermaster/office) +"Rv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"Rw" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Rx" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Ry" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Rz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"RA" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"RC" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RD" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RE" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"RF" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RG" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RH" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"RI" = ( +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/random/junk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RK" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/random/trash, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RM" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RN" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RO" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"RP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"RQ" = ( +/obj/structure/closet/crate, +/obj/random/drinkbottle, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"RT" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"RU" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/random/junk, +/turf/simulated/floor, +/area/maintenance/cargo) +"RV" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RW" = ( +/obj/item/stack/material/steel{ + amount = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RX" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/ai) +"RY" = ( +/obj/structure/railing, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/cargo) +"RZ" = ( +/obj/structure/railing, +/obj/random/junk, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Sa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/eva) +"Sb" = ( +/obj/structure/railing, +/obj/random/trash, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Sc" = ( +/obj/structure/table/woodentable, +/obj/item/device/megaphone, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"Sd" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Se" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"Sf" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"Sg" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"Sh" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"Si" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Sk" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Sl" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Sm" = ( +/obj/random/toy, +/obj/structure/closet, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Sn" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Sp" = ( +/obj/machinery/light, +/turf/simulated/open, +/area/tether/exploration) +"Sq" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"Sr" = ( +/obj/structure/railing, +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"Ss" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"St" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"Su" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"Sv" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor, +/area/maintenance/cargo) +"Sw" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/cargo) +"Sx" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Sy" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Sz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"SC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"SD" = ( +/obj/machinery/navbeacon/delivery/south{ + location = "QM #1" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"SE" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"SF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) +"SG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled, +/area/security/security_processing) +"SH" = ( +/turf/simulated/wall, +/area/storage/emergency_storage/emergency3) +"SI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"SK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "expshuttle_dock"; + pixel_x = 32; + req_one_access = list(19,43,67) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"SL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"SM" = ( +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"SN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/elevator) +"SO" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"SP" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"SQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/excursion/tether) +"ST" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"SX" = ( +/obj/machinery/door/airlock/security{ + name = "Security Restroom"; + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"Tb" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/crew_quarters/medical_restroom) +"Tc" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Td" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/security/breakroom) +"Tf" = ( +/obj/structure/table/standard, +/obj/random/soap, +/obj/random/soap, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Th" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Ti" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Tl" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/head/helmet/space/void/pilot, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/pilot, +/obj/item/clothing/head/helmet/space/void/pilot, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Tp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/maintenance/station/sec_upper) +"Tq" = ( +/obj/machinery/power/port_gen/pacman/mrs, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Tt" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Tu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"TD" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/skills{ + icon_state = "laptop"; + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"TG" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "expshuttle_vent" + }, +/obj/structure/cable/cyan, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"TJ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"TO" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/secure/safe{ + pixel_x = -30 + }, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/item/weapon/paper{ + desc = ""; + info = "In the event that more weapon permits are needed, please fax Central Command to request more. Please also include a reason for the request. Blank permits will be shipped to cargo for pickup. If long-term permits are desired, please contact your NanoTrasen Employee Representitive for more information."; + name = "note from CentCom about permits" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"TP" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/crew_quarters/medbreak) +"TQ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/wood, +/area/security/breakroom) +"TT" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/excursion/tether) +"TU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/forest, +/area/quartermaster/qm) +"TW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"TX" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"TY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/handrail, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Ua" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/forest, +/area/quartermaster/qm) +"Ub" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"Uf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "expshuttle_docker_pump_out_external" + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/shuttle/excursion/tether) +"Ui" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/bone, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"Uj" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Uk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"Ul" = ( +/obj/machinery/light, +/obj/structure/stasis_cage, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"Um" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Un" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"Up" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance/sec{ + name = "Security Airlock Access"; + req_access = list(1,2,18) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/security/eva) +"Uq" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"Us" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Ut" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Uu" = ( +/obj/machinery/computer/security, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"Uw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/soap, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"Ux" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"Uy" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"Uz" = ( +/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/structure/handrail{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"UB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"UC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) +"UE" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"UJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"UK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"UL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"UM" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 8; + start_pressure = 3039.75 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"UO" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/cell_charger, +/obj/structure/table/steel, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/random/powercell, +/obj/item/stack/material/tritium{ + amount = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"UR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"US" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"UT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"UU" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "expshuttle_vent" + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"UV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/security_bathroom) +"UW" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Vd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "expshuttle_docker_pump_out_internal" + }, +/obj/machinery/oxygen_pump{ + pixel_y = -32 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Ve" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"Vf" = ( +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/emcloset/legacy, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Vg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/crate/freezer/rations, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu10, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Vi" = ( +/obj/machinery/shuttle_sensor{ + dir = 2; + id_tag = "shuttlesens_exp_psg" + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"Vl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/window/westleft{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/forest, +/area/quartermaster/qm) +"Vm" = ( +/obj/structure/bed/chair/shuttle{ + icon_state = "shuttle_chair"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Vn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"Vp" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"Vu" = ( +/obj/structure/flight_left, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Vv" = ( +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Vw" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"VA" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/structure/bed/chair, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"VB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/excursion/tether) +"VD" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"VE" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"VF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/dogbed, +/obj/item/toy/plushie/squid/pink, +/turf/simulated/floor/outdoors/grass/forest, +/area/quartermaster/qm) +"VI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"VJ" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"VK" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_y = 32 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"VL" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/space, +/area/space) +"VM" = ( +/turf/simulated/open, +/area/ai_core_foyer) +"VQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"VR" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"VU" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "shuttle_outbound" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"VX" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"Wb" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/simulated/wall, +/area/maintenance/substation/cargo) +"Wd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Wg" = ( +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Wh" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"Wk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"Wm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/station/cargo) +"Wn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/shuttle_sensor{ + dir = 5; + id_tag = "shuttlesens_exp_int" + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"Wo" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Wr" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Ws" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"Wv" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Ww" = ( +/turf/simulated/wall, +/area/crew_quarters/heads/cmo) +"Wx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/excursion/tether) +"WB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/security/security_bathroom) +"WD" = ( +/obj/structure/flight_right, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"WE" = ( +/obj/effect/decal/remains, +/obj/item/clothing/under/rank/centcom_officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/shoes/laceup, +/turf/simulated/mineral/floor/vacuum, +/area/mine/explored/upper_level) +"WF" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/crew_quarters/medical_restroom) +"WG" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/tether) +"WH" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/dogbed, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"WN" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"WR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"WS" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"WY" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/evidence_storage) +"Xa" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Xb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"Xc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/tether) +"Xe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) +"Xh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/dogbed, +/mob/living/simple_mob/animal/sif/fluffy, +/turf/simulated/floor/outdoors/grass/forest, +/area/quartermaster/qm) +"Xi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Xk" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Xl" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Xo" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Xp" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Xq" = ( +/obj/structure/stasis_cage, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"Xr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"XA" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/excursion/tether) +"XB" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/excursion/tether) +"XC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"XE" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "shuttle_inbound" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/shuttle/excursion/tether) +"XG" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/security/eva) +"XM" = ( +/obj/structure/table/glass, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"XN" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/excursion/tether) +"XO" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) +"XT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"XZ" = ( +/obj/machinery/computer/shuttle_control/web/excursion{ + icon = 'icons/obj/computer.dmi'; + my_doors = list("expshuttle_door_Ro" = "Airlock Outer", "expshuttle_door_Ri" = "Airlock Inner", "expshuttle_door_cargo" = "Cargo Hatch"); + my_sensors = list("shuttlesens_exp" = "Exterior Environment", "shuttlesens_exp_int" = "Cargo Area", "shuttlesens_exp_psg" = "Passenger Area") + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Yb" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Yf" = ( +/obj/machinery/computer/supplycomp/control, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Yg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Yh" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Yj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "expshuttle_vent" + }, +/obj/machinery/oxygen_pump{ + pixel_y = -32 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Ym" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Yp" = ( +/turf/simulated/wall{ + can_open = 0 + }, +/area/crew_quarters/medical_restroom) +"Ys" = ( +/obj/structure/bed/chair/shuttle{ + icon_state = "shuttle_chair"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"Yu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door_timer/tactical_pet_storage{ + pixel_x = 32; + pixel_y = 34 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"Yw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/tether/exploration) +"Yx" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"Yz" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/crew_quarters/medical_restroom) +"YC" = ( +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"YD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"YH" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/security/breakroom) +"YI" = ( +/obj/structure/bed/chair/shuttle{ + icon_state = "shuttle_chair"; + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"YQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) +"YT" = ( +/turf/simulated/wall, +/area/security/breakroom) +"YV" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"YW" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/space, +/area/space) +"Za" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/excursion/tether) +"Zd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "shuttle_inbound" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/shuttle/excursion/tether) +"Zi" = ( +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/forest, +/area/quartermaster/qm) +"Zk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Zn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/mob/living/simple_mob/animal/sif/fluffy/silky, +/turf/simulated/floor/outdoors/grass/forest, +/area/quartermaster/qm) +"Zo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"Zp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/forest, +/area/quartermaster/qm) +"Zs" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) +"Zu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Zx" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"Zy" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/tether) +"ZB" = ( +/obj/machinery/shuttle_sensor{ + dir = 5; + id_tag = "shuttlesens_exp" + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"ZD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/turf/simulated/wall/rshull, +/area/shuttle/excursion/tether) +"ZE" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "expshuttle_door_Ro"; + locked = 1 + }, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + frequency = 1380; + id_tag = "expshuttle_exterior_sensor"; + master_tag = "expshuttle_docker"; + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"ZF" = ( +/turf/simulated/mineral/vacuum, +/area/crew_quarters/heads/hos) +"ZL" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/excursion/tether) +"ZM" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/off, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"ZO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/security/eva) +"ZT" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"ZU" = ( +/obj/machinery/suit_cycler/pilot, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -26 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/tether) +"ZV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"ZW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"ZX" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/tether) +"ZY" = ( +/turf/simulated/wall/r_wall, +/area/security/security_lockerroom) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +QT +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VL +ae +ad +aa +gm +aa +ad +ad +ae +ot +ad +ad +ae +ad +ad +ad +ae +ad +ad +ad +ae +ad +ad +ad +ae +ad +ad +ad +ae +ad +ad +ad +ae +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +gm +ad +ad +ae +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VL +aa +ae +aa +ae +aa +aa +aa +ae +aa +aa +aa +ae +aa +aa +aa +ae +aa +aa +aa +ae +aa +aa +aa +ae +aa +aa +aa +ae +aa +aa +aa +ae +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VL +YW +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +YW +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +ZF +je +je +je +je +lj +lu +je +je +je +lj +lZ +qc +qv +rd +qc +sL +tG +uF +aa +ae +aa +aa +aa +ae +aa +yB +aa +ae +aa +aa +aa +ae +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +ab +ZF +je +LS +WH +Uk +my +kv +nD +nW +TO +oW +ZM +mb +qw +re +sa +fO +tH +uG +vs +ae +aa +JW +xv +xw +xw +xw +xw +xw +xv +JW +aa +ae +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ZF +je +Ui +iS +Qn +Yu +Vp +Ve +nX +TW +oX +Sc +mE +qx +rf +sb +sM +tI +uI +vs +ae +aa +xv +xw +xw +xw +xw +xw +xw +xw +xv +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ZF +je +je +je +je +Uu +jM +nE +Rq +YC +kv +SP +mF +qy +rg +sc +sN +gc +qc +vs +vs +vs +xw +xw +ze +zS +yR +BV +CT +xw +xw +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +je +VK +jM +nF +eG +ov +oZ +fr +qc +mG +rh +wS +sO +tJ +qc +vs +vt +tb +xw +xw +zf +zT +Bb +BW +CU +xw +xw +Kq +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +ab +ab +ab +ab +ab +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ab +ab +ab +ab +je +YV +jM +TD +eH +ow +Un +cZ +mb +qz +ri +sd +sP +tK +qc +vt +vt +vt +xw +xw +zg +zT +Bc +BX +PA +xw +xw +vt +we +vt +vt +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +ab +ab +ab +ab +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ab +ab +ab +ab +je +hd +WN +et +Yx +Wh +pa +Sz +mE +qA +rj +se +sM +tL +uH +vt +vt +vt +xw +xw +zh +zT +Bd +BY +CW +xw +xw +vt +vt +vt +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +ao +ao +ao +ao +bR +iu +ck +cm +jE +QU +jR +ju +ju +ao +ab +ab +ab +ab +je +kI +Uy +kO +oa +ox +ff +pC +mF +qB +rk +sf +sQ +tM +uI +vt +we +vt +xv +xw +zi +zU +Be +zU +CX +xw +xv +we +vt +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aO +aa +aa +aa +aa +ab +ab +ab +ao +ao +ao +ao +ao +if +iv +iL +jg +jg +QU +iZ +ju +ju +ko +ko +ko +ko +ko +ZY +ZY +ZY +ZY +ZY +ZY +av +ma +qd +qC +pB +qd +qC +qC +qc +vt +vt +vt +JX +xw +zj +xw +dG +xw +zj +xw +JX +vt +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +ae +aa +aa +aa +ab +ab +ab +ab +ao +ao +aH +hA +hS +ig +iw +iM +ja +ja +ja +ja +ja +kc +ko +tQ +hC +kY +eT +mc +mx +eu +nH +ob +mh +pb +fs +qe +qD +rm +sg +sR +tN +uJ +vt +vt +vt +we +vt +zk +zV +Bg +BZ +CY +vt +vt +vt +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +ae +aa +aa +ab +ab +ab +ab +ab +ao +ao +dN +hB +hT +ih +ix +ih +jb +fM +ih +jF +bd +ke +ko +kz +kL +kZ +lx +eq +mA +nj +nI +oc +fd +pc +nN +qe +qE +rm +sh +sS +tO +uJ +vt +vt +vt +vt +vt +zl +zW +ki +Ca +CZ +vt +vt +vt +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +ae +ae +Rg +ae +ae +ab +ab +ab +ai +ai +ai +ao +hf +fJ +bx +ii +bd +iN +jc +ji +en +kd +jS +rA +ko +kA +dz +la +eT +md +mB +nk +nJ +eK +mh +mj +mK +fH +qF +rn +si +sT +DV +uJ +vu +nn +nn +nn +vu +uO +xx +Bi +Cb +sp +we +vt +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +KE +KE +KE +KE +KE +Tb +WF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +Rg +aa +aa +ab +ab +ai +ai +ai +ai +ai +ai +ai +dI +dI +iy +iO +jd +dI +dI +jG +jT +ao +ko +fk +fz +fW +eT +me +mB +ev +SE +od +mh +pd +mL +fH +qG +ro +sj +sT +qg +uJ +qS +wg +wg +xy +yi +og +zY +Bj +Qk +Da +Da +Da +Da +Da +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +KE +IN +Wv +KE +Vv +Nl +Yz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +ed +Rg +bh +aa +aa +ab +ai +ai +aZ +gz +bg +hg +hD +dI +ij +ez +cu +iP +jj +dI +jH +ee +kf +ko +kB +fA +fX +ly +mf +mC +mf +nL +mf +oy +pe +ft +qf +qH +rp +sk +sU +tR +uJ +vw +wh +wh +xz +yj +og +zZ +Bk +BC +Da +DE +EA +Fo +Da +Da +ab +ab +ab +ab +ab +ab +ab +ab +ab +KE +Qx +Nl +Md +Nl +Nl +Yz +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +ae +aJ +Rg +bh +aa +aa +ab +ai +ai +gn +gA +gN +hh +hE +hU +ez +ez +bC +dn +cL +dI +dJ +ef +eA +eT +kC +fB +fY +eT +jv +mD +nl +nM +oe +mh +pf +pG +qe +qI +rm +sl +sR +Np +uJ +vx +wh +wM +xA +yk +og +Aa +Bl +SI +Da +AY +EB +Fp +Gf +Da +ab +ab +ab +ab +ab +ab +ab +ab +ab +KE +Tt +Yh +KE +Nl +Wr +KE +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +ed +Rg +bh +aa +aa +aa +ai +ai +go +gB +gO +hi +hF +dI +bD +fl +cN +do +dI +dI +dK +iR +eB +eT +eT +fC +eT +eT +mh +mh +ep +mh +mh +ep +pg +pG +fH +qe +eO +fH +qe +qe +uJ +vy +wh +wh +xB +nZ +uO +Ab +Bm +Cd +Db +DG +EC +Fq +Gg +Da +ab +ab +ab +ab +ab +ab +ab +ab +ab +KE +Yp +KE +KE +MO +Nm +KE +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +Rg +aa +aa +aa +aa +ai +ai +gp +gC +gP +bZ +bv +dI +dU +ez +bE +RB +fn +dp +dL +eh +eC +eV +ip +fD +ga +lz +ej +fm +ew +lz +lz +Kr +ph +pI +aA +qJ +rr +sm +sV +tS +mI +vz +wh +Cu +xC +ym +zm +Ac +Bn +Ce +Dc +DH +EC +Fr +Gh +Da +ab +ab +ab +ab +ab +ab +ab +ab +ab +KE +Qf +Zx +Md +Zu +Tf +KE +ab +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +ae +ae +Rg +ae +ae +ae +ae +ai +ai +gq +gD +gQ +bl +hG +dI +il +bo +bF +cc +bq +dp +jI +bI +cR +ei +jK +QW +lb +lA +eo +jl +eE +nN +nN +fe +pi +fu +aG +lA +rs +lA +DO +pF +mJ +vA +wh +wh +xD +yn +uO +Ad +Bo +Cf +Db +DI +EC +Fq +Gi +Da +ab +ab +ab +ab +ab +ab +ab +ab +ab +KE +KE +KE +KE +MP +Nl +KE +ab +ab +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +Rg +aa +aa +aa +aa +ai +ai +gr +gE +gO +hi +bS +dI +dI +bq +bq +cd +dI +mv +dM +er +cP +cP +jL +eD +cP +lB +lB +lB +no +as +as +oz +oz +fv +oz +oz +oz +oz +pD +ql +uM +vB +wh +wM +xE +yk +og +Ae +Bo +Ca +xh +DJ +ED +Fs +Gj +Da +ab +ab +ab +ab +ab +ab +ab +ab +ab +KE +Hf +Mf +Md +MQ +KV +KE +ab +ab +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +ed +Rg +bh +aa +ab +ab +ai +ai +gs +gF +gP +hj +hI +hV +ah +ch +bH +ce +cQ +jw +cx +ek +cP +QV +kD +hH +cP +lC +lC +lC +lC +nO +nN +oz +pj +pJ +mg +qK +rt +oz +sY +tV +nm +vC +wh +wh +xF +yo +og +Af +Bp +zX +Df +Df +Df +Df +Df +Df +Df +Jr +Jr +Jr +Jr +Jr +Jr +Jr +Jr +KW +KW +KW +KW +MR +KW +KW +KW +KW +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +ae +aJ +Rg +bh +aa +ab +ab +ai +ai +gn +gA +gN +hk +hE +hW +al +ci +bI +cr +cR +jx +cR +mS +eD +kN +kE +wR +eD +lC +lC +lC +lC +nO +JM +oz +fo +pK +WY +qL +fL +fN +sZ +tW +uO +rM +wi +wN +xG +yp +og +Aa +Bq +Ch +Dg +DK +EE +Ft +Gk +Gk +Gk +Jr +Hp +Hh +HT +IB +Jn +Ka +Jr +KX +LC +Lr +MB +MS +No +Jm +Kj +KW +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +ed +Rg +bh +aa +ab +ab +ai +ai +gt +gG +bi +ap +az +ai +bU +iz +iQ +cf +ct +ct +ct +ct +cU +eD +eD +eD +cU +lD +lD +mH +lD +lD +mH +oz +pk +pL +fI +qM +ru +oz +ta +pG +uP +uP +uP +uP +uP +uP +uP +Ag +Br +Ci +Dh +DL +Ba +Fu +Gk +Gk +Gk +Jr +GU +Hi +HU +IC +Jo +JV +Jr +KY +LD +Mh +MC +MT +Ld +Ld +Ld +TP +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +Rg +cv +cv +cv +cv +ai +ai +ai +ai +ai +ai +ai +ai +ai +NY +iR +cg +jk +jk +jk +jk +jk +jk +jk +jk +gb +cT +cT +jy +jk +jk +of +oA +oA +fw +oA +oA +oA +oA +pH +tT +uQ +vE +wj +wO +xH +yq +zn +Ae +Bo +Cj +xu +Fd +Fd +Fd +Fd +Fd +Fd +yJ +yJ +Hj +HV +ID +Jp +Fm +Jr +KZ +LE +Mi +Ld +MU +Ut +Ld +Ld +TP +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +ae +ae +Rg +cv +cv +cv +gd +gh +gf +gf +gH +gR +hl +aB +aP +hp +cj +iR +cg +cS +jk +jk +jk +jk +jk +jk +jk +jk +cV +cV +jk +jk +jk +lv +oB +lU +pM +qh +fK +rv +lw +qP +tX +uR +vF +wk +wP +xI +yr +zo +Ae +Bs +Ck +yl +Al +BE +BQ +Ef +EZ +FH +FZ +yJ +Hk +HV +IE +Jq +Kd +Jr +La +LF +Mj +VA +MV +ME +QE +Ld +TP +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +Rg +cv +cv +cv +ge +gf +gk +gu +gk +gR +hm +aC +aQ +hp +br +bK +cf +cT +jy +jk +jk +jk +jk +jk +jk +jk +jk +jk +jk +jk +jk +lv +oC +SG +Rs +qi +qN +rw +lw +pg +tY +uS +vG +wl +wQ +Vn +ys +zp +Ae +Bo +Ck +yI +Am +ER +Dn +Eg +Fa +FG +HW +GV +Jt +HV +IF +LT +Ke +Lp +Ld +Ld +Mk +VA +MW +MF +QE +NH +TP +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +Rg +cv +cv +cv +gf +gf +gf +gv +gf +gR +hn +aC +aR +bf +bs +iR +cf +cT +jy +jk +jk +jk +jk +jk +jk +jk +jk +jk +jk +jk +Ql +of +oD +pn +DP +nu +qN +rx +lw +td +pG +mH +uP +wm +sW +xJ +uP +uP +Ah +Bt +Cc +yI +An +BF +Do +Eh +Fb +FI +Gl +GW +Hl +HX +IG +Kh +Kf +KF +Lc +Ld +Ml +Ld +MG +Th +Ld +Ld +TP +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +ae +ae +Rg +cv +cv +cv +ge +gf +gk +ba +gI +gS +au +aD +bG +ca +iA +bM +cg +cV +jk +jk +jk +jk +jk +jk +jk +jk +cS +cS +jk +jk +jk +lw +oE +po +pO +qj +qO +pO +sn +tf +tW +uT +vH +wn +Rf +wn +yt +zq +Ae +Bs +Ck +yI +Am +ER +FG +Ei +FG +FJ +Gm +yJ +Hm +Kh +IH +Js +Kg +Lp +Ld +Ld +Mm +MH +MH +MH +Nz +Ux +TP +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +Rg +cv +cv +cv +gf +gf +gf +gw +gf +gR +ho +hJ +aS +bf +iB +bN +cg +jk +jk +jk +jk +jk +jk +jk +jk +gb +cT +cT +jy +jk +jk +lw +oF +pp +pP +qi +mz +ry +lw +tZ +ua +uU +vI +wo +wT +xK +yu +zq +fT +kn +Qj +yJ +Az +BG +Dp +Ei +Fc +BG +Gn +yJ +Hn +HY +II +Ju +Ki +KG +GN +Ld +Mn +MI +MY +Nq +NA +OP +KW +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +Rg +cv +cv +cv +ge +gi +gk +gf +gk +gR +bb +aE +dQ +bf +ci +bO +cf +cW +cW +cf +cW +cW +cf +ct +ct +cf +lD +lD +mH +lD +lD +of +lw +lw +lw +qk +lw +lw +oA +pE +qR +uV +vJ +wp +wU +xL +yv +zq +xM +kw +pN +yl +yJ +BJ +BJ +Ej +LB +BJ +yJ +yJ +Ho +Lp +IJ +Lp +Lp +Jr +Lg +Lg +Mo +Lg +Lg +KW +KW +KW +KW +NW +NW +NW +NW +NW +NW +NW +NW +NW +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +ae +ae +Rg +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +iC +bP +lc +cM +cX +ik +cM +cM +kq +cM +cM +UC +lE +lE +jz +mi +nP +oi +lE +lE +pQ +np +nA +lE +aK +th +uc +aM +vK +wp +wn +xL +yw +fR +hZ +mX +pS +Dl +AA +FK +Dq +Ek +Fe +FK +Go +Iy +HK +HZ +IK +Jv +Gc +KH +Li +LG +Mp +Le +MZ +Iy +ab +ab +ab +NW +Oj +Oy +Ny +NW +Oj +Oy +Ny +NW +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +Rg +Rg +Rg +Rg +gg +ab +ab +ab +aU +aj +bn +hK +hY +in +iD +bQ +co +kr +jA +im +jU +cY +kr +kr +hR +ld +lF +mk +oG +nq +nQ +oj +oG +pq +pR +qm +oY +rz +aL +ti +ud +aN +vL +wq +wV +vD +yx +yL +jf +nc +qQ +yK +AB +Cl +Cl +El +Cl +Cl +DF +Iy +Hq +Lh +IL +Lh +Lh +Lh +Lh +Lh +Mq +Lh +Na +Iy +ab +ab +ab +NW +Ok +OA +Lf +NW +Ok +OA +Lf +NW +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +Rh +Ri +Rj +gg +ab +ab +ab +aU +gT +hq +hL +aT +in +bt +iR +YT +cw +cw +cw +de +cw +cw +cw +dR +le +eX +aq +eX +eX +eX +at +eX +pr +lC +Pq +mH +rB +mH +tj +NE +mH +uP +uP +uP +uP +uP +zt +yA +nf +Ch +yM +AC +Cl +Cl +Em +Cl +Cl +Gq +GX +Hr +Lh +IM +Jw +Kk +KI +Kk +LH +Mr +Lh +Nb +Nr +Nr +Nr +Nr +NW +Ol +OB +Ol +NW +Ol +Pn +Ol +NW +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +ed +gg +ab +ab +ab +aU +gU +hr +hM +hr +io +iE +iR +YT +ne +eJ +eJ +el +kh +kh +OQ +YT +dO +lG +ml +mM +nr +nR +ok +oH +eX +lC +lC +mH +RP +mH +mH +mH +mH +vM +wr +wW +xN +yy +yz +jr +ng +rq +zr +AD +Cm +Cm +En +Cm +FL +Gr +GY +Hs +Ia +CV +Jx +Kl +KJ +Lj +LI +Ms +MJ +Nc +Nr +NB +JZ +NN +Nr +Om +OC +OR +Qo +Pf +OC +KA +NW +PB +PM +PM +PB +PB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aO +aa +ed +gg +ab +ab +ab +aU +bj +XG +hN +aV +cb +iF +iR +YT +jn +jB +jW +nK +ey +eJ +kF +YT +lf +lH +mm +mm +ns +mO +ol +oI +eX +lC +lC +mH +St +SN +tk +uf +uW +vN +ws +uW +xO +uW +zu +Ao +By +rC +yK +AE +Cn +Dr +Eo +Cn +FM +Gs +Iy +Ht +Ib +IQ +Jy +Km +KK +LN +Jy +Mt +Lh +Nd +Ns +NC +Kb +NP +NX +On +OD +OS +Pa +Pg +Po +Pu +NW +PI +PN +PS +PW +PB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gg +ab +ab +ab +aU +gV +hr +hM +aW +aU +iG +NI +YT +jo +ds +jN +jX +SC +eJ +kG +YT +lg +lH +mn +mN +nt +nS +om +oJ +pr +lC +lC +mH +Su +tl +tl +ug +tl +tl +wt +tl +tl +yz +yz +Ap +Bz +pN +Dj +AF +Co +Ds +EH +Ff +FN +Gt +Iy +Ji +Ic +IZ +Jz +Km +KL +LN +Jz +Mt +Lh +IU +Nt +Kc +NK +Or +Nr +Oo +OE +OE +Pb +Pi +Pp +Pv +Qs +PE +PO +PT +PX +Qa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gg +ab +ab +ab +aU +gW +ZO +Sa +aX +in +bu +iR +YT +jp +jC +nY +cO +da +eJ +kH +YT +lh +lH +lH +lH +jh +lH +ok +kP +le +mH +mH +mH +Su +tl +tm +uh +uX +vO +wu +wX +sp +jm +zv +Aq +Aw +Ck +Dk +AZ +Cp +Dt +Cp +Fg +FO +Gu +Iy +Ji +Id +Lh +JA +Kn +KM +LO +JA +Mu +Lh +Pt +Nr +Nr +Nr +Nr +Nr +Op +OE +OT +OE +Pj +NJ +OE +Ol +PG +PQ +PU +PQ +Qa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gg +ab +ab +ab +aU +aw +hr +hM +aY +in +bu +iR +YT +Uq +dt +mU +pm +Td +eY +TQ +YT +li +lH +mm +mO +ns +mm +SF +oL +le +qT +tl +te +SL +tl +tn +tn +tn +tn +tn +tn +sp +wF +zw +Ar +Ax +Ck +Dk +DN +Cl +Cl +Cl +Cl +Cl +Gv +Iy +Hu +Ie +Ja +JB +Ko +KN +KN +LJ +MX +Lh +Ng +Iy +ab +ab +ab +NW +Oq +OF +OU +OE +Pl +NR +Ne +NW +PH +PQ +PQ +PY +Qa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gg +ab +ab +ab +aU +bk +hr +hP +hQ +aU +iH +iT +YT +ni +dg +tP +eJ +eF +Xe +YH +YT +eZ +lI +mn +mN +nt +nS +om +OW +le +tl +tl +ue +Rk +tl +tn +ui +ui +ui +ui +tn +sp +yC +zw +xb +Bz +Ck +Dk +Bf +Cq +EN +EN +EN +EN +Gw +GZ +Hv +If +Lh +JC +Kp +Lh +Kp +LK +MX +Lh +Nf +Iy +ab +ab +ab +NW +Pw +OG +OV +Pd +Pm +Ps +PD +NW +PJ +PR +PV +KB +PB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ed +gg +gg +aU +aU +aU +aU +hu +Up +aU +aU +iI +iU +dS +dP +dP +dP +dP +dq +dP +dP +dP +le +lJ +mo +mP +nv +nT +on +oM +le +qV +rE +Re +Rk +tl +tn +ui +ui +ui +ui +tn +sp +yD +zx +As +Bz +FT +Dl +Bh +Cr +Du +EJ +Fh +FP +Gp +Iy +HI +Ig +ND +ND +ND +ND +Lk +LL +Mv +Lh +Nh +Iy +ab +ab +ab +NW +NW +NW +NW +NW +NW +NW +Py +NW +PK +PB +PB +PB +PB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ed +gg +gj +gl +gx +ar +am +bJ +gY +bm +bz +bw +cl +dS +dd +SX +ST +VJ +UT +fb +UV +fG +le +lK +mp +mQ +nw +nU +oo +oN +le +rD +so +Rk +SM +tl +tn +ui +ui +ui +ui +tn +sp +yE +zy +XT +Rn +Ck +yN +yT +yT +yT +EK +yT +yT +yT +yT +HJ +Ih +Jb +JD +Gx +KO +Ll +LM +Mw +Lh +Ni +Iy +ab +NL +NL +NL +NL +NL +NL +NL +vt +vt +Pz +aa +PL +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ed +gg +gg +ac +ag +ak +ax +cp +hv +bm +bA +bW +bT +dS +dP +dP +hx +kW +US +Ub +UV +fG +af +af +af +af +af +af +af +af +af +aI +qn +aI +yz +tl +tn +ui +ui +ui +ui +tn +sp +yF +zz +At +Bz +tc +yT +Bu +Cs +DM +EL +Dm +FQ +FQ +yT +HO +Ii +Jc +Jc +Jc +Jc +Lm +LP +Iy +MK +MK +Iy +ab +NL +Qp +Qq +Qq +Qq +Qr +NL +vt +vt +gg +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ed +gg +gg +aU +aU +aU +aU +dX +hw +bm +bB +by +cz +dS +mW +SX +TX +WB +uL +Uw +UV +fG +af +fc +fc +fc +fc +dw +dw +dr +mR +fc +dw +aI +ab +sp +tn +tn +ui +ui +wv +tn +sp +sq +sq +Au +BA +tt +yT +Bv +Ct +Ct +Ct +Ct +Ct +Gy +yT +EG +Ij +Jd +JE +Ks +KP +Ln +LQ +Iy +MK +MK +Iy +ab +NL +NS +NZ +NZ +NZ +NS +NL +vt +vt +gg +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bc +ay +gX +kp +bm +bm +bm +cn +af +af +af +af +af +af +af +af +af +af +lL +aI +aI +QY +Ra +fc +Rb +fc +Rc +Rd +aI +ab +sq +to +uj +uY +uY +ww +wY +vY +yG +zA +Av +hX +tC +zs +Bw +Bw +DQ +EM +Fv +FR +Gz +Ha +Hv +Ik +Lh +Lh +Lh +Lh +Lo +LR +Iy +MK +MK +Iy +ab +NL +NS +Oa +Os +OH +NS +NL +vt +vt +gg +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bc +gZ +ha +BK +an +dw +fc +dA +kM +jq +jq +qU +qU +aI +kt +ku +kJ +aI +mR +fq +aI +aI +aI +aI +aI +aI +aI +aI +aI +ab +sq +tp +uk +uk +uk +uk +wZ +xQ +yH +zB +Ay +xX +uK +yT +Bx +Cv +DR +Cv +Fw +Cv +GA +yT +HM +Il +Je +JF +Kt +KQ +Lq +HL +Iy +MK +MK +Iy +ab +NL +NS +Ob +Ot +OI +NS +NL +vt +vt +gg +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bc +bc +hb +hb +bc +cq +eW +kg +ks +Tp +Rz +Rz +Rz +RE +RH +RH +RH +eU +RH +iq +RO +aI +ab +ab +ab +ab +ab +ab +ab +ab +sq +tq +ul +ul +ul +ul +xa +xR +eN +fS +jJ +oh +uN +yT +BB +Cw +DS +EO +Fy +FS +GB +Ww +HN +HN +HN +JG +HN +Fz +KD +LU +Lu +Lu +Lu +Lu +Lu +NL +NS +Oc +Oe +OJ +NS +NL +vt +vt +gg +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +aI +pT +aI +ab +ab +ab +ab +ab +ab +ab +ab +sq +tr +um +uZ +xg +wx +xb +xR +eP +AH +AH +oq +AH +yT +yT +yT +yT +yT +Fz +Fz +Fz +Fz +KC +Iw +Jf +JJ +Ku +HN +Ls +LV +Mx +ML +Nj +Nu +NF +NM +NT +Od +Oe +OK +NS +NL +vt +gg +gg +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bp +cC +cI +df +dm +cC +cC +cC +cC +mu +dm +cI +cC +cC +cC +cC +dm +lQ +lV +Px +mq +be +es +RS +iV +ab +ab +ab +ab +ab +ab +ab +ab +sq +fZ +um +um +um +um +xb +xR +eP +AH +jO +ou +wf +zC +AH +Cx +DT +EP +Fz +GT +GD +Uj +HP +Ix +Jg +JP +Kv +HN +Lt +LW +My +MM +Jk +Nv +NG +NM +NT +Oe +Oe +OL +NS +NL +gg +gg +gg +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bX +cD +cJ +dh +dv +dv +dv +dv +dv +dh +dv +cJ +dv +dv +dv +dv +dv +dh +cJ +mr +nz +be +Sr +RS +iV +ab +ab +ab +ab +ab +ab +ab +ab +sq +ts +um +va +vP +wy +xb +xR +eQ +AH +AH +AH +AH +zD +oq +zD +ou +EQ +Fz +FU +Yb +Yb +Yb +Yb +Yb +JQ +Zs +Fz +Lu +LX +Lu +Lu +Lu +Lu +Lu +NL +NU +Of +Oe +OM +NU +NL +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(76,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bY +cE +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +XE +Zd +dj +dj +cK +ms +Oz +be +mV +RS +iV +iV +iV +iV +iV +iV +iV +iV +iV +iV +sq +wL +va +vQ +wy +xb +xR +eR +AH +tU +xV +AH +wf +BD +BD +BD +BD +Fz +FV +XM +Hb +Yb +Yb +Jh +JQ +Kw +Fz +Lv +LY +AH +ab +ab +ab +ab +NL +NS +Og +Oe +ON +NS +NL +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(77,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +kS +cE +cK +cK +dj +dj +Wx +dj +Wx +dj +Wx +dj +dj +dj +Zy +WG +dj +XA +un +ms +Oz +be +nx +RT +dT +Se +op +dT +dT +pU +qo +qW +rF +sr +sq +sq +sq +sq +sq +vv +xS +fF +AH +jV +yP +AH +Ai +BD +Cy +DU +ES +Fz +FW +GE +Hc +HQ +Iz +Jj +JR +Kx +Fz +Lw +LY +AH +ab +ab +ab +ab +NL +NS +Oh +Oe +OO +NS +NL +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(78,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bX +cE +cK +cK +dj +Tl +ZU +dj +Vf +VE +Vw +dj +it +Wn +UJ +Xb +dj +XN +un +ms +Xq +be +or +RU +qb +Sf +iV +iV +iV +iV +iV +iV +rG +ss +iV +uo +vb +vR +wz +xd +xT +fQ +AH +ub +zE +AH +Aj +BD +Cz +DW +ET +Fz +FX +GS +Hd +HR +IA +Fi +JS +Ky +Fz +Lx +LY +AH +ab +ab +ab +ab +NL +NS +Oi +Ou +Oi +NS +NL +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bX +cE +cK +fh +dj +dW +UB +dj +UE +Wg +Um +dj +iK +jY +iW +WS +dj +XN +un +ms +Xq +be +os +oV +RY +Sv +iV +oO +ps +pV +qp +qX +rH +st +eL +up +vc +vS +SH +xe +xU +yO +AH +AH +AG +AH +Ak +BD +CB +BD +EU +Fz +Fz +Fz +Fz +Fz +Fz +Fz +Fz +Fz +Fz +Ly +LZ +AH +ab +ab +ab +ab +NL +NV +NS +Ow +NS +NV +NL +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bX +cE +cK +VB +dy +dY +Tu +Vi +Wo +Wg +YI +dj +VU +Zk +WR +ZT +iX +ZD +cK +ms +Ul +be +oS +oS +Qz +Sg +iV +oP +pt +nx +qq +iV +rI +su +iV +uq +vd +vT +SH +xf +rl +sX +tg +vp +BI +BH +BH +Wm +CC +DX +EV +FA +FA +FA +He +HS +HS +Jl +JT +HS +HS +HS +Ma +AH +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bX +cE +dj +dj +dj +dj +ZL +dj +Us +fi +Vm +dj +Xa +jZ +WR +Xo +XN +un +cK +ms +Xq +be +be +be +be +Sg +iV +oQ +pu +pW +qr +qr +qr +qr +qr +qr +qr +qr +qr +Qi +xR +yQ +zF +zL +zL +zL +zL +zL +JY +DY +GC +GC +Wb +GC +AH +AH +AH +AH +JU +Kz +KR +Lz +Mb +AH +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +cs +cF +VB +Vu +dC +ea +fj +ea +UE +fj +Ys +ea +iW +ka +WR +UK +iY +dj +cK +ms +mq +Ox +Ox +Ox +be +Sh +iV +oR +pv +pX +qs +qY +rJ +zb +tu +ur +ve +vU +wA +fa +xR +yQ +zG +zL +Xh +Ua +VF +zL +Dd +DZ +EW +FB +IO +GC +ab +ab +ab +AH +AH +AH +AH +AH +AH +AH +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bY +cE +VB +XZ +dD +eb +ex +TT +Ti +Ym +Uz +Za +SO +Zo +Xi +dB +dZ +Tc +cK +ms +VX +Ox +Ox +Sp +be +Sw +iV +iV +pw +pt +qr +qr +qr +sv +tv +us +qr +qr +wB +xi +xW +yQ +zH +zL +Zp +CA +Zi +zL +De +Ea +GC +FC +IP +GC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +cA +cG +VB +WD +dE +dj +TY +dj +dj +fx +dj +dj +iX +kb +ZW +lq +Xr +dj +cK +ms +mq +Qb +Ox +Ox +be +Si +gJ +iV +px +pt +qr +yY +rK +sw +sw +sw +vf +vV +wC +xj +xX +yQ +zI +zL +Zp +CA +Zn +zL +Di +Eb +EX +FD +FY +GC +Fj +Fj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bX +cE +dj +dj +dj +dj +ZL +dj +Wd +UL +Vg +fV +iY +ea +kx +dj +XN +un +cK +ms +mq +be +be +be +be +Rx +gJ +iV +py +pY +qt +ra +rL +sx +tw +ut +vg +vW +wD +xk +xY +AK +zJ +zL +Ep +Vl +TU +zL +zL +Ec +Fj +Fj +Fj +Fj +Nn +Fj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bX +cE +cK +VB +Tq +ec +Xk +dj +fg +Yg +VD +gL +ZD +UU +ky +Yj +Rv +XC +cK +ms +nz +be +RQ +gK +QX +Rx +gJ +iV +iV +iV +qr +qr +nG +sy +tx +uu +vh +vX +KT +xl +xZ +yS +zK +Yf +CD +CD +ZV +AI +zL +Ed +GF +JH +Im +IR +MN +Fj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bX +cE +cK +fh +dj +eg +Xl +dj +di +VR +UW +gM +dj +kj +kQ +TG +dj +XN +un +ms +mq +be +oU +RV +RZ +Rx +gJ +gJ +gJ +gJ +gJ +qr +rN +sz +ty +uv +vi +rY +wD +xm +ya +yS +zK +AJ +BM +CD +ZV +Qd +zL +Ee +EY +FF +KU +MD +Nx +Fj +ab +ab +ab +ab +WE +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bX +cE +cK +cK +dj +UO +Xp +dj +UM +TJ +ZX +hc +dj +kk +kR +Vd +dj +XN +un +ms +QL +be +oU +RW +gK +Si +Rt +aF +eM +hs +gJ +qr +rO +sA +qr +uw +uw +uw +qr +he +ht +hO +zL +xP +BN +CE +Dv +Eq +zL +Ga +GH +Hw +Lb +IS +JI +Fj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +kS +cE +cK +cK +dj +Xc +dj +dj +dj +SQ +dj +UR +VQ +Ws +ZE +ZB +dj +XB +un +ms +Sq +be +gK +RX +Sb +Si +Rt +ib +Sl +ib +gJ +qu +rP +sB +qu +ux +vj +vj +sE +xn +yb +yU +zM +AL +BO +CF +Dw +Er +zK +Gb +XO +Hx +LA +GG +Hg +Fj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bY +cE +cK +cK +cK +Yw +cK +cK +cK +cK +cK +Uf +Uf +cK +cK +cK +dj +dj +cK +ms +mq +be +be +be +be +Sx +gy +Sn +Sl +ib +gJ +qu +rQ +sC +qu +uy +vk +vk +wG +vk +ya +yV +zK +AM +BP +CG +CD +Es +zK +Cg +GJ +Hy +Mc +IT +JK +Fj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bX +cH +db +dk +dF +YD +dF +dF +dF +db +dF +dk +dF +dF +dF +dF +dF +dk +db +mt +nz +be +wE +QK +be +Si +gJ +gJ +gJ +ib +gJ +qu +rR +sD +tz +uz +vl +vl +wH +vl +xZ +AO +zN +AN +zL +CH +zK +zK +zL +Fj +Fj +Hz +Me +Fj +JL +Fj +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +cB +cC +dc +dl +dH +bL +Wk +Wk +Wk +Nk +VI +YQ +SK +Wk +Wk +Wk +VI +YQ +lW +PZ +nB +Ro +PP +Rp +be +Si +gJ +gJ +gJ +sH +wb +wJ +xq +pl +tA +uA +vk +vk +wI +vk +ya +yX +zO +SD +Qg +CI +Dx +Fk +Gd +GK +Qh +HA +Mg +EF +oK +zO +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +be +Qt +Qt +be +Si +gJ +pZ +sH +vo +gJ +qu +ye +sF +qu +uB +vm +vZ +vZ +xo +yc +NQ +zO +AP +BR +CJ +Dy +BU +BU +BU +GL +HB +Mz +Sy +JN +zO +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +bV +cy +lt +dV +Rw +kV +RA +RC +RD +Pk +RA +RA +RG +Qm +Ry +RR +Ss +Sd +Si +Sk +rU +uC +gJ +gJ +qu +yZ +sG +tB +rZ +vn +wa +wa +xp +yd +qu +qu +AQ +BR +CJ +Dz +Eu +Eu +Eu +GM +HB +Mz +BU +JO +zO +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +eI +fp +mT +dx +nh +dV +fy +fy +fy +dV +eI +RJ +RK +RM +RF +RA +RA +RA +nb +rT +rV +gJ +gJ +qu +qu +zP +AR +BS +CK +DA +Ev +Fl +FE +GI +xc +HC +In +Io +Ip +Iq +Ir +Is +Ir +It +KS +MA +IV +zO +zO +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +eI +gK +oT +dV +Rx +fy +fy +du +fy +fy +RI +gK +fp +RN +eI +nV +pZ +iJ +rS +Sm +gJ +gJ +gJ +qu +rb +rW +sI +tD +uD +CL +uD +uD +xr +yf +za +zQ +AS +BT +Et +BT +Ew +Ew +Ew +Ew +HD +BU +IW +zO +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +lo +eI +pA +fy +hy +fy +is +kT +is +fy +fy +fy +fP +fP +fP +fP +fP +fP +gJ +gJ +gJ +gJ +gJ +qu +rc +rX +sJ +tE +sJ +vq +wc +sJ +xs +yg +Qc +qu +AT +BU +CM +BU +BU +BU +BU +BU +HE +Iu +GR +zO +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +eI +eI +pZ +fy +hz +js +jt +kU +jt +js +is +fy +ny +nC +OX +VM +VM +fP +gJ +gJ +gJ +gJ +gJ +qu +qu +qZ +rX +sJ +sJ +vq +sJ +sJ +EI +Fx +zc +zR +AU +BU +BU +BU +Eu +Eu +Eu +Eu +BU +Iu +IX +zO +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +gK +gK +eI +fy +em +jt +kl +kX +lr +lM +lR +fy +mw +pz +OZ +VM +VM +fP +gJ +gJ +gJ +gJ +gJ +Ru +qu +rZ +sK +tF +uE +vr +wd +wK +xt +yh +zd +zR +AV +BU +CN +DB +Ex +BU +CN +GO +GO +Iv +GR +zO +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +Rt +Rt +Rt +fy +ia +jD +jD +lk +jD +lN +lS +fy +mY +qa +Pc +Qw +QS +fP +gJ +gJ +gJ +gJ +gJ +gJ +ab +qu +qu +qu +qu +qu +qu +qu +qu +qu +qu +qu +AW +OY +CO +DC +Ey +BL +Ge +GP +HF +Qe +IY +zO +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +eI +fE +eI +fy +ic +jD +km +ll +jD +lO +lT +lX +mZ +Nw +Pe +QI +Pr +fP +gJ +gJ +gJ +gJ +gJ +gJ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +zO +AX +AX +CP +DD +Ez +CP +Ez +GQ +CP +AX +AX +zO +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +eS +id +Rr +fy +ie +jD +jD +lk +jD +lN +fU +fy +na +qa +Ph +QJ +Rm +fP +gJ +gJ +gJ +gJ +gJ +gJ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +CQ +DC +BU +CP +BU +GR +HG +aa +aa +ae +ae +aa +aa +ae +ab +ab +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +dV +dV +dV +fy +ir +jP +jP +lm +ls +lP +jt +fy +nd +NO +PC +VM +VM +fP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +CR +DD +Ez +Fn +Ez +GQ +HH +ae +ae +ae +ae +ae +ae +ae +aa +vt +vt +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +fy +is +jQ +jt +ln +jt +jQ +is +fy +yW +Ov +PF +VM +VM +fP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +vt +vt +vt +vt +vt +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +ae +ae +aa +aa +aa +aa +aa +vt +vt +vt +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +fy +fy +fy +is +lp +is +fy +fy +fy +fP +fP +fP +fP +fP +fP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +ae +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +ae +aa +aa +aa +aa +aa +aa +vt +vt +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +fy +fy +kK +fy +fy +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +ae +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +ae +aa +aa +aa +aa +aa +aa +aa +vt +vt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +fy +fy +fy +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +ae +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +ae +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(111,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(112,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +lY +lY +lY +lY +lY +lY +lY +lY +lY +lY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(113,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +lY +lY +lY +lY +lY +lY +lY +lY +lY +lY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(114,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +lY +lY +lY +lY +lY +lY +lY +lY +lY +lY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(115,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +lY +lY +lY +lY +lY +lY +lY +lY +lY +lY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(116,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +lY +lY +lY +lY +lY +lY +lY +lY +lY +lY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(117,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(118,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(119,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(120,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(121,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(129,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(130,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(131,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(132,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(133,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(134,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(135,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(136,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(137,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(138,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(139,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(140,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/space/pois/derelict.dmm b/maps/tether/submaps/space/pois/derelict.dmm index 3e4bc52835..1c06b2c694 100644 --- a/maps/tether/submaps/space/pois/derelict.dmm +++ b/maps/tether/submaps/space/pois/derelict.dmm @@ -224,23 +224,16 @@ /turf/simulated/floor/tiled/steel_dirty, /area/tether_away/debrisfield/derelict/interior) "aI" = ( -/turf/simulated/floor/tiled/monofloor, +/obj/structure/old_roboprinter, +/turf/simulated/floor/tiled/monotile, /area/tether_away/debrisfield/derelict/interior) "aJ" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled/monofloor, +/obj/structure/shuttle/engine/heater, +/turf/simulated/floor/reinforced/airless, /area/tether_away/debrisfield/derelict/interior) "aK" = ( /turf/space, /area/tether_away/debrisfield/derelict) -"aL" = ( -/obj/structure/old_roboprinter, -/turf/simulated/floor/tiled/monofloor, -/area/tether_away/debrisfield/derelict/interior) -"aM" = ( -/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, -/turf/simulated/floor/tiled/monofloor, -/area/tether_away/debrisfield/derelict/interior) "aN" = ( /obj/random/humanoidremains, /obj/structure/cable{ @@ -493,7 +486,7 @@ /turf/simulated/floor/tiled/steel_grid, /area/tether_away/debrisfield/derelict/interior) "bD" = ( -/obj/machinery/auto_cloner, +/obj/structure/loot_pile/surface/alien/engineering, /turf/simulated/floor/tiled/steel_ridged, /area/tether_away/debrisfield/derelict/interior) "bE" = ( @@ -900,10 +893,6 @@ /obj/item/weapon/gun/energy/ionrifle, /turf/space, /area/tether_away/debrisfield/derelict/interior) -"cL" = ( -/obj/structure/shuttle/engine/heater, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/derelict/interior) "cM" = ( /obj/structure/prop/alien/pod, /turf/simulated/floor/tiled/dark, @@ -921,9 +910,9 @@ /turf/simulated/floor/tiled/dark, /area/tether_away/debrisfield/derelict/ai_access_port) "cP" = ( -/obj/structure/ghost_pod/manual/lost_drone, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/derelict/ai_access_port) +/obj/structure/loot_pile/surface/alien/medical, +/turf/simulated/floor/tiled/steel_ridged, +/area/tether_away/debrisfield/derelict/interior) "cQ" = ( /obj/item/weapon/grenade/empgrenade, /obj/item/weapon/grenade/empgrenade, @@ -1140,6 +1129,10 @@ /obj/structure/prop/fake_ai, /turf/simulated/floor/greengrid, /area/tether_away/debrisfield/derelict/ai_chamber) +"dx" = ( +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict/ai_access_port) (1,1,1) = {" bR @@ -1346,8 +1339,8 @@ bi bi bi bi -cL -av +ao +aJ cS cB aa @@ -1421,8 +1414,8 @@ av av bi bi -cL -av +ao +aJ cS aa aa @@ -1495,8 +1488,8 @@ bi av bi bi -cL -av +ao +aJ cS aa aa @@ -1568,8 +1561,8 @@ bi bi bi bi -cL -av +ao +aJ cS cB aa @@ -2191,9 +2184,9 @@ at at aF aF -aI -aI -aI +at +at +at ao aa aa @@ -2267,7 +2260,7 @@ aF aF av av -aI +at ao aa aa @@ -2340,8 +2333,8 @@ av aF aF av -aI -aI +at +at ao aa aa @@ -2414,8 +2407,8 @@ av aF aF av -aJ -aM +au +az ao aa aa @@ -2456,7 +2449,7 @@ av cC bb cH -cP +dx cH cT cT @@ -3228,8 +3221,8 @@ av aF aF av -aL -aL +aI +aI ao aa aa @@ -3302,8 +3295,8 @@ av aF aF av -aI -aI +at +at ao aa aa @@ -3376,8 +3369,8 @@ av aF aF av -aM -aM +az +az ao aa aa @@ -3449,9 +3442,9 @@ at at aF aF -aI -aI -aI +at +at +at ao aa aa @@ -3621,8 +3614,8 @@ bk bk bv av -bb bD +cP av bN aw @@ -4158,8 +4151,8 @@ av bi bi bi -cL -av +ao +aJ cS cB aa @@ -4233,8 +4226,8 @@ bi av bi bi -cL -av +ao +aJ cS aa aa @@ -4307,8 +4300,8 @@ bi av bi bi -cL -av +ao +aJ cS aa aa @@ -4380,8 +4373,8 @@ bi bi av bi -cL -av +ao +aJ cS cB aa diff --git a/maps/tether/submaps/underdark_pois/wolf_den.dmm b/maps/tether/submaps/underdark_pois/wolf_den.dmm index c342641c76..59b5e79aec 100644 --- a/maps/tether/submaps/underdark_pois/wolf_den.dmm +++ b/maps/tether/submaps/underdark_pois/wolf_den.dmm @@ -58,7 +58,7 @@ /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, /area/mine/explored/underdark) "o" = ( -/obj/item/weapon/archaeological_find, +/obj/random/multiple/underdark, /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, /area/mine/explored/underdark) diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index 199d82b561..02a2d0fac0 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -758,9 +758,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 6 }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, +/obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled{ icon_state = "monotile" }, @@ -2939,23 +2937,24 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "aeT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ - dir = 4 + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, /obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, -/obj/machinery/camera/network/tether{ - dir = 9 +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "aeU" = ( @@ -6249,12 +6248,17 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "ale" = ( @@ -6266,22 +6270,35 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "alf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, /turf/simulated/floor/tiled, @@ -6402,27 +6419,6 @@ /turf/simulated/floor/tiled/monofloor, /area/tether/surfacebase/public_garden_one) "alo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -6440,9 +6436,15 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) -"alq" = ( +"alp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -6463,9 +6465,15 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) -"alr" = ( +"alq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -6487,6 +6495,27 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "als" = ( @@ -6579,11 +6608,28 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_one) "alB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ - dir = 8 + dir = 4 }, /obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) @@ -6761,6 +6807,12 @@ icon_state = "tube1"; dir = 8 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "alQ" = ( @@ -6778,6 +6830,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "alR" = ( @@ -6987,6 +7045,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "amk" = ( @@ -7225,6 +7289,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "amE" = ( @@ -7386,6 +7456,12 @@ dir = 8; pixel_x = -26 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "amT" = ( @@ -7408,6 +7484,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "amU" = ( @@ -7455,6 +7537,12 @@ d2 = 4; icon_state = "0-4" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "amY" = ( @@ -7477,6 +7565,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "amZ" = ( @@ -7498,6 +7592,12 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "anb" = ( @@ -7517,6 +7617,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "anc" = ( @@ -7582,6 +7688,12 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner2{ dir = 10 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "anh" = ( @@ -7605,6 +7717,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "ani" = ( @@ -7796,13 +7914,8 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "any" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/lower/first_west) @@ -9515,6 +9628,9 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, /turf/simulated/floor/tiled, /area/storage/surface_eva) "aqr" = ( @@ -12253,25 +12369,19 @@ /turf/simulated/floor/tiled, /area/rnd/hallway) "auZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/alarm{ - pixel_y = 22; - target_temperature = 293.15 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 }, /turf/simulated/floor/tiled, -/area/rnd/hallway) +/area/hallway/lower/first_west) "ava" = ( /obj/machinery/door/airlock/research{ id_tag = "researchdoor"; @@ -13045,6 +13155,12 @@ dir = 1 }, /obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/checkpoint) "awb" = ( @@ -13555,6 +13671,7 @@ pixel_x = 24 }, /obj/structure/table/glass, +/obj/item/weapon/folder/red, /turf/simulated/floor/tiled, /area/security/checkpoint) "awR" = ( @@ -15034,10 +15151,6 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16419,12 +16532,6 @@ dir = 1 }, /obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17508,23 +17615,19 @@ /turf/simulated/floor/plating, /area/vacant/vacant_site/east) "aCL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/effect/floor_decal/borderfloor{ - dir = 9 + dir = 1 }, /obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aCM" = ( @@ -17538,16 +17641,22 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aCN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aCO" = ( @@ -17829,39 +17938,22 @@ /turf/simulated/floor/tiled, /area/crew_quarters/locker/laundry_arrival) "aDr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ +/obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/alarm{ + pixel_y = 22; + target_temperature = 293.15 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) +/area/rnd/hallway) "aDs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -17878,31 +17970,25 @@ /area/tether/surfacebase/surface_one_hall) "aDt" = ( /obj/effect/floor_decal/borderfloor{ - dir = 4 + dir = 9 }, /obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 + dir = 9 }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 + dir = 1 }, /obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atm{ - pixel_x = 32 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aDu" = ( @@ -18156,17 +18242,20 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aDW" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) @@ -18987,30 +19076,36 @@ dir = 8 }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 }, /obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 + dir = 10 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 }, -/obj/structure/disposalpipe/junction{ - dir = 1 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, /obj/structure/cable/green{ d1 = 2; d2 = 4; icon_state = "2-4" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aFu" = ( @@ -19319,24 +19414,31 @@ /area/maintenance/lower/research) "aFO" = ( /obj/effect/floor_decal/borderfloor{ - dir = 8 + dir = 4 }, /obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 + dir = 4 }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atm{ + pixel_x = 32 }, -/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aFP" = ( @@ -19347,10 +19449,16 @@ dir = 4 }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 + dir = 5 }, /obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) @@ -19895,6 +20003,51 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aGw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -19903,15 +20056,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/computer/timeclock/premade/west, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aGw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) @@ -20443,19 +20592,23 @@ /turf/simulated/floor/plating, /area/vacant/vacant_site/east) "aHk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ - dir = 8 + dir = 4 }, /obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) @@ -20666,11 +20819,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 +/obj/machinery/computer/timeclock/premade/west, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) @@ -21546,10 +21700,11 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 4 }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) @@ -21908,32 +22063,25 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ dir = 8 }, /obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) @@ -21956,20 +22104,30 @@ /area/tether/surfacebase/surface_one_hall) "aJU" = ( /obj/effect/floor_decal/borderfloor{ - dir = 4 + dir = 8 }, /obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 + dir = 8 }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 + dir = 10 }, /obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) @@ -22375,18 +22533,22 @@ /area/tether/surfacebase/surface_one_hall) "aKG" = ( /obj/effect/floor_decal/borderfloor{ - dir = 10 + dir = 4 }, /obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 10 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aKH" = ( @@ -22403,8 +22565,39 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aKI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "aKJ" = ( @@ -22884,12 +23077,14 @@ /turf/simulated/floor/tiled, /area/engineering/atmos) "aLK" = ( -/obj/machinery/camera/network/engineering{ +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner, /turf/simulated/floor/tiled, -/area/engineering/atmos) +/area/tether/surfacebase/tram) "aLL" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -22933,36 +23128,13 @@ /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_7) "aLP" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/camera/network/engineering{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, /turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) +/area/engineering/atmos) "aLQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -23062,28 +23234,24 @@ /turf/simulated/floor/tiled/techmaint, /area/rnd/external) "aLZ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, /turf/simulated/floor/tiled, -/area/rnd/external) +/area/tether/surfacebase/surface_one_hall) "aMa" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 6 @@ -23124,17 +23292,24 @@ /turf/simulated/floor/tiled, /area/rnd/external) "aMc" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 10 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "rnd_s_airlock_pump" +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/rnd/external) +/area/tether/surfacebase/surface_one_hall) "aMd" = ( /obj/structure/grille, /obj/structure/railing{ @@ -24065,20 +24240,13 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_lodging) "aNR" = ( @@ -24652,12 +24820,37 @@ /turf/simulated/floor/plating, /area/engineering/atmos/processing) "aOT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central6{ - icon_state = "steel_decals_central6"; +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/tether{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/engineering/atmos) +/area/crew_quarters/visitor_lodging) "aOU" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -26579,29 +26772,11 @@ /turf/simulated/floor/tiled, /area/crew_quarters/visitor_lodging) "aSn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/atmospherics/binary/pump{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) +/area/engineering/atmos) "aSo" = ( /turf/simulated/wall, /area/crew_quarters/sleep/Dorm_2) @@ -28184,19 +28359,28 @@ /turf/simulated/floor/tiled, /area/crew_quarters/showers) "aVv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner/white/border{ dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "0-8" }, /turf/simulated/floor/tiled, -/area/crew_quarters/showers) +/area/crew_quarters/visitor_lodging) "aVw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -28216,34 +28400,23 @@ /turf/simulated/floor/tiled, /area/crew_quarters/showers) "aVx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; + d1 = 4; d2 = 8; - icon_state = "1-8" + icon_state = "4-8" }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) +/area/crew_quarters/showers) "aVy" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 5 @@ -28976,13 +29149,40 @@ /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aWW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/vending/wallmed1/public{ - pixel_y = -28 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) +/area/crew_quarters/visitor_lodging) "aWX" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/grey/border, @@ -31125,32 +31325,38 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "bbn" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "bbo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 }, -/obj/machinery/light{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) +/area/rnd/external) "bbp" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -32030,6 +32236,29 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) +"bcT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcU" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "rnd_s_airlock_pump" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/external) "cGJ" = ( /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) @@ -37388,7 +37617,7 @@ ags agt auh auE -auZ +aDr avG ahT auK @@ -37696,7 +37925,7 @@ aBv aBv aKL aLo -aLZ +bbo aKL aNv aoq @@ -38122,7 +38351,7 @@ aJt awn aKL aLr -aMc +bcU aKL aNx aoq @@ -38354,8 +38583,8 @@ aki akz akG akR -ald -alo +aeT +alf akR akR akR @@ -38496,8 +38725,8 @@ ajM ajM akH akS -ale -alp +ald +alo akR akR ami @@ -38638,18 +38867,18 @@ aks ajL akI akR -alf -alq -alB +ale +alp +alr alP -alB -alB +alr +alr amS amX ana ang ans -anx +any anP ajv aoF @@ -38781,8 +39010,8 @@ aks akJ akT alg -alr -aeT +alq +alB alQ amj amD @@ -38791,7 +39020,7 @@ amY anb anh ant -any +auZ acT adj aoG @@ -41535,7 +41764,7 @@ aMR aNC aNW aOx -aOT +aJI aPt aJI aJI @@ -41825,7 +42054,7 @@ aJI aJI aQy aRF -aMq +aSn aSF aTl aIh @@ -44511,7 +44740,7 @@ aHC aIh aKy aLe -aLK +aLP aMv aNf aNM @@ -44897,7 +45126,7 @@ baY bby bbD bbW -bbn +aCL anW aoj aoS @@ -45039,7 +45268,7 @@ amz bbz bbV amc -bbo +aCN anW aoj aoS @@ -46234,7 +46463,7 @@ aSi aUj aUM aVa -aVv +aVx aVM aWk aWJ @@ -46343,19 +46572,19 @@ azd aAk aBh agM -aCL -aDr +aDt +aFt aDU aEG -aFt -aFO aGv -aHk +aGw aHF +aJS +aJU aIq aJj -aJS -aKG +aKI +aMc aLg aLg aLg @@ -46499,10 +46728,10 @@ aJk aJT aKH aLh -aLP +aNQ aMA aNl -aNQ +aOT aOn aOI aPb @@ -46518,7 +46747,7 @@ aTU aUk aUN aVb -aVx +aWW aVN aWl aWK @@ -46627,19 +46856,19 @@ azf ayL aBj aBX -aCN -aDt aDW +aFO +aFP aEH aFv -aFP -aGw -aGw -aGw -aGw +aHk aJl -aJU -aKI +aJl +aJl +aJl +aKG +aLZ +bbn aLi aLQ aMB @@ -46653,7 +46882,7 @@ aQg aQJ aNm aRO -aSn +aVv aOJ aNm aTV @@ -47090,7 +47319,7 @@ aVA aVQ aUP aUP -aWW +bcT aVn aVn aYi @@ -47911,7 +48140,7 @@ aEb auB aFE aFU -auB +aLK act aDu aIx diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index 1915d55f54..e84f70d1eb 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -14162,8 +14162,11 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + name = "Drone Fabrication"; + sortType = "Drone Fabrication" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -14648,6 +14651,7 @@ req_access = list(24) }, /obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) "aAW" = ( @@ -15009,12 +15013,14 @@ icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) "aBC" = ( @@ -15025,12 +15031,13 @@ icon_state = "warningcorner"; dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/machinery/light/small{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) "aBD" = ( @@ -15293,8 +15300,8 @@ icon_state = "warning"; dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) "aCb" = ( @@ -15511,7 +15518,7 @@ icon_state = "warning"; dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) "aCB" = ( @@ -15794,13 +15801,14 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) "aDc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) "aDd" = ( @@ -15995,6 +16003,7 @@ /area/engineering/drone_fabrication) "aDv" = ( /obj/effect/decal/cleanable/blood/oil, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) "aDw" = ( @@ -16122,10 +16131,15 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) "aDK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) "aDL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) "aDM" = ( @@ -16195,39 +16209,30 @@ icon_state = "warning"; dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/cryopod/robot, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"aDW" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/computer/cryopod/robot{ pixel_y = -32 }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aDX" = ( +"aDW" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/machinery/light/small{ dir = 4 }, /obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) +"aDX" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) "aDY" = ( /obj/structure/railing{ dir = 8 @@ -17643,18 +17648,20 @@ /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/research{ + name = "Slime Pen 1"; + req_access = list(); + req_one_access = list(47,55) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobiopen1"; + name = "Pen 1 Blast Doors"; + opacity = 0 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHf" = ( /obj/structure/railing{ @@ -17762,11 +17769,26 @@ /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/reinforced, +/obj/machinery/hologram/holopad, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/research{ + name = "Slime Pen 2"; + req_access = list(); + req_one_access = list(47,55) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobiopen2"; + name = "Pen 2 Blast Doors"; + opacity = 0 + }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHw" = ( @@ -17794,27 +17816,8 @@ /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHx" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Slime Pen 1"; - req_access = list(); - req_one_access = list(47,55) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobiopen1"; - name = "Pen 1 Blast Doors"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHy" = ( /obj/machinery/processor, @@ -17978,54 +17981,36 @@ /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/turf/simulated/floor/reinforced, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobiopen3"; + name = "Pen 3 Blast Doors"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 3"; + req_access = list(55) }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHT" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Slime Pen 2"; - req_access = list(); - req_one_access = list(47,55) +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Slime Pen 3"; + req_access = list(55) }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobiopen2"; - name = "Pen 2 Blast Doors"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + icon_state = "intact-supply"; + dir = 5 }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHV" = ( /obj/machinery/power/apc{ @@ -18040,52 +18025,38 @@ /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) "aHW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/hologram/holopad, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aHX" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobiopen3"; - name = "Pen 3 Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 3"; - req_access = list(55) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"aHY" = ( +"aHX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aHY" = ( +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 4"; + req_access = list(55) }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobiopen4"; + name = "Pen 4 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Slime Pen 4"; + req_access = list(55) }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) @@ -18334,10 +18305,8 @@ /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) "aID" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/white, +/obj/machinery/door/firedoor/glass/hidden, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aIE" = ( /obj/machinery/disposal, @@ -18561,9 +18530,9 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aJb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/steel, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aJc" = ( @@ -19273,32 +19242,29 @@ /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aKk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobiopen5"; + name = "Pen 5 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 5"; + req_access = list(55) }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aKl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aKm" = ( /obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 3"; + name = "Slime Pen 5"; req_access = list(55) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aKm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aKn" = ( @@ -19311,74 +19277,78 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) "aKo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 6"; + req_access = list(55) }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aKp" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aKq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobiopen6"; + name = "Pen 6 Blast Doors"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aKr" = ( -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 4"; +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Slime Pen 6"; req_access = list(55) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aKq" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobiopen7"; + name = "Pen 7 Blast Doors"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 7"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aKr" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Slime Pen 7"; + req_access = list(55) }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aKs" = ( +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 8"; + req_access = list(55) + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aKt" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; - id = "xenobiopen4"; - name = "Pen 4 Blast Doors"; + id = "xenobiopen8"; + name = "Pen 8 Blast Doors"; opacity = 0 }, /obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 4"; + name = "Slime Pen 8"; req_access = list(55) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aKt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aKu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/turf/simulated/floor/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aKv" = ( /turf/simulated/wall, @@ -19644,16 +19614,22 @@ /turf/simulated/floor/plating, /area/tcommsat/chamber) "aKW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aKX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aKY" = ( /obj/machinery/door/blast/regular{ @@ -20356,47 +20332,40 @@ /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aMh" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobiopen5"; - name = "Pen 5 Blast Doors"; - opacity = 0 +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access = list(); + req_one_access = list(47,55) }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 5"; - req_access = list(55) +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aMi" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 5"; - req_access = list(55) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access = list(); + req_one_access = list(47,55) }, +/obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aMj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) @@ -20411,39 +20380,30 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aMl" = ( -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 6"; - req_access = list(55) +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aMm" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobiopen6"; - name = "Pen 6 Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 6"; - req_access = list(55) +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, +/obj/machinery/camera/network/research/xenobio, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aMn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21052,74 +21012,44 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aNv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aNw" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; - id = "xenobiopen7"; - name = "Pen 7 Blast Doors"; + id = "xenobiopen9"; + name = "Pen 9 Blast Doors"; opacity = 0 }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 7"; - req_access = list(55) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/airlock/research{ + id_tag = "phoroncelldoor9"; + name = "Slime Pen 9"; + req_access = list(); + req_one_access = list(47,55) }, +/obj/machinery/door/firedoor, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"aNw" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 7"; - req_access = list(55) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "aNx" = ( -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 8"; - req_access = list(55) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aNy" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobiopen8"; - name = "Pen 8 Blast Doors"; - opacity = 0 +/obj/structure/stairs/north, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 8"; - req_access = list(55) +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 +/obj/structure/window/basic{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aNz" = ( /turf/simulated/wall, @@ -21305,10 +21235,15 @@ }, /area/tcommsat/chamber) "aNS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/stairs/north, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 }, -/turf/simulated/floor/reinforced, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aNT" = ( /obj/structure/grille, @@ -21339,13 +21274,19 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aNV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/stairs/north, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/obj/structure/railing{ + icon_state = "railing0"; dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/structure/window/basic{ + dir = 1 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aNW" = ( /obj/structure/sign/deck/second, @@ -21478,13 +21419,7 @@ /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aOj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aOk" = ( @@ -21514,24 +21449,21 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aOl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobiopen10"; + name = "Pen 10 Blast Doors"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/airlock/research{ + id_tag = "phoroncelldoor10"; + name = "Slime Pen 10"; + req_access = list(); + req_one_access = list(47,55) }, -/obj/structure/stairs/north, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aOm" = ( /obj/structure/railing{ @@ -21568,14 +21500,6 @@ /obj/machinery/camera/network/command, /turf/simulated/floor/tiled/dark, /area/bridge_hallway) -"aOp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "aOq" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced/full, @@ -21614,42 +21538,6 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"aOt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access = list(); - req_one_access = list(47,55) - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aOu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aOv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/stairs/north, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "aOw" = ( /obj/machinery/camera/network/command{ icon_state = "camera"; @@ -21669,89 +21557,6 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"aOy" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobiopen9"; - name = "Pen 9 Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/research{ - id_tag = "phoroncelldoor9"; - name = "Slime Pen 9"; - req_access = list(); - req_one_access = list(47,55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aOz" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobiopen10"; - name = "Pen 10 Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/research{ - id_tag = "phoroncelldoor10"; - name = "Slime Pen 10"; - req_access = list(); - req_one_access = list(47,55) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aOA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aOB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/stairs/north, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aOC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access = list(); - req_one_access = list(47,55) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "aOD" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -21778,16 +21583,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"aOE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "aOF" = ( /obj/structure/railing{ dir = 8 @@ -21841,18 +21636,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"aOI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "aOJ" = ( /obj/machinery/door/blast/regular{ id = "xenobiodiv7"; @@ -21913,34 +21696,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"aOP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aOQ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/research/xenobio, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "aOR" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, @@ -21972,16 +21727,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"aOU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "aOV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -22400,15 +22145,6 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/chapel_morgue) -"aPv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "aPw" = ( /obj/machinery/recharger/wallcharger{ pixel_y = -38 @@ -22452,13 +22188,6 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"aPB" = ( -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) "aPC" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/techfloor, @@ -23011,6 +22740,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/paramed) "aQx" = ( @@ -23134,6 +22867,7 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 5 }, +/obj/machinery/recharge_station, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) "aQE" = ( @@ -24675,6 +24409,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) "aSR" = ( @@ -27806,11 +27544,13 @@ /turf/simulated/floor/carpet/sblucarpet, /area/bridge/meeting_room) "aXo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining) "aXp" = ( /obj/machinery/alarm{ dir = 8; @@ -28169,11 +27909,24 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) +"aYg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "aYh" = ( /obj/structure/table/woodentable, /obj/machinery/chemical_dispenser/bar_soft/full, /turf/simulated/floor/wood, /area/bridge/meeting_room) +"aYi" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "aYj" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -34428,8 +34181,8 @@ aHt aHt aOJ aHt -aNS -aKX +aHt +aHt aWM aHc aab @@ -34553,25 +34306,25 @@ aab aab aab aHc -aHu -aHR +aHt +aHt aHt aIY aHt -aKk -aKW +aHt +aHt aLs aHt -aKk -aKW +aHt +aHt aMP aHt -aKk -aKW +aHt +aHt aOJ aHt -aNV -aKW +aHt +aHt aOK aHc aab @@ -34695,24 +34448,24 @@ aab aab aab aHc -aHv -aHS +aHt +aHt aIz aIY aVI -aKl -aKX +aHt +aHt aLs aVI -aKl -aKX +aHt +aHt aMP aVI -aKl -aKX +aHt +aHt aHc aHc -aOy +aNw aOD aOH aHc @@ -34838,23 +34591,23 @@ aab aab aHc aHw -aHx +aHe aIA aHc aJA -aHX +aHS aKY aHc aLO -aMh +aKk aMD aHc aNk -aNv +aKq aND aHc aVn -aOj +aJa aJa aWK aWI @@ -34980,23 +34733,23 @@ aab aab aHc aHd -aHU +aIC aIB aIZ aJB -aKm +aHT aKZ aPb aJB -aMi +aKl aKZ aUJ aNl -aNw +aKr aKZ aNT -aOI -aOU +aMj +aNx aOV aWH aWJ @@ -35122,23 +34875,23 @@ aab aab aHc aHy -aHU +aIC aIC aJa -aJC -aKo -aPB +aJE +aHU +aID aJa aMQ -aMj -aPB +aJa +aID aJa aJE -aKq -aHe -aOt -aOP -aOl +aHU +aKu +aMh +aMl +aNy aOF aJa aJa @@ -35264,23 +35017,23 @@ aab aab aHc aLt +aHu +aHx +aHR +aJa aHW -aID -aJb -aJD -aKp aMf aMk aMR -aOA +aKm aMf aNU aJD -aOA -aOp +aMR +aKW aOq -aOQ -aOv +aMm +aNS aJa aJa aJa @@ -35406,23 +35159,23 @@ aab aab aHc aHA -aHU +aIC aIC aJa -aJE -aKq -aPB +aJC +aHX +aJb aJa aNu -aMj -aPB +aJa +aJb aJa aJC -aKo -aOu -aOC -aOE -aOB +aHX +aKX +aMi +aNv +aNV aOM aJa aJa @@ -35548,23 +35301,23 @@ aab aab aHc aHQ -aHU +aIC aIE aJe aJF -aKr +aHY aLa aLu aJF -aMl +aKo aLa aPd aJF -aNx +aKs aLa aNT -aJa -aPv +aKX +aOj aPA aJa aPw @@ -35690,23 +35443,23 @@ aab aab aHc aHB -aHT +aHv aIF aHc aJG -aKs +aHZ aLb aHc aLP -aMm +aKp aME aHc aNm -aNy +aKt aNE aNW aOk -aMj +aJa aJa aWL aPx @@ -35831,24 +35584,24 @@ aab aab aab aHc -aHv -aHY +aHt +aHt aIG aJd aPc -aKt -aKX +aHt +aHt aLv aPc -aKt -aKX +aHt +aHt aMS aPc -aKt -aKX +aHt +aHt aHc aHc -aOz +aOl aOG aOO aHc @@ -35973,25 +35726,25 @@ aab aab aab aHc -aHu -aHZ +aHt +aHt aHt aJd aHt -aKu -aKW +aHt +aHt aLv aHt -aKu -aKW +aHt +aHt aMT aHt -aKu -aKW +aHt +aHt aNX aHt -aKt -aKX +aHt +aHt aOK aHc aab @@ -36132,8 +35885,8 @@ aHt aHt aNX aHt -aKu -aKW +aHt +aHt aWM aHc aab @@ -39084,7 +38837,7 @@ aCz aDb aDu aDK -aDV +aDU aAT aEC aEQ @@ -39226,7 +38979,7 @@ aBZ aDc aDv aDL -aDW +aDV aAT aED aEp @@ -39368,7 +39121,7 @@ aCA aCA aCA aCa -aDX +aDW aAT aEo aEz @@ -41885,7 +41638,7 @@ apW aXL aob aXl -aXU +aYi aYz apS avq @@ -42026,7 +41779,7 @@ apl aXw aob aob -aXo +aYg aXY aqy aob @@ -42141,7 +41894,7 @@ aab aac aaf aao -aao +aDX aQa aRo aap @@ -43720,7 +43473,7 @@ acw aad aTg adf -abt +aXo adY afu afM diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 1d7885268d..78b3e6f193 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -217,7 +217,7 @@ /area/tether/surfacebase/medical/triage) "aaE" = ( /turf/simulated/wall, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aaF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -226,7 +226,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aaG" = ( /obj/item/device/radio/intercom/department/security{ dir = 4; @@ -526,7 +526,7 @@ dir = 4 }, /turf/simulated/floor/wood, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -535,7 +535,7 @@ dir = 10 }, /turf/simulated/floor/wood, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -552,14 +552,14 @@ /obj/random/contraband, /obj/random/cigarettes, /turf/simulated/floor/wood, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abo" = ( /obj/structure/bed/chair{ dir = 4 @@ -569,7 +569,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abp" = ( /obj/structure/bed/chair, /obj/machinery/alarm{ @@ -710,7 +710,7 @@ /obj/random/action_figure, /obj/random/cigarettes, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aby" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -890,7 +890,7 @@ /obj/effect/decal/cleanable/dirt, /obj/random/trash, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abP" = ( /obj/machinery/alarm{ dir = 4; @@ -900,19 +900,19 @@ }, /obj/random/junk, /turf/simulated/floor/wood, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abR" = ( /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abS" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, @@ -922,7 +922,7 @@ /obj/random/maintenance/medical, /obj/random/toy, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "abU" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -1093,7 +1093,8 @@ /obj/machinery/button/remote/airlock{ id = "ReadingRoom1"; name = "Room 1 Bolt"; - pixel_x = -30 + pixel_x = -30; + specialfunctions = 4 }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) @@ -1271,26 +1272,21 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) "acu" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/vore/aggressive/mimic, +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) +"acv" = ( /obj/structure/table/rack, /obj/random/tetheraid, /obj/random/maintenance/medical, /turf/simulated/floor/wood, -/area/vacant/vacant_site2) -"acv" = ( +/area/maintenance/lower/medsec_maintenance) +"acw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) -"acw" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 32; - d2 = 2; - icon_state = "32-2" - }, -/turf/simulated/open, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "acx" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30; @@ -1299,10 +1295,15 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) "acy" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/vore/aggressive/mimic, -/turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/turf/simulated/open, +/area/maintenance/lower/medsec_maintenance) "acz" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -1528,7 +1529,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "acN" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -1594,7 +1595,8 @@ /obj/machinery/button/remote/airlock{ id = "ReadingRoom2"; name = "Room 2 Bolt"; - pixel_x = -30 + pixel_x = -30; + specialfunctions = 4 }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) @@ -1606,7 +1608,8 @@ /obj/machinery/button/remote/airlock{ id = "ReadingRoom3"; name = "Room 3 Bolt"; - pixel_x = -30 + pixel_x = -30; + specialfunctions = 4 }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) @@ -1681,7 +1684,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "adb" = ( /obj/machinery/light_switch{ pixel_x = 25 @@ -1692,7 +1695,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "adc" = ( /obj/machinery/vending/medical, /obj/effect/floor_decal/borderfloorwhite{ @@ -1857,6 +1860,7 @@ /obj/effect/floor_decal/corner/red/bordercorner2{ dir = 8 }, +/obj/machinery/recharge_station, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) "adp" = ( @@ -1894,22 +1898,17 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) "ads" = ( +/obj/item/weapon/tool/screwdriver, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) +"adt" = ( /obj/structure/closet, /obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) -"adt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "adu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -2109,10 +2108,16 @@ /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) "adL" = ( -/obj/structure/ladder, -/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "adM" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/spray/cleaner{ @@ -2187,11 +2192,10 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) "adV" = ( -/obj/item/weapon/tool/screwdriver, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "adW" = ( /turf/simulated/wall, /area/tether/surfacebase/security/processing) @@ -2218,7 +2222,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aea" = ( /obj/structure/table/glass, /obj/machinery/light{ @@ -2403,8 +2407,12 @@ /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) "aep" = ( -/turf/simulated/wall/r_wall, -/area/vacant/vacant_site2) +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/mob/living/simple_mob/vore/aggressive/mimic, +/turf/simulated/floor/plating, +/area/maintenance/lower/medsec_maintenance) "aeq" = ( /obj/structure/table/steel, /obj/item/weapon/folder/red{ @@ -2599,7 +2607,7 @@ /obj/structure/table/steel, /obj/random/tech_supply, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aeE" = ( /obj/structure/cable/green{ d1 = 1; @@ -2614,7 +2622,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aeF" = ( /obj/structure/cable/green{ d1 = 4; @@ -2626,7 +2634,7 @@ }, /obj/random/junk, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aeG" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/lobby) @@ -2871,7 +2879,7 @@ dir = 6 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "afa" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access"; @@ -3015,11 +3023,10 @@ /area/tether/surfacebase/security/armory) "afm" = ( /obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/mob/living/simple_mob/vore/aggressive/mimic, +/obj/random/mre/dessert, +/obj/item/toy/bosunwhistle, /turf/simulated/floor/plating, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "afn" = ( /obj/structure/table/steel, /obj/item/device/camera, @@ -3468,7 +3475,7 @@ name = "Cup of Liber-tea" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "afX" = ( /obj/structure/cable/green{ d1 = 1; @@ -3482,7 +3489,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "afY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -3491,7 +3498,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "afZ" = ( /obj/effect/floor_decal/techfloor{ dir = 4 @@ -3503,7 +3510,7 @@ dir = 9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aga" = ( /obj/structure/table/glass, /obj/item/weapon/backup_implanter{ @@ -3930,10 +3937,6 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, @@ -3958,7 +3961,7 @@ /obj/random/maintenance/medical, /obj/random/tech_supply, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "agK" = ( /obj/structure/cable/green{ d1 = 1; @@ -3973,7 +3976,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "agL" = ( /obj/structure/bed/chair{ dir = 4 @@ -3988,7 +3991,7 @@ pixel_y = -28 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "agM" = ( /obj/effect/floor_decal/techfloor{ dir = 6 @@ -3997,7 +4000,7 @@ /obj/structure/table, /obj/random/tech_supply, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "agN" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -4509,7 +4512,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "ahE" = ( /obj/machinery/light/small{ dir = 4; @@ -4523,7 +4526,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "ahF" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/borderfloor{ @@ -4869,7 +4872,7 @@ dir = 10 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aid" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4880,7 +4883,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aie" = ( /obj/structure/closet, /obj/random/maintenance/medical, @@ -4888,7 +4891,7 @@ /obj/random/maintenance/medical, /obj/random/maintenance/medical, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aif" = ( /obj/effect/floor_decal/techfloor{ dir = 5 @@ -4898,7 +4901,7 @@ /obj/random/maintenance/medical, /obj/random/maintenance/medical, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aig" = ( /obj/structure/bed/chair/office/light, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -5286,14 +5289,15 @@ /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) "aiJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "aiK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, @@ -5449,6 +5453,20 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) "aiX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aiY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -5462,8 +5480,8 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) -"aiY" = ( +/area/maintenance/lower/medsec_maintenance) +"aiZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -5471,16 +5489,7 @@ dir = 10 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) -"aiZ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aja" = ( /obj/machinery/computer/crew{ dir = 4 @@ -6323,19 +6332,25 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "aks" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/computer/timeclock/premade/west, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "akt" = ( @@ -6855,31 +6870,11 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/captain) "alm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/light/small{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/machinery/computer/id_restorer{ - dir = 4; - icon_state = "restorer"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/wood, +/area/crew_quarters/captain) "aln" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, @@ -11553,28 +11548,23 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "atu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/structure/table/woodentable, +/obj/item/weapon/storage/photo_album{ + pixel_y = -10 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/wood, +/area/crew_quarters/captain) "atv" = ( /obj/structure/cable/green{ d1 = 4; @@ -12234,24 +12224,10 @@ /turf/simulated/floor/holofloor/tiled/dark, /area/tether/elevator) "auy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/carry, +/area/shuttle/tether/surface) "auz" = ( /obj/item/device/radio/intercom{ dir = 1; @@ -12702,29 +12678,20 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "avl" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/bed/chair/comfy/brown{ + dir = 8 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -26 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/wood, +/area/crew_quarters/captain) "avm" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -13000,17 +12967,20 @@ /turf/simulated/floor/tiled, /area/rnd/research) "avR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) +/turf/simulated/floor/wood, +/area/crew_quarters/captain) "avS" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/scanning_module{ @@ -13365,25 +13335,11 @@ /turf/simulated/floor/tiled/monotile, /area/rnd/research) "awz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/weapon/storage/secure/safe{ + pixel_x = -24 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) +/turf/simulated/floor/wood, +/area/crew_quarters/captain) "awA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -13769,17 +13725,32 @@ /turf/simulated/floor/tiled, /area/rnd/research) "axb" = ( +/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ - dir = 10 + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/machinery/computer/id_restorer{ + dir = 4; + icon_state = "restorer"; + pixel_x = -30 }, /turf/simulated/floor/tiled, -/area/hallway/lower/third_south) +/area/tether/surfacebase/surface_three_hall) "axc" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -14219,21 +14190,33 @@ /turf/simulated/floor/tiled, /area/rnd/research) "axK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 }, /turf/simulated/floor/tiled, -/area/hallway/lower/third_south) +/area/tether/surfacebase/surface_three_hall) "axL" = ( /obj/structure/table/standard, /obj/structure/reagent_dispensers/acid{ @@ -14307,12 +14290,32 @@ /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) "axQ" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ dir = 8; - icon_state = "pipe-c" + icon_state = "tube1" }, /turf/simulated/floor/tiled, -/area/hallway/lower/third_south) +/area/tether/surfacebase/surface_three_hall) "axR" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -15240,17 +15243,11 @@ /turf/simulated/floor/carpet, /area/tether/surfacebase/library/study) "azk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) @@ -15934,23 +15931,13 @@ /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) "aAn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, +/obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "aAo" = ( @@ -16045,19 +16032,19 @@ /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aAv" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 + dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aAw" = ( @@ -18371,17 +18358,14 @@ /turf/simulated/open, /area/tether/surfacebase/public_garden_three) "aDI" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 +/obj/effect/floor_decal/techfloor{ + dir = 4 }, -/obj/effect/floor_decal/techfloor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aDJ" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/borderfloor{ @@ -20214,50 +20198,33 @@ /turf/simulated/wall, /area/hydroponics) "aGB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aGC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lime/border{ +/obj/effect/floor_decal/corner/mauve/border{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"aGC" = ( -/obj/machinery/computer/timeclock/premade/east, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/beige/bordercorner2{ - dir = 5 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 + dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) @@ -20713,21 +20680,17 @@ /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aHl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 6 }, -/obj/machinery/station_map{ - pixel_y = 32 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) @@ -20778,29 +20741,15 @@ /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aHp" = ( -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 30 - }, /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 8 }, /obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aHq" = ( @@ -21321,24 +21270,26 @@ /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aIc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/machinery/computer/timeclock/premade/east, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 5 }, /obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) @@ -21731,17 +21682,22 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) "aIG" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/borderfloor{ dir = 1 }, /obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aIH" = ( @@ -22142,7 +22098,18 @@ /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aJr" = ( -/obj/machinery/door/firedoor, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aJs" = ( @@ -22610,14 +22577,25 @@ /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aKm" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 +/obj/machinery/newscaster{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aKn" = ( @@ -26835,15 +26813,19 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) "aSL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/effect/floor_decal/techfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/tether/surfacebase/security/lobby) "aSM" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 5 @@ -27276,19 +27258,17 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) "aTr" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, /obj/effect/floor_decal/techfloor/corner{ dir = 1 }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/techfloor, /obj/structure/cable/green{ - icon_state = "4-8" + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aTs" = ( /obj/random/maintenance/clean, /obj/random/maintenance/clean, @@ -27340,20 +27320,15 @@ /turf/simulated/floor/tiled/dark, /area/bridge) "aTw" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 8 + dir = 5 }, +/obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) +/area/maintenance/lower/medsec_maintenance) "aTx" = ( /obj/structure/window/basic/full, /obj/structure/grille, @@ -27843,10 +27818,112 @@ /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aUl" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/carry, -/area/shuttle/tether/surface) +/obj/effect/floor_decal/borderfloor, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aUm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aUn" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aUo" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/hallway/lower/third_south) +"aUp" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/hallway/lower/third_south) +"aUq" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"aUr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"aUs" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/corner, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) +"aUt" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/medsec_maintenance) "aUx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28413,17 +28490,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"aVE" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) "aVF" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -28594,21 +28660,6 @@ "aVU" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"aVV" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/corner, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) "aVW" = ( /obj/structure/bed/chair{ dir = 1 @@ -28762,13 +28813,6 @@ /obj/structure/sign/directions/evac, /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/lobby) -"aWf" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/vacant_site2) "aWg" = ( /obj/structure/sign/directions/evac{ dir = 8 @@ -29387,12 +29431,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"aXd" = ( -/obj/random/maintenance/security, -/obj/random/mre/dessert, -/obj/item/toy/bosunwhistle, -/turf/simulated/floor/plating, -/area/vacant/vacant_site2) "aXe" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -29492,29 +29530,6 @@ dir = 4 }, /area/library) -"aXm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) "aXo" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -30668,13 +30683,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aZy" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "aZz" = ( /obj/structure/bed/chair{ dir = 1 @@ -30771,27 +30779,6 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge) -"aZJ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/photo_album{ - pixel_y = -10 - }, -/obj/item/weapon/reagent_containers/food/drinks/flask{ - pixel_x = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "aZK" = ( /obj/machinery/sleep_console, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -30805,17 +30792,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aZM" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -8; - pixel_y = -26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "aZN" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ @@ -31477,12 +31453,6 @@ /obj/machinery/computer/card, /turf/simulated/floor/tiled, /area/crew_quarters/heads/hop) -"baX" = ( -/obj/machinery/firealarm{ - pixel_x = -30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "bba" = ( /turf/simulated/floor/wood, /area/crew_quarters/captain) @@ -31733,28 +31703,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"bdX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) (1,1,1) = {" aaa @@ -39325,7 +39273,7 @@ aTW agw agI aUe -aks +aiJ akT alE amt @@ -41618,16 +41566,16 @@ alP aac ats ats -auy +aJr auZ auZ avZ awF atU atU -avR -awz -axb +azk +aGB +azk atU ayn atU @@ -41767,9 +41715,9 @@ awa awG axc axR -axK -axQ -azk +aAv +aGC +aHl ayY aBR aBY @@ -42345,9 +42293,9 @@ aFt aGY aXf axg -aXm +aIG aHT -aAv +aUl aJn aJZ aKT @@ -43001,12 +42949,12 @@ aac aac aaE abO -acy +acu abS -adV +ads aaE +aep afm -aXd ahx ahX aiS @@ -43033,7 +42981,7 @@ baJ baJ baJ baJ -avl +axK aEo baH baL @@ -43152,7 +43100,7 @@ aaE ahx ahx ahx -ahx +ajT aWX aVD aXa @@ -43285,19 +43233,19 @@ aac aaE abk abP -acu +acv abS -ads +adt aaE aeD afW agJ ahD aic -aaE -aTr -aaE -aep +ajT +aSL +ajT +ajT aWe aWn ajR @@ -43308,12 +43256,12 @@ awj alj aZk aZw -aZJ +atu alj baf bar aPi -baX +awz bab bbC bbE @@ -43427,17 +43375,17 @@ aac aaF abl abQ -acv +acw acM -adt +adL adZ aeE afX agK ahE aid -aiX -aDI +aiY +aTr aaE ahd ahS @@ -43578,8 +43526,8 @@ afY agL aaE aie -aiY -aSL +aiZ +aTw aaE aaE aaE @@ -43591,10 +43539,10 @@ awi awl alj aZm -aZy -aZM +alm +avl alj -aiJ +avR bat baG bba @@ -43711,20 +43659,20 @@ aac aaF abn abS -acw +acy adb -adL +adV aaE aeZ afZ agM aaE aif -aiZ -aTw -aVE -aVV -aWf +aDI +aUq +aUr +aUs +aUt aWA aWL aNp @@ -44333,9 +44281,9 @@ aCQ azn aFX aAB -aHl +aJr aHY -aIG +aUm ats aKf aKf @@ -45327,9 +45275,9 @@ aCR ayc aGd awP -aHp +aKm aAx -aIc +aUn aJn aAN aAN @@ -45435,7 +45383,7 @@ akn alk bbs alk -alk +aAn ayx aZF aqd @@ -45578,7 +45526,7 @@ aha aha aha aha -alm +aks apS aqQ aqR @@ -45586,11 +45534,11 @@ aqR aZS aZZ anL -bdX +axb avi avk -atu -aAn +axQ +aiX baI baR baT @@ -45610,7 +45558,7 @@ aCk aCS aFz aGe -aGB +aHp aHr aAe aJq @@ -45625,7 +45573,7 @@ aNk aNl aNJ aNP -aUl +auy aKU abg aOk @@ -45756,7 +45704,7 @@ avZ aHs aIe aKl -aKm +aUo aKZ aTQ aJn @@ -45767,7 +45715,7 @@ aNl aNl aNK aNP -aUl +auy aKU abg aOk @@ -45894,11 +45842,11 @@ axw aCU aCU aGf -aGC +aIc aHt aIf aII -aJr +aUp aOQ aTR aJn @@ -45909,7 +45857,7 @@ aNm aNl aNK aNP -aUl +auy aKU abg aOk diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm index 588538d4c9..aee79cfcdb 100644 --- a/maps/tether/tether-05-station1.dmm +++ b/maps/tether/tether-05-station1.dmm @@ -51,25 +51,20 @@ /turf/simulated/wall/r_wall, /area/space) "aah" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/area/engineering/hallway) "aai" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -114,22 +109,19 @@ /turf/simulated/floor/tiled, /area/hallway/station/atrium) "aal" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 9 }, -/obj/machinery/door/firedoor/glass, -/obj/structure/extinguisher_cabinet{ - dir = 1; - icon_state = "extinguisher_closed"; - pixel_y = 32 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/engineering/hallway) "aam" = ( @@ -1133,14 +1125,16 @@ /area/hallway/station/atrium) "abY" = ( /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 5 }, /obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 + dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 }, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, @@ -1264,21 +1258,10 @@ /turf/simulated/floor, /area/maintenance/station/eng_lower) "acl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, +/obj/machinery/camera/network/civilian, /obj/machinery/gear_painter, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, /turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/area/tether/station/visitorhallway/laundry) "acm" = ( /turf/simulated/floor/tiled, /area/hallway/station/atrium) @@ -1917,6 +1900,12 @@ /obj/effect/floor_decal/corner/yellow/border{ dir = 8 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, /turf/simulated/floor/tiled, /area/engineering/hallway) "adB" = ( @@ -3522,17 +3511,18 @@ /turf/simulated/floor/tiled, /area/hallway/station/atrium) "afZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + icon_state = "bordercolorcorner"; + dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, /turf/simulated/floor/tiled, /area/engineering/hallway) @@ -4108,21 +4098,29 @@ /obj/machinery/light{ dir = 1 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "agR" = ( /obj/effect/floor_decal/borderfloor{ - dir = 9 + dir = 1 }, /obj/effect/floor_decal/corner/yellow/border{ - dir = 9 + dir = 1 }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 + dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - dir = 10 + dir = 1 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "agS" = ( @@ -4150,11 +4148,15 @@ dir = 1 }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 + dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - dir = 1 + dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "agU" = ( @@ -4164,12 +4166,10 @@ /obj/effect/floor_decal/corner/yellow/border{ dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner2{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "agV" = ( @@ -4186,9 +4186,14 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/yellow/border{ +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "agX" = ( @@ -4201,6 +4206,10 @@ /obj/machinery/atm{ pixel_y = 30 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "agY" = ( @@ -4210,6 +4219,12 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "agZ" = ( @@ -4633,19 +4648,9 @@ /turf/simulated/floor/tiled, /area/hallway/station/atrium) "ahG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, /obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 + dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4999,14 +5004,21 @@ /turf/simulated/floor/tiled, /area/hallway/station/atrium) "aip" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) @@ -6272,7 +6284,12 @@ name = "Gateway Prep Shutter" }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, /area/gateway/prep_room) "akO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6300,7 +6317,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, /area/gateway/prep_room) "akQ" = ( /obj/effect/floor_decal/borderfloor, @@ -6399,22 +6421,25 @@ dir = 6 }, /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/engineering/hallway) "akX" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 + dir = 8 }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 }, /turf/simulated/floor/tiled, /area/engineering/hallway) @@ -6666,17 +6691,27 @@ /turf/simulated/floor, /area/engineering/engineering_monitoring) "alu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/engineering/hallway) "alv" = ( @@ -6830,22 +6865,32 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "alM" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/effect/floor_decal/borderfloor{ - dir = 8 + dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 }, -/obj/machinery/computer/timeclock/premade/west, /turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/area/engineering/hallway) "alN" = ( /turf/simulated/wall/r_wall, /area/maintenance/abandonedlibrary) @@ -7077,18 +7122,21 @@ /turf/simulated/floor/tiled, /area/bridge/secondary) "amf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + icon_state = "intact"; + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/engineering/hallway) "amg" = ( @@ -7675,18 +7723,20 @@ /turf/simulated/floor/wood, /area/maintenance/abandonedlibrary) "ano" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 +/obj/effect/floor_decal/borderfloor{ + dir = 9 }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 1 +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 10 }, /turf/simulated/floor/tiled, -/area/engineering/hallway) +/area/hallway/station/atrium) "anp" = ( /turf/simulated/floor/plating, /area/maintenance/abandonedlibrary) @@ -7755,25 +7805,20 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "anu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/engineering/hallway) "anv" = ( @@ -8570,6 +8615,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/engineering/hallway) "apd" = ( @@ -8919,31 +8970,14 @@ /turf/simulated/floor/plating, /area/maintenance/abandonedlibrary) "apD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/floor_decal/borderfloor{ dir = 1 }, /obj/effect/floor_decal/corner/yellow/border{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 }, /turf/simulated/floor/tiled, /area/engineering/hallway) @@ -9008,6 +9042,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, /turf/simulated/floor/tiled, /area/engineering/hallway) "apJ" = ( @@ -9402,25 +9439,25 @@ /turf/simulated/floor, /area/maintenance/station/eng_lower) "aqu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/engineering/hallway) "aqv" = ( @@ -9434,21 +9471,30 @@ /turf/simulated/wall, /area/maintenance/abandonedlibraryconference) "aqx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, /turf/simulated/floor/tiled, -/area/bridge/secondary/hallway) +/area/tether/station/visitorhallway) "aqy" = ( /obj/structure/table, /obj/effect/decal/cleanable/cobweb, @@ -9787,37 +9833,28 @@ /turf/simulated/floor, /area/maintenance/station/eng_lower) "are" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 }, -/obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "arf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, /obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "arg" = ( @@ -10503,12 +10540,16 @@ /turf/simulated/floor/carpet/bcarpet, /area/tether/station/visitorhallway/office) "asF" = ( -/obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 9 +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/computer/timeclock/premade/west, /turf/simulated/floor/tiled, -/area/bridge/secondary/hallway) +/area/hallway/station/atrium) "asG" = ( /turf/simulated/wall/r_wall, /area/maintenance/abandonedlibraryconference) @@ -11000,22 +11041,13 @@ /turf/simulated/floor/tiled, /area/hallway/station/atrium) "atD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled, @@ -11462,6 +11494,12 @@ /obj/effect/floor_decal/corner/yellow/bordercorner2{ dir = 10 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/engineering/hallway) "aux" = ( @@ -11609,10 +11647,34 @@ /turf/simulated/floor/tiled, /area/tether/station/visitorhallway/office) "auM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/command, -/turf/simulated/floor, -/area/maintenance/station/spacecommandmaint) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) "auN" = ( /obj/machinery/power/terminal{ dir = 8 @@ -12334,9 +12396,23 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; + d1 = 1; d2 = 8; - icon_state = "4-8" + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 1 }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) @@ -12428,6 +12504,15 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 1 + }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) "awf" = ( @@ -12466,9 +12551,29 @@ /turf/simulated/floor/tiled, /area/bridge/secondary) "awh" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 1 }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) @@ -12582,7 +12687,9 @@ dir = 8 }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, /area/tether/station/stairs_one) "awq" = ( /obj/structure/cable/green{ @@ -12667,8 +12774,35 @@ /turf/simulated/floor/carpet/purcarpet, /area/bridge/secondary/meeting_room) "awA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Space Meeting Room"; + sortType = "Space Meeting Room" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 1 }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) @@ -12695,18 +12829,35 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/workshop) "awC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) @@ -12884,15 +13035,25 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "awP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light{ + dir = 8 + }, /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 8 }, /obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 }, -/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/area/hallway/station/docks) "awQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -13065,21 +13226,27 @@ /turf/simulated/floor/wood, /area/crew_quarters/sleep/spacedorm2) "axh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /obj/structure/cable/green{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 8; + icon_state = "1-8" }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 20; - pixel_y = 30 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/bridge/secondary/teleporter) +/area/bridge/secondary/hallway) "axi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13176,13 +13343,20 @@ /turf/simulated/floor/wood, /area/crew_quarters/sleep/spacedorm2) "axq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ dir = 4 }, /turf/simulated/floor/tiled, @@ -13237,8 +13411,30 @@ /turf/simulated/floor/tiled, /area/tether/station/stairs_one) "axy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, /turf/simulated/floor/tiled, -/area/bridge/secondary/hallway) +/area/hallway/station/atrium) "axz" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, @@ -13344,26 +13540,20 @@ /turf/simulated/floor/wood, /area/bridge/secondary/meeting_room) "axK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Space Meeting Room"; - sortType = "Space Meeting Room" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) @@ -15049,28 +15239,20 @@ /turf/simulated/floor/tiled, /area/tether/station/visitorhallway/lounge) "aAm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/light{ - dir = 8 - }, /obj/effect/floor_decal/borderfloor{ - dir = 8 + dir = 4 }, /obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/borderfloor/corner2{ dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, /obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 + dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/station/docks) @@ -15086,29 +15268,16 @@ /turf/simulated/floor, /area/maintenance/station/spacecommandmaint) "aAo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/camera/network/command{ + icon_state = "camera"; dir = 10 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, /turf/simulated/floor/tiled, -/area/hallway/station/docks) +/area/bridge/secondary/hallway) "aAp" = ( /obj/machinery/light/small{ icon_state = "bulb1"; @@ -15141,7 +15310,14 @@ /turf/simulated/floor/tiled, /area/bridge/secondary/teleporter) "aAu" = ( -/obj/machinery/light, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) "aAv" = ( @@ -15278,13 +15454,8 @@ /turf/simulated/floor/tiled, /area/tether/station/visitorhallway/office) "aAE" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) "aAF" = ( @@ -15725,18 +15896,24 @@ /area/crew_quarters/sleep/spacedorm4) "aBw" = ( /obj/effect/floor_decal/borderfloor{ - dir = 5 + dir = 9 }, /obj/effect/floor_decal/corner/yellow/border{ - dir = 5 + dir = 9 }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 + dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/engineering/foyer) "aBx" = ( @@ -15956,12 +16133,15 @@ /turf/simulated/floor, /area/maintenance/substation/spacecommand) "aBP" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 +/obj/effect/landmark{ + name = "lightsout" }, -/obj/structure/cable/green, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) "aBQ" = ( @@ -16195,11 +16375,6 @@ /obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled, /area/tether/station/visitorhallway/lounge) -"aCm" = ( -/obj/machinery/washing_machine, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/tether/station/visitorhallway/laundry) "aCn" = ( /obj/machinery/camera/network/civilian{ dir = 4 @@ -16614,14 +16789,13 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "aCW" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) @@ -17043,28 +17217,27 @@ /turf/simulated/floor/tiled, /area/tether/station/visitorhallway) "aDz" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/station/visitorhallway) +/area/bridge/secondary/hallway) "aDA" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, @@ -17252,6 +17425,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor, /area/maintenance/station/spacecommandmaint) +"aDS" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) "aDT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17375,61 +17564,46 @@ /turf/simulated/floor/tiled, /area/engineering/engine_eva) "aEc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) "aEd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 }, -/obj/machinery/light{ - dir = 1 +/obj/effect/floor_decal/borderfloor{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) "aEe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 20; + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/bridge/secondary/hallway) +/area/bridge/secondary/teleporter) "aEf" = ( /obj/structure/cable/green{ d1 = 1; @@ -17443,12 +17617,10 @@ /turf/simulated/floor/tiled, /area/engineering/engine_eva) "aEg" = ( -/obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary/hallway) +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "aEh" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/command, @@ -17491,6 +17663,10 @@ }, /turf/simulated/floor/tiled, /area/tether/station/visitorhallway/laundry) +"aEk" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/tether/station/dock_one) "aEl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -17518,6 +17694,156 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) +"aEo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "tether_dock"; + name = "interior access button"; + pixel_x = 28; + pixel_y = 26; + req_one_access = list(13) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_one) +"aEp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_one) +"aEq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/foyer) +"aEr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/foyer) +"aEs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/foyer) +"aEt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/foyer) +"aEu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/foyer) +"aEv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"aEw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) "aEx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ icon_state = "map"; @@ -17526,6 +17852,23 @@ /obj/machinery/meter, /turf/simulated/floor/tiled, /area/engineering/hallway) +"aEy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tether/station/stairs_one) "aEz" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -18841,32 +19184,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) -"aLU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/engineering/hallway) "aLY" = ( /obj/structure/cable/green{ d1 = 4; @@ -20416,25 +20733,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"aZU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) "aZW" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 9 @@ -20514,18 +20812,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"bbx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) "bbE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20955,31 +21241,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"bee" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "beJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 @@ -20989,15 +21250,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"beL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) "beM" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -21079,21 +21331,6 @@ }, /turf/simulated/floor, /area/vacant/vacant_restaurant_lower) -"bfG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/station/stairs_one) "bfJ" = ( /obj/structure/sign/directions/command{ dir = 4 @@ -21108,37 +21345,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/oracarpet, /area/crew_quarters/heads/chief) -"bgf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "bgr" = ( /obj/structure/table/rack{ dir = 8; @@ -21149,18 +21355,6 @@ /obj/random/maintenance/medical, /turf/simulated/floor, /area/crew_quarters/sleep/cryo) -"bgC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) "bgD" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -22686,21 +22880,6 @@ /obj/item/weapon/tape_roll, /turf/simulated/floor/tiled, /area/engineering/foyer) -"bXI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) "bXJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -23109,21 +23288,6 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/station/dock_one) -"uWS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "tether_dock"; - name = "interior access button"; - pixel_x = 28; - pixel_y = 26; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled, -/area/tether/station/dock_one) "vbm" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -28804,9 +28968,9 @@ aDG aEm aDF bHz -aDG -uWS -aDG +aEk +aEo +aEp aCH aFU aDH @@ -29051,8 +29215,8 @@ aCM aCM aqN acS -aal -aLU +anu +aqu alt aOY aQs @@ -29322,8 +29486,8 @@ acz acz acz aoy -apD -aqu +alM +amf aqN arx avo @@ -29912,7 +30076,7 @@ beJ aoI aTE aoJ -agR +ano adT ajK awp @@ -30045,8 +30209,8 @@ acS aqN aqN acS -alu -aLU +apD +aqu aXZ aZr aQD @@ -30057,7 +30221,7 @@ atH agQ adX bdi -bfG +aEy axu axv aws @@ -30190,13 +30354,13 @@ aEz aUl aLP aXZ -aZU -bbx -beL -bgC -bXI +aBw +aEr +aEs +aEt +aEu aYa -agT +agR adX bdq bfJ @@ -30314,7 +30478,7 @@ aiM acz anl adA -ano +afZ apb apJ aqO @@ -30448,13 +30612,13 @@ adU aeE acu acu -afZ +aah acu ahO adV adZ ads -akX +aal amb anr ape @@ -30616,13 +30780,13 @@ aIl aKb aMj aXZ -aBw +aEq aQQ beM bgD bXJ aYb -agU +agT acp bdu aws @@ -30739,8 +30903,8 @@ aJs aJs aJs aJs -amf -anu +akX +alu aoF apg apg @@ -30764,7 +30928,7 @@ bfo aoI aoI aYg -agW +agU acp bdF awt @@ -30906,7 +31070,7 @@ bYt bgF bgF aYg -agW +agU acp bdx awt @@ -31048,7 +31212,7 @@ aSL aoJ aoJ aoJ -awP +agW acp bdK awt @@ -31332,17 +31496,17 @@ aac aac aac afC -agY +agZ ahH bdS -are +arf bhc axC awc ayD azj awb -aAm +awP aBh aDo bvE @@ -31619,14 +31783,14 @@ afC ahb acp bdW -arf +atD awZ aDc aDe aDg awZ azR -aAo +aAm aBi aBi aDu @@ -32184,9 +32348,9 @@ aeO afC afC afC +agY ahG aip -bee afI afI afI @@ -33191,7 +33355,7 @@ aux avA afI avT -aDz +aqx aww axg axM @@ -33204,7 +33368,7 @@ ayt ayX azt azx -aCm +acl azW aAf aAU @@ -33487,7 +33651,7 @@ ail ail ail aBL -auM +aEg ail aBF acQ @@ -33730,7 +33894,7 @@ ack ack ack ack -aaT +afC aih acm acy @@ -33761,8 +33925,8 @@ avb avb avb avb -aEc -awA +aEv +aEw ahj aqg aAs @@ -33872,7 +34036,7 @@ ack ack ack ack -aaT +afC agq aCe acy @@ -33903,10 +34067,10 @@ azw azy aDI avb -aEd -axq +auM +axK awN -axh +aEe ata avi ayl @@ -34014,7 +34178,7 @@ ack ack ack ack -aaT +afC aAL acp acy @@ -34045,8 +34209,8 @@ auK auN aDN aui -aEe -aEg +avY +aAo ahj ayz auH @@ -34156,8 +34320,8 @@ ack ack ack ack -aaT -aah +afC +aak acp acF acI @@ -34188,7 +34352,7 @@ acV acV acV awe -aBP +aAu ahj auG auI @@ -34298,8 +34462,8 @@ ack ack ack ack -aaT -aah +afC +aak acp amJ amC @@ -34329,8 +34493,8 @@ ags agx ayq acV -avY -axy +awh +aAE ahN ahN ahN @@ -34440,8 +34604,8 @@ ack ack ack ack -aaT -aah +afC +aak acp acm amo @@ -34471,8 +34635,8 @@ agE agy agK ahl -avY -aAE +awh +aBP ahN aht ayK @@ -34582,7 +34746,7 @@ ack ack ack ack -aaT +afC aak acp acm @@ -34600,7 +34764,7 @@ acm acm acm acp -atD +are aiw asR afd @@ -34613,8 +34777,8 @@ agD ahg agM ahm -avY -axy +awh +aCW ahN aht ayR @@ -34724,7 +34888,7 @@ ack ack ack ack -aaT +afC afg xfY adH @@ -34755,8 +34919,8 @@ agE avQ agS ahm -axK -awC +awA +aDz axc axi axJ @@ -34866,7 +35030,7 @@ ack ack ack ack -aaT +afC aiW acp acm @@ -34897,8 +35061,8 @@ agE azc ahe ahm -avY -aCW +awh +aDS ahN aiE axI @@ -35039,8 +35203,8 @@ agE asM azg ahn -avY -axy +awC +aAE ahN aia axI @@ -35181,8 +35345,8 @@ aom awg axL afV -aqx -aAu +axh +aEc ahN aia axI @@ -35323,8 +35487,8 @@ agt agG azd acV -awh -asF +axq +aEd ahN aiI aBT @@ -35737,7 +35901,7 @@ acy acy ahH azb -alM +asF amL amP amL @@ -36021,7 +36185,7 @@ aCw baI bch beS -bgf +axy bhH aCs bmv @@ -37160,7 +37324,7 @@ asI asI bhJ aus -abY +age aao aax bqb @@ -37302,7 +37466,7 @@ baT bcO bir aus -acl +abY aap aex aAk diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm index ffdc9e60c9..9b9585618f 100644 --- a/maps/tether/tether-06-station2.dmm +++ b/maps/tether/tether-06-station2.dmm @@ -1086,12 +1086,12 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/firedoor/glass, /obj/machinery/door_timer/cell_3{ id = "Cell 2"; name = "Cell 2"; pixel_x = -32 }, +/obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/security/security_cell_hallway) "bK" = ( @@ -2392,7 +2392,9 @@ /obj/effect/floor_decal/corner/red/bordercorner2{ dir = 5 }, -/obj/machinery/door/firedoor/glass, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/security/security_cell_hallway) "dt" = ( @@ -3091,20 +3093,17 @@ /area/security/brig) "ex" = ( /obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/purple/border{ + icon_state = "bordercolor"; dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, -/area/tether/station/stairs_two) +/area/tether/exploration/hallway) "ey" = ( /obj/structure/cable/cyan{ d1 = 16; @@ -3985,19 +3984,21 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_upload) "fQ" = ( -/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + icon_state = "bordercolor"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled, -/area/hallway/station/port) +/area/tether/exploration/hallway) "fR" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -5239,19 +5240,13 @@ /area/engineering/foyer_mezzenine) "hR" = ( /obj/effect/floor_decal/borderfloor{ - dir = 8; + dir = 1; icon_state = "borderfloor"; - pixel_x = 0 + pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ icon_state = "bordercolor"; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 + dir = 1 }, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -5260,24 +5255,18 @@ /area/tether/exploration/hallway) "hS" = ( /obj/effect/floor_decal/borderfloor{ - dir = 4 + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ icon_state = "bordercolor"; + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "hT" = ( @@ -5791,6 +5780,11 @@ /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "iH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -5800,13 +5794,10 @@ icon_state = "bordercolor"; dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "iI" = ( @@ -5868,23 +5859,15 @@ /area/ai_upload) "iL" = ( /obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 + dir = 5 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 5 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/structure/flora/pottedplant/crystal, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) @@ -5902,38 +5885,60 @@ /turf/simulated/floor, /area/maintenance/station/exploration) "iN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "iO" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ +/obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/structure/flora/pottedplant/crystal, -/obj/machinery/camera/network/exploration{ - icon_state = "camera"; - dir = 9 +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) @@ -6436,39 +6441,23 @@ /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "js" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/computer/guestpass{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, /obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 2 }, /turf/simulated/floor/tiled, -/area/tether/exploration/hallway) +/area/hallway/station/starboard) "jt" = ( /obj/structure/cable/green{ d1 = 1; @@ -8927,23 +8916,12 @@ /turf/simulated/floor/tiled, /area/hallway/station/starboard) "mY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, /obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 + dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, @@ -11131,22 +11109,26 @@ /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) "qy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, /obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 + dir = 2 }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/area/hallway/station/port) "qz" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -12444,34 +12426,17 @@ /area/ai_server_room) "sz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /turf/simulated/floor/tiled, -/area/tether/station/stairs_two) +/area/hallway/station/port) "sA" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, @@ -13950,6 +13915,19 @@ "uW" = ( /turf/simulated/wall, /area/medical/morgue) +"uX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/hallway/station/port) "uY" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper_bin{ @@ -14196,6 +14174,10 @@ dir = 1 }, /obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, /turf/simulated/floor/tiled/monofloor{ dir = 1 }, @@ -15317,6 +15299,14 @@ }, /turf/simulated/floor, /area/maintenance/station/micro) +"xi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled, +/area/hallway/station/port) "xj" = ( /obj/structure/window/reinforced, /turf/simulated/floor/tiled/white, @@ -15451,6 +15441,40 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/maintenance/evahallway) +"xs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_two) +"xt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_two) "xu" = ( /obj/structure/bed/chair, /obj/machinery/power/apc{ @@ -18268,30 +18292,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Cl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/exploration/hallway) "Cm" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, @@ -20278,31 +20278,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/port) -"Fo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/port) "Fp" = ( /obj/structure/cable{ d1 = 1; @@ -21513,16 +21488,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/recstorage) -"QF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/station/port) "QG" = ( /obj/structure/railing{ dir = 8 @@ -22234,18 +22199,6 @@ }, /turf/simulated/floor, /area/security/riot_control) -"Xq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/station/port) "Xs" = ( /obj/effect/floor_decal/corner/white/border{ dir = 8 @@ -30207,7 +30160,7 @@ pK qp re rS -ex +xs tf tI uo @@ -30491,7 +30444,7 @@ pL qr rh rU -sz +xt tJ uS EA @@ -31200,7 +31153,7 @@ pg hr qw rl -QF +sz VA ZK Jq @@ -31342,7 +31295,7 @@ DO hr Fu Vw -Xq +uX TO Do VK @@ -32334,9 +32287,9 @@ fq kj kj pO -Fo +qy fp -fQ +xi pq qM rv @@ -33606,9 +33559,9 @@ kp kp kp kp -mY +js nQ -qy +mY DL ac ac @@ -33739,7 +33692,7 @@ gh ge gH hf -hR +ex iF jq kp @@ -33881,7 +33834,7 @@ fy hk gI hi -hS +fQ iG jr kp @@ -34024,8 +33977,8 @@ gg cZ cZ cZ -iH -js +hR +iN kp kR lW @@ -34876,7 +34829,7 @@ cZ cZ cZ cZ -iL +hS jK kt kt @@ -35018,7 +34971,7 @@ mf ns mB ic -iN +iH jM kt lH @@ -35160,8 +35113,8 @@ mw lP DP ea +iL iO -Cl ku Ex mb diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm index 47961a6688..c6db32e214 100644 --- a/maps/tether/tether-07-station3.dmm +++ b/maps/tether/tether-07-station3.dmm @@ -2819,23 +2819,10 @@ /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) "ew" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/hallway) +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/excursion/tether) "ex" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -2921,23 +2908,20 @@ /area/security/observation) "eE" = ( /obj/effect/floor_decal/borderfloor{ - dir = 4 + dir = 8 }, /obj/effect/floor_decal/corner/red/border{ - dir = 4 + dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/security/hallway) "eF" = ( @@ -3552,24 +3536,28 @@ /turf/simulated/floor, /area/maintenance/station/ai) "fF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 }, /obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/hallway/station/upper) +/area/security/hallway) "fG" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 @@ -4386,21 +4374,20 @@ /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) "he" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/quartermaster/foyer) +/area/hallway/station/upper) "hf" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 @@ -4767,22 +4754,14 @@ /turf/simulated/floor/tiled, /area/security/eva) "hO" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/corner/brown/border{ dir = 1 }, /obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 + dir = 2 }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) @@ -13152,10 +13131,18 @@ /turf/simulated/floor/wood, /area/hallway/station/upper) "un" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/excursion/tether) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) "uo" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -13845,24 +13832,19 @@ /turf/simulated/wall, /area/lawoffice) "vv" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, /obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, /turf/simulated/floor/tiled, -/area/hallway/station/upper) +/area/quartermaster/foyer) "vw" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; @@ -17362,12 +17344,6 @@ "AL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, /turf/simulated/floor/wood, /area/quartermaster/qm) "AM" = ( @@ -17393,32 +17369,23 @@ /turf/simulated/floor/tiled, /area/quartermaster/foyer) "AP" = ( -/obj/machinery/navbeacon/delivery/south{ - location = "QM #2" +/obj/machinery/light{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/cargotech, +/obj/item/weapon/stamp/cargo, +/obj/item/weapon/storage/backpack/dufflebag, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"AQ" = ( /obj/machinery/light_switch{ dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26 }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"AQ" = ( -/obj/machinery/navbeacon/delivery/south{ - location = "QM #3" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, +/obj/structure/closet/secure_closet/cargotech, +/obj/item/weapon/stamp/cargo, /turf/simulated/floor/tiled, /area/quartermaster/storage) "AR" = ( @@ -17456,14 +17423,23 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "AT" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, /obj/structure/closet/secure_closet/cargotech, /obj/item/weapon/stamp/cargo, /turf/simulated/floor/tiled, /area/quartermaster/storage) "AU" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/weapon/storage/backpack/dufflebag, -/obj/item/weapon/stamp/cargo, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/quartermaster/storage) "AV" = ( @@ -18042,16 +18018,11 @@ /turf/simulated/floor/tiled, /area/security/eva) "BL" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "cargo_bay"; - layer = 3.3; - name = "cargo bay hatch controller"; - pixel_x = 30; - pixel_y = 0; - req_one_access = list(13,31); - tag_door = "cargo_bay_door" +/obj/machinery/camera/network/cargo{ + icon_state = "camera"; + dir = 8 }, +/obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/quartermaster/storage) "BM" = ( @@ -18122,9 +18093,17 @@ /turf/simulated/floor/tiled/white, /area/medical/chemistry) "BR" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) "BS" = ( /obj/structure/table/standard, /obj/structure/cable/green{ @@ -18572,21 +18551,23 @@ /turf/simulated/floor/wood, /area/quartermaster/qm) "CG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cargo_bay"; + layer = 3.3; + name = "cargo bay hatch controller"; + pixel_x = 30; + pixel_y = 0; + req_one_access = list(13,31); + tag_door = "cargo_bay_door" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "CH" = ( /obj/machinery/door/airlock/mining{ name = "Quartermaster"; @@ -24958,6 +24939,7 @@ dir = 8; icon_state = "pipe-c" }, +/obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/quartermaster/storage) "MB" = ( @@ -26373,12 +26355,13 @@ /turf/simulated/floor/bluegrid, /area/ai_core_foyer) "OY" = ( -/obj/machinery/camera/network/cargo{ - icon_state = "camera"; - dir = 8 +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) "OZ" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -26989,12 +26972,12 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) "Qg" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/cargo{ - dir = 4 +/obj/structure/shuttle/engine/propulsion{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) "Qh" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/vehicle/train/trolley{ @@ -27097,21 +27080,6 @@ /turf/simulated/floor/tiled/white, /area/medical/virology) "Qp" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8; - icon_state = "propulsion_l" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/large_escape_pod1/station) -"Qq" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/large_escape_pod1/station) -"Qr" = ( /obj/structure/shuttle/engine/propulsion{ dir = 8; icon_state = "propulsion_r" @@ -28000,16 +27968,6 @@ }, /turf/simulated/floor/carpet, /area/security/breakroom) -"SD" = ( -/obj/machinery/navbeacon/delivery/south{ - location = "QM #1" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) "SE" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -35877,7 +35835,7 @@ ga lz ej fm -ew +eE lz lz Kr @@ -36019,7 +35977,7 @@ lb lA eo jl -eE +fF nN nN fe @@ -39330,11 +39288,11 @@ MK Iy ab NL +OY +Qg +Qg +Qg Qp -Qq -Qq -Qq -Qr NL vt vt @@ -40557,7 +40515,7 @@ Zy WG dj XA -un +ew ms Oz be @@ -40578,9 +40536,9 @@ sq sq sq sq -vv +he xS -fF +un AH jV yP @@ -40699,7 +40657,7 @@ UJ Xb dj XN -un +ew ms Xq be @@ -40841,7 +40799,7 @@ iW WS dj XN -un +ew ms Xq be @@ -41124,7 +41082,7 @@ jZ WR Xo XN -un +ew cK ms Xq @@ -41692,7 +41650,7 @@ ea kx dj XN -un +ew cK ms mq @@ -41977,7 +41935,7 @@ kQ TG dj XN -un +ew ms mq be @@ -42119,7 +42077,7 @@ kR Vd dj XN -un +ew ms QL be @@ -42140,9 +42098,9 @@ uw uw uw qr -he -ht hO +ht +vv zL xP BN @@ -42261,7 +42219,7 @@ ZE ZB dj XB -un +ew ms Sq be @@ -42430,7 +42388,7 @@ yV zK AM BP -CG +BR CD Es zK @@ -42712,8 +42670,8 @@ vk ya yX zO -SD -Qg +AP +AU CI Dx Fk @@ -42854,8 +42812,8 @@ xo yc NQ zO -AP -BR +AQ +BU CJ Dy BU @@ -42996,8 +42954,8 @@ xp yd qu qu -AQ -BR +AT +BU CJ Dz Eu @@ -43289,7 +43247,7 @@ Ew Ew Ew HD -BU +Iu IW zO ab @@ -43422,7 +43380,7 @@ xs yg Qc qu -AT +BU BU CM BU @@ -43564,7 +43522,7 @@ EI Fx zc zR -AU +BU BU BU BU @@ -43849,11 +43807,11 @@ qu qu qu AW -OY +BL CO DC Ey -BL +CG Ge GP HF diff --git a/maps/tether/tether_areas2.dm b/maps/tether/tether_areas2.dm index 906215ad1d..33300d6049 100644 --- a/maps/tether/tether_areas2.dm +++ b/maps/tether/tether_areas2.dm @@ -340,6 +340,8 @@ name = "\improper Public Garden Maintenence" /area/maintenance/lower/public_garden_maintenence/upper name = "\improper Upper Public Garden Maintenence" +/area/maintenance/lower/medsec_maintenance + name = "\improper Surface MedSec Maintenance" // Research /area/rnd/xenobiology/xenoflora/lab_atmos diff --git a/maps/yw/cryogaia-02-mining.dmm b/maps/yw/cryogaia-02-mining.dmm index 93da4f15d6..dacfe3d0af 100644 --- a/maps/yw/cryogaia-02-mining.dmm +++ b/maps/yw/cryogaia-02-mining.dmm @@ -1940,7 +1940,7 @@ "Lp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/outpost/mining_main/break_room) "Lq" = (/obj/structure/table/standard,/obj/machinery/microwave{pixel_y = 6},/turf/simulated/floor/tiled/dark,/area/outpost/mining_main/break_room) "Lr" = (/obj/structure/table/standard,/obj/item/bodybag/cryobag,/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/white,/area/outpost/mining_main/medbay) -"Ls" = (/obj/structure/table/standard,/obj/item/roller{pixel_x = 2; pixel_y = 3},/obj/item/roller,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/outpost/mining_main/medbay) +"Ls" = (/obj/structure/table/standard,/obj/item/roller{pixel_x = 2; pixel_y = 3},/obj/item/roller,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/item/device/radio/phone/medbay,/turf/simulated/floor/tiled/white,/area/outpost/mining_main/medbay) "Lt" = (/obj/machinery/sleeper{dir = 8},/turf/simulated/floor/tiled/white,/area/outpost/mining_main/medbay) "Lu" = (/obj/machinery/sleep_console,/turf/simulated/floor/tiled/white,/area/outpost/mining_main/medbay) "Lv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/mining{c_tag = "OPM - Mining Hallway Mid"; dir = 4},/turf/simulated/floor/tiled,/area/outpost/mining_main/south_hall) @@ -2041,7 +2041,6 @@ "Nm" = (/turf/simulated/floor,/area/outpost/mining_main/south_hall) "Nn" = (/obj/structure/inflatable/door,/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/mine/explored) "No" = (/obj/structure/inflatable,/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/mine/explored) -"Np" = (/turf/simulated/mineral/floor/cave,/area/space) "Nq" = (/turf/simulated/wall/durasteel,/area/mine/explored) "Nr" = (/obj/vehicle/train/engine,/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/mine/explored) "Ns" = (/obj/vehicle/train/trolley,/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/mine/explored) @@ -2271,7 +2270,7 @@ abababababababababababababababababababababababababababababababababababababababab abababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababacacababacacacacabacacabababababacacabababababababababababacacabababacacababacacacacacacabababacacababacacababababababababababababababababababbrbBbBbBbBbrbrbrbrbrbrbrbrbrbrbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBabababababababababababababababababababababababababababababababcedadabBbBbBdadadadadaceceababababababababababababab ababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababacacabababababababacacacacababababababababacabacacacabababababababacacababacacabababababababababababababababababababababababababababbrbrbBbBbBbrbrbrbrbrbrbrbrbrbrbrbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBcfabababababababababababababababababababababababababababababababcedadabBbBbBdadadadabrbrbrababababababababababababab ababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababacacabacacacabababacacababacacacabababababacabacacabababababacacabababababababababababababababababacacacabababababababababababababababbrbrbrbBbBbrbrbrbrbrbrbrbrbrbrbrbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBcfababababababababababababababababababababababababbrbrbrbrbrbrbrdadadabBbBbBdadadadabrbrbrababababababababababababab -abababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababacacacabababababababacacacabababababacababababababacacacacababababababababacacacacabababababacacacabababababababababababababababababbrbBbBbBbBbBbBbBbBbBbBbrxAxAbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBcfabababababababababababababababababababababababbrbrbrbrNpbrbrbrdadadaNnNoNnNqNqdadadabrbrbrabababababababababababab +abababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababacacacabababababababacacacabababababacababababababacacacacababababababababacacacacabababababacacacabababababababababababababababababbrbBbBbBbBbBbBbBbBbBbBbrxAxAbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBcfabababababababababababababababababababababababbrbrbrbrbrbrbrbrdadadaNnNoNnNqNqdadadabrbrbrabababababababababababab abababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababacacabacacacabababacacababacacacabababababacacacacabababababacacababababababababababababababababababbrbrbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBabababababababababababababababababababababababbrbrbrbBbBbBbBNrNsNsbBbBbBbBbBNtNtNudadadabrbrbrababababababababababab ababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababacacacabacacacabababababababacacacabababababacacabababababababababababababababababababababababababababbrbrbrbrbBbBbBbBbBbBbBbBbBbBxAxAxAxAxAxAbrbrbBbBbBbBbBbBbBbBbBababababababababababababababababababababababbrbrbrbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbrbrbrbrababababababababababab ababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababacacacabacacabababababababababababababababababababababababababababababababababababababababababababababababacacababababababababababababbrbBbBbBbBbBbBbBbBbBbBbBxAxAxAxAxAbrabababbBbBbBabababababababababababababababababababababababababababbrbrbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBNvbBbBbBbBbrbrababababababababababab diff --git a/maps/yw/cryogaia-04-maintenance.dmm b/maps/yw/cryogaia-04-maintenance.dmm index b7641093c9..ac4936ec50 100644 --- a/maps/yw/cryogaia-04-maintenance.dmm +++ b/maps/yw/cryogaia-04-maintenance.dmm @@ -1,103135 +1,4615 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/unsimulated/wall/ice, -/area/mine/unexplored/lower_rock) -"aab" = ( -/turf/simulated/mineral/cave, -/area/mine/unexplored/lower_rock) -"aac" = ( -/turf/simulated/mineral/cave, -/area/mine/explored/lower_rock) -"aad" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/mine/unexplored/lower_rock) -"aae" = ( -/turf/simulated/wall/durasteel, -/area/mine/explored/lower_rock) -"aaf" = ( -/turf/simulated/floor/plating, -/area/mine/unexplored/lower_rock) -"aag" = ( -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"aah" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"aai" = ( -/obj/structure/table/borosilicate, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"aaj" = ( -/obj/structure/table/borosilicate, -/obj/structure/dancepole, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"aak" = ( -/obj/structure/table/borosilicate, -/obj/structure/curtain/black, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"aal" = ( -/obj/structure/table/borosilicate, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"aam" = ( -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"aan" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/mine/explored/lower_rock) -"aao" = ( -/obj/structure/table/alien{ - desc = "A strange table, seemingly forgotten by time"; - name = "strange table" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"aap" = ( -/turf/simulated/floor/wood/sif/broken, -/area/maintenance/blueserg/misc) -"aaq" = ( -/turf/simulated/floor/plating, -/area/mine/explored/lower_rock) -"aar" = ( -/turf/simulated/wall/r_wall, -/area/ai) -"aas" = ( -/turf/simulated/mineral/cave, -/area/ai) -"aat" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"aau" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "maintbar"; - pixel_x = -7; - pixel_y = -5 - }, -/obj/machinery/partyalarm{ - dir = 4; - pixel_x = 5 - }, -/turf/simulated/floor/lino, -/area/maintenance/blueserg) -"aav" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/lino, -/area/maintenance/blueserg) -"aaw" = ( -/obj/structure/curtain/black, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"aax" = ( -/turf/simulated/floor/tiled/dark, -/area/ai) -"aay" = ( -/turf/simulated/floor/bluegrid, -/area/ai) -"aaz" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/maintenance/chapel) -"aaA" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"aaB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"aaC" = ( -/obj/structure/curtain/black, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"aaD" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"aaE" = ( -/obj/machinery/floor_light{ - anchored = 1 - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"aaF" = ( -/turf/simulated/floor/lino, -/area/maintenance/blueserg) -"aaG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "maintbar"; - layer = 3.1; - name = "Bar Shutters" - }, -/turf/simulated/floor/lino, -/area/maintenance/blueserg) -"aaH" = ( -/obj/machinery/floor_light{ - anchored = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"aaI" = ( -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/dorms) -"aaJ" = ( -/obj/structure/bed/double/padded, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/dorms) -"aaK" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"aaL" = ( -/obj/machinery/power/smes/buildable{ - charge = 5e+006; - input_attempt = 1; - input_level = 200000; - output_level = 200000 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"aaM" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - AI Subgrid"; - name_tag = "AI Subgrid" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"aaN" = ( -/obj/machinery/porta_turret/ai_defense, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/ai) -"aaO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"aaP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"aaQ" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"aaR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"aaS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"aaT" = ( -/obj/machinery/porta_turret/ai_defense, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"aaU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"aaV" = ( -/turf/simulated/floor/wood/sif/broken, -/area/maintenance/blueserg) -"aaW" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"aaX" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "maintbar"; - layer = 3.1; - name = "Bar Shutters" - }, -/turf/simulated/floor/lino, -/area/maintenance/blueserg) -"aaY" = ( -/obj/machinery/vending/boozeomat{ - req_access = list(); - req_log_access = null - }, -/turf/simulated/floor/lino, -/area/maintenance/blueserg) -"aaZ" = ( -/obj/machinery/floor_light{ - anchored = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"aba" = ( -/obj/structure/curtain/black, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/dorms) -"abb" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/dorms) -"abc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"abd" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/bluegrid, -/area/ai) -"abe" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"abf" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"abg" = ( -/obj/machinery/ai_slipper{ - icon_state = "motion0" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"abh" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"abi" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"abj" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/ai_slipper{ - icon_state = "motion0" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"abk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"abl" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"abm" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/maintenance/maintroom4) -"abn" = ( -/turf/simulated/wall/titanium, -/area/maintenance/maintroom4) -"abo" = ( -/turf/simulated/wall, -/area/maintenance/maintroom4) -"abp" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/maintenance/maintroom4) -"abq" = ( -/turf/simulated/wall, -/area/mine/explored/lower_rock) -"abr" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"abs" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"abt" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/glasses, -/turf/simulated/floor/lino, -/area/maintenance/blueserg) -"abu" = ( -/obj/machinery/floor_light{ - anchored = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"abv" = ( -/turf/simulated/floor/wood/sif/broken, -/area/maintenance/blueserg/dorms) -"abw" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/maintenance/lowfloor1) -"abx" = ( -/turf/simulated/wall, -/area/maintenance/lowfloor1) -"aby" = ( -/turf/simulated/mineral/cave, -/area/maintenance/lowfloor1) -"abz" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/wall/r_wall, -/area/ai) -"abA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/ai) -"abB" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/machinery/porta_turret/ai_defense, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"abC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"abD" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"abE" = ( -/turf/simulated/wall/durasteel, -/area/ai) -"abF" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bluegrid, -/area/ai) -"abG" = ( -/obj/machinery/porta_turret/ai_defense, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"abH" = ( -/obj/structure/table/steel, -/obj/item/clothing/accessory/collar/pink, -/obj/item/clothing/accessory/collar/shock, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"abI" = ( -/obj/structure/table/steel, -/obj/item/weapon/flame/candle, -/obj/item/weapon/flame/candle, -/obj/item/weapon/flame/lighter, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"abJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"abK" = ( -/obj/item/device/camera, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"abL" = ( -/obj/structure/table/steel, -/obj/item/clothing/mask/muzzle, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"abM" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"abN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/kitchenspike, -/turf/simulated/floor/plating, -/area/mine/explored/lower_rock) -"abO" = ( -/obj/structure/table/gamblingtable, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"abP" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"abQ" = ( -/obj/structure/closet, -/obj/item/clothing/under/schoolgirl, -/turf/simulated/floor/wood, -/area/maintenance/lowfloor1) -"abR" = ( -/turf/simulated/floor/wood, -/area/maintenance/lowfloor1) -"abS" = ( -/obj/machinery/vending/coffee{ - product_ads = "Have a drink!;Drink up!;It's good for you!;Would you like a hot joe?;I'd kill for some coffee!;The best beans in the galaxy.;Only the finest brew for you.;Mmmm. Nothing like a coffee.;I like coffee, don't you?;Coffee helps you work!;Try some tea.;We hope you like the best!;Try our new chocolate!;Admin conspiracies;Would you like some tea, Mrs. Nesbit?"; - shut_up = 0 - }, -/turf/simulated/floor/wood, -/area/maintenance/lowfloor1) -"abT" = ( -/obj/structure/table/steel, -/obj/machinery/microwave, -/obj/item/weapon/storage/box/donkpockets, -/turf/simulated/floor/wood, -/area/maintenance/lowfloor1) -"abU" = ( -/obj/effect/landmark{ - name = "tripai" - }, -/obj/item/device/radio/intercom{ - dir = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 20 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - frequency = 1343; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -21 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 8; - listening = 1; - name = "Common Channel"; - pixel_x = -21; - pixel_y = 0 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"abV" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"abW" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = null; - locked = 1; - name = "AI Core"; - req_access = list(16) - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"abX" = ( -/obj/machinery/ai_slipper{ - icon_state = "motion0" - }, -/obj/machinery/turretid/stun{ - check_synth = 1; - name = "AI Chamber turret control"; - pixel_x = 30; - pixel_y = -24 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -24; - pixel_y = -25 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the AI core maintenance door."; - id = "AICore"; - name = "AI Maintenance Hatch"; - pixel_x = 8; - pixel_y = 25; - req_access = list(16) - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera/xray/command{ - c_tag = "AI - Core"; - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"abY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"abZ" = ( -/obj/effect/landmark{ - name = "tripai" - }, -/obj/item/device/radio/intercom{ - dir = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 21 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - frequency = 1343; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -21 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"aca" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"acb" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"acc" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"acd" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "chemcounter"; - name = "Pharmacy Counter Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/lino, -/area/maintenance/blueserg) -"ace" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - dir = 1; - id = "maintbar"; - layer = 3.1; - name = "Bar Shutters" - }, -/turf/simulated/floor/lino, -/area/maintenance/blueserg) -"acf" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"acg" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/maintenance/lowfloor1) -"ach" = ( -/obj/item/weapon/stool/padded, -/obj/random/action_figure, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"aci" = ( -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"acj" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/maintenance/lowfloor1) -"ack" = ( -/obj/machinery/porta_turret/ai_defense, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"acl" = ( -/obj/machinery/power/apc/super/critical{ - dir = 4; - is_critical = 1; - name = "east bump"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/bluegrid, -/area/ai) -"acm" = ( -/obj/effect/landmark/start{ - name = "AI" - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/obj/item/device/radio/intercom{ - dir = 8; - listening = 0; - name = "Custom Channel"; - pixel_x = -21; - pixel_y = -10 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - frequency = 1343; - name = "Private Channel"; - pixel_x = 21; - pixel_y = -10 - }, -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 30; - pixel_y = -32 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"acn" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"aco" = ( -/obj/structure/table/steel, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/mask/bandana, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"acp" = ( -/obj/structure/table/steel, -/obj/item/weapon/handcuffs/fuzzy, -/obj/item/weapon/handcuffs/legcuffs/fuzzy, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"acq" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"acr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/mine/explored/lower_rock) -"acs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"act" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"acu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"acv" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/plushie/carp{ - icon_state = "carpplushie"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"acw" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/teapot, -/turf/simulated/floor/wood, -/area/maintenance/lowfloor1) -"acx" = ( -/obj/structure/plushie/ian{ - dir = 8; - icon_state = "ianplushie"; - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/maintenance/lowfloor1) -"acy" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/black, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"acz" = ( -/obj/structure/table/steel, -/obj/item/clothing/head/welding/demon, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"acA" = ( -/obj/structure/table/steel, -/obj/item/clothing/glasses/sunglasses/blindfold, -/turf/simulated/floor/plating, -/area/maintenance/maintroom4) -"acB" = ( -/turf/simulated/wall, -/area/maintenance/chapel) -"acC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"acD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood/sif/broken, -/area/maintenance/blueserg) -"acE" = ( -/obj/structure/plushie/drone{ - icon_state = "droneplushie"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/maintenance/lowfloor1) -"acF" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"acG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"acH" = ( -/obj/machinery/ai_slipper{ - icon_state = "motion0" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"acI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"acJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"acK" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/ai_slipper{ - icon_state = "motion0" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"acL" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"acM" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"acN" = ( -/turf/simulated/floor, -/area/maintenance/chapel) -"acO" = ( -/obj/structure/mopbucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"acP" = ( -/obj/item/weapon/cane/fluff/tasald, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"acQ" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/plating, -/area/maintenance/blueserg/misc) -"acR" = ( -/obj/machinery/light, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"acS" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"acT" = ( -/obj/machinery/porta_turret/ai_defense, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"acU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"acV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"acW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"acX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"acY" = ( -/obj/machinery/porta_turret/ai_defense, -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"acZ" = ( -/turf/simulated/floor, -/area/mine/explored/lower_rock) -"ada" = ( -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/chapel) -"adb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/chapel) -"adc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/turf/simulated/floor, -/area/maintenance/chapel) -"add" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/maintenance/chapel) -"ade" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/item/clothing/glasses/sunglasses/blindfold, -/turf/simulated/floor, -/area/maintenance/chapel) -"adf" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/maintenance/chapel) -"adg" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor, -/area/maintenance/chapel) -"adh" = ( -/obj/structure/fitness/punchingbag, -/turf/simulated/floor, -/area/maintenance/chapel) -"adi" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor, -/area/maintenance/chapel) -"adj" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"adk" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood/sif/broken, -/area/maintenance/blueserg/misc) -"adl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"adm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/curtain/black, -/turf/simulated/floor/plating, -/area/maintenance/blueserg) -"adn" = ( -/obj/structure/simple_door/silver{ - name = "The Blue Sergal" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg) -"ado" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lowfloor1) -"adp" = ( -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"adq" = ( -/obj/structure/table/steel, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"adr" = ( -/obj/structure/table/steel, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"ads" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"adt" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 9 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"adu" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"adv" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/maintenance/chapel) -"adw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/chapel) -"adx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/chapel) -"ady" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/chapel) -"adz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/chapel) -"adA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/chapel) -"adB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/chapel) -"adC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/chapel) -"adD" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/chapel) -"adE" = ( -/obj/structure/sign/poster, -/turf/simulated/wall/titanium, -/area/maintenance/chapel) -"adF" = ( -/turf/simulated/wall, -/area/space) -"adG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"adH" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/wood/sif, -/area/maintenance/blueserg/misc) -"adI" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/maintenance/lowfloor3) -"adJ" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"adK" = ( -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"adL" = ( -/obj/structure/closet/crate, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"adM" = ( -/turf/simulated/wall/r_wall, -/area/ai_server_room) -"adN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"adO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/vault/bolted{ - name = "AI core"; - req_access = list(16) - }, -/obj/machinery/door/blast/regular{ - id = "AICore"; - name = "AI core maintenance hatch" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"adP" = ( -/turf/simulated/wall/r_wall, -/area/ai_cyborg_station) -"adQ" = ( -/turf/simulated/wall, -/area/chapel/main) -"adR" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/chapel/main) -"adS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/chapel) -"adT" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/chapel) -"adU" = ( -/obj/structure/mirror{ - pixel_y = 25 - }, -/turf/simulated/floor, -/area/space) -"adV" = ( -/turf/simulated/floor, -/area/space) -"adW" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/mime, -/obj/item/weapon/pen/crayon/mime, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor, -/area/space) -"adX" = ( -/turf/simulated/wall, -/area/maintenance/lowfloor3) -"adY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/wall, -/area/mine/explored/lower_rock) -"adZ" = ( -/obj/structure/symbol/sa, -/turf/simulated/wall{ - can_open = 1 - }, -/area/mine/explored/lower_rock) -"aea" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"aeb" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"aec" = ( -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"aed" = ( -/obj/machinery/message_server, -/turf/simulated/floor/bluegrid, -/area/ai_server_room) -"aee" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/ai_server_room) -"aef" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai) -"aeg" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -24; - pixel_y = -25 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the AI core maintenance door."; - id = "AICore"; - name = "AI Maintenance Hatch"; - pixel_x = 0; - pixel_y = 0; - req_access = list(16) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/ai) -"aeh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled/dark, -/area/ai_foyer) -"aei" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/sign/kiddieplaque{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/mob/living/silicon/robot/ai_shell, -/turf/simulated/floor/tiled/dark, -/area/ai_foyer) -"aej" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_server_room) -"aek" = ( -/obj/structure/table/standard, -/obj/item/weapon/phone, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"ael" = ( -/obj/machinery/computer/aifixer, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"aem" = ( -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aen" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aeo" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aep" = ( -/obj/structure/table/steel, -/turf/simulated/floor, -/area/space) -"aeq" = ( -/turf/simulated/wall, -/area/maintenance/starboard) -"aer" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/wardrobe/pjs, -/obj/item/weapon/handcuffs/fuzzy, -/obj/item/weapon/handcuffs/fuzzy, -/obj/item/weapon/handcuffs/legcuffs/fuzzy, -/obj/item/weapon/handcuffs/fuzzy, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/gloves/combat{ - desc = "These gloves are insulated with rubber."; - name = "black insulated gloves" - }, -/obj/item/clothing/under/fluff/latexmaid, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aes" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/fancy/candle_box, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aet" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/vending/sovietsoda, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aeu" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/vending/cigarette{ - name = "Cigarette machine"; - prices = list(); - products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aev" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aew" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/purple, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aex" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aey" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/mime, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aez" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aeA" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/red, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aeB" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aeC" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aeD" = ( -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/plating, -/area/maintenance/blueserg/misc) -"aeE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aeF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"aeG" = ( -/obj/structure/table/steel, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"aeH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/command{ - c_tag = "AI - Upload Foyer"; - dir = 2 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_foyer) -"aeI" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_cyborg_station) -"aeJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_server_room) -"aeK" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/highsecurity{ - name = "Messaging Server"; - req_access = list(16) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_server_room) -"aeL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_foyer) -"aeM" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - dir = 4; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_foyer) -"aeN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_cyborg_station) -"aeO" = ( -/turf/simulated/wall/r_wall, -/area/holodeck_control) -"aeP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall, -/area/maintenance/lowfloor1) -"aeQ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aeR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aeS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aeT" = ( -/obj/machinery/camera/network/civilian{ - c_tag = "Chapel Hall"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aeU" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aeV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor, -/area/space) -"aeW" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor, -/area/space) -"aeX" = ( -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/mask/gas/mime, -/obj/item/clothing/shoes/mime, -/obj/item/clothing/under/mime, -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 5 - }, -/turf/simulated/floor, -/area/space) -"aeY" = ( -/turf/simulated/floor, -/area/maintenance/starboard) -"aeZ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afa" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afc" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afd" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afe" = ( -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aff" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"afg" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"afh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"afi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"afj" = ( -/obj/structure/closet/wardrobe/grey, -/obj/item/weapon/storage/backpack, -/obj/item/weapon/storage/backpack, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"afk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/ai_server_room) -"afl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/flasher{ - id = "AIFoyer"; - pixel_x = 22; - pixel_y = -36 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_foyer) -"afm" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_foyer) -"afn" = ( -/obj/machinery/computer/message_monitor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_server_room) -"afo" = ( -/obj/effect/landmark/start{ - name = "Cyborg" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_cyborg_station) -"afp" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/effect/landmark/start{ - name = "Cyborg" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/ai_cyborg_station) -"afq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/chapel) -"afr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/chapel) -"afs" = ( -/obj/machinery/door/airlock/glass_external{ - icon_state = "door_locked"; - locked = 1; - name = "Escape Pod" - }, -/turf/simulated/floor, -/area/maintenance/chapel) -"aft" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afu" = ( -/obj/effect/floor_decal/corner_techfloor_grid, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afv" = ( -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afw" = ( -/obj/effect/floor_decal/techfloor, -/obj/effect/floor_decal/techfloor/hole/right, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afx" = ( -/obj/effect/floor_decal/techfloor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/random/drinkbottle, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afy" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/table/steel, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afz" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/table/steel, -/obj/item/weapon/tape_roll, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afA" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/table/steel, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afB" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/table/steel, -/obj/item/weapon/storage/firstaid/regular, -/obj/random/medical/lite, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afC" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afD" = ( -/obj/structure/closet/wardrobe/suit, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"afE" = ( -/obj/structure/closet/wardrobe, -/obj/item/clothing/head/fedora, -/obj/item/clothing/head/flatcap, -/obj/item/clothing/head/fedora/fluff/bowler, -/obj/item/clothing/head/bowlerhat, -/obj/item/clothing/head/that, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"afF" = ( -/obj/item/weapon/storage/fancy/cigar/havana, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"afG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"afH" = ( -/obj/machinery/blackbox_recorder, -/turf/simulated/floor/bluegrid, -/area/ai_server_room) -"afI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_server_room) -"afJ" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/storage/belt/utility, -/obj/item/clothing/mask/breath, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"afK" = ( -/turf/simulated/wall/r_wall, -/area/ai_foyer) -"afL" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Hub"; - req_access = list(16) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_foyer) -"afM" = ( -/obj/structure/closet/crate{ - name = "Camera Assembly Crate" - }, -/obj/item/weapon/camera_assembly, -/obj/item/weapon/camera_assembly, -/obj/item/weapon/camera_assembly, -/obj/item/weapon/camera_assembly, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_cyborg_station) -"afN" = ( -/obj/machinery/recharge_station, -/obj/machinery/camera/network/command{ - c_tag = "AI - Cyborg Station"; - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"afO" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"afP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/chapel) -"afQ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afR" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"afS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/emergency/eva) -"afT" = ( -/turf/simulated/floor/tiled/dark, -/area/hallway/lower/fore) -"afU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_cyborg_station) -"afV" = ( -/obj/machinery/camera, -/turf/simulated/floor/tiled/dark, -/area/ai_cyborg_station) -"afW" = ( -/turf/simulated/wall/r_wall, -/area/chapel/main) -"afX" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"afY" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/closet, -/obj/random/tool, -/obj/random/toolbox, -/obj/random/powercell, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/action_figure, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"afZ" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aga" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"agb" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"agc" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"agd" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/maintenance/medical_lower) -"age" = ( -/turf/simulated/wall, -/area/maintenance/medical_lower) -"agf" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"agg" = ( -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = -3 - }, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"agh" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/rack{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northleft, -/obj/item/clothing/mask/gas, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"agi" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/rack{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northright, -/obj/item/clothing/mask/gas, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"agj" = ( -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"agk" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"agl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"agm" = ( -/obj/machinery/camera/network/command{ - c_tag = "AI - Messaging Server"; - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/bluegrid, -/area/ai_server_room) -"agn" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ago" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"agp" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"agq" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"agr" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/wall, -/area/maintenance/lowfloor3) -"ags" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall, -/area/maintenance/lowfloor3) -"agt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/wall, -/area/maintenance/lowfloor3) -"agu" = ( -/obj/structure/symbol/sa, -/turf/simulated/wall{ - can_open = 1 - }, -/area/maintenance/lowfloor3) -"agv" = ( -/obj/structure/sign/poster, -/turf/simulated/wall, -/area/maintenance/lowfloor3) -"agw" = ( -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"agx" = ( -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"agy" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"agz" = ( -/obj/random/obstruction, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"agA" = ( -/obj/random/obstruction, -/turf/simulated/floor, -/area/maintenance/lowfloor1) -"agB" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/outline/red, -/obj/effect/floor_decal/industrial/outline/red, -/obj/effect/floor_decal/industrial/outline/red, -/obj/effect/floor_decal/industrial/outline/red, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Emergency EVA"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"agC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_server_room) -"agD" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"agE" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"agF" = ( -/obj/effect/floor_decal/chapel, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"agG" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - name = "Private AI Channel"; - pixel_x = -12; - pixel_y = -21 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/ai_foyer) -"agH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"agI" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"agJ" = ( -/obj/effect/floor_decal/chapel, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"agK" = ( -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Chapel Starboard"; - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"agL" = ( -/turf/unsimulated/wall/bronze, -/area/chapel/office) -"agM" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/chapel) -"agN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"agO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"agP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"agQ" = ( -/obj/random/obstruction, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"agR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"agS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"agT" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"agU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"agV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"agW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"agX" = ( -/turf/simulated/wall, -/area/hallway/lower/fore) -"agY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"agZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/chapel/main) -"aha" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ahb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ahc" = ( -/turf/simulated/wall, -/area/chapel/office) -"ahd" = ( -/obj/structure/closet/cabinet, -/turf/simulated/floor/bronze, -/area/chapel/office) -"ahe" = ( -/turf/simulated/floor/bronze, -/area/chapel/office) -"ahf" = ( -/obj/structure/showcase/yw/chaplain, -/turf/simulated/floor/bronze, -/area/chapel/office) -"ahg" = ( -/obj/structure/closet/cabinet, -/obj/item/rig_module/stealth_field, -/turf/simulated/floor/bronze, -/area/chapel/office) -"ahh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/starboard) -"ahi" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/starboard) -"ahj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"ahk" = ( -/obj/item/weapon/coilgun_assembly, -/turf/simulated/floor, -/area/maintenance/starboard) -"ahl" = ( -/obj/item/inflatable/door/torn, -/obj/item/weapon/tool/screwdriver, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"ahm" = ( -/obj/structure/closet/crate, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"ahn" = ( -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"aho" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"ahp" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"ahq" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ahr" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ahs" = ( -/turf/simulated/wall, -/area/maintenance/lowfloor2) -"aht" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"ahu" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"ahv" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor1) -"ahw" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ahx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"ahy" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/chapel/main) -"ahz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ahA" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ahB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"ahC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"ahD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"ahE" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/chapel/main) -"ahF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ahG" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ahH" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ahI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ahJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ahK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ahL" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/nullrod, -/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, -/turf/simulated/floor/lino, -/area/chapel/main) -"ahM" = ( -/obj/machinery/door/morgue{ - dir = 2; - name = "Religious equipment"; - req_access = list(22) - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"ahN" = ( -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"ahO" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"ahP" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "chapel"; - name = "Chapel Office Shutters"; - pixel_x = -24; - pixel_y = 26 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"ahQ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/button/remote/blast_door{ - desc = "It seems to have a gear etched into it on the bottom."; - id = "clock"; - name = "Strange control pannel"; - pixel_x = -15; - pixel_y = 25; - req_access = list(27) - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"ahR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-06"; - pixel_y = 8 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/chapel/office) -"ahS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/starboard) -"ahT" = ( -/obj/structure/table/rack, -/obj/item/weapon/extinguisher, -/obj/item/weapon/storage/belt/utility, -/obj/item/clothing/mask/gas, -/obj/random/maintenance/research, -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"ahU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ahV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ahW" = ( -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/lowfloor2) -"ahX" = ( -/turf/simulated/floor, -/area/maintenance/lowfloor2) -"ahY" = ( -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/lowfloor2) -"ahZ" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/paperplane, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/lowfloor2) -"aia" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aib" = ( -/obj/effect/floor_decal/chapel, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aic" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 2; - name = "Chapel"; - sortType = "Chapel" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aid" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 1; - name = "Maintenance Access" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_monitored/storage/emergency/eva) -"aie" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/emergency/eva) -"aif" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/ai_foyer) -"aig" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aih" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aii" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aij" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aik" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ail" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aim" = ( -/obj/effect/floor_decal/chapel, -/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/dark, -/area/chapel/main) -"ain" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aio" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"aip" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"aiq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair, -/obj/effect/landmark/start{ - name = "Chaplain" - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"air" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"ais" = ( -/turf/simulated/floor/carpet, -/area/chapel/office) -"ait" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/carpet, -/area/chapel/office) -"aiu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/weapon/reagent_containers/food/drinks/bottle/wine, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/random/drinkbottle, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aiv" = ( -/obj/machinery/space_heater, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"aiw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lowfloor3) -"aix" = ( -/obj/structure/table/rack, -/obj/item/weapon/extinguisher, -/obj/item/weapon/storage/belt/utility, -/obj/item/clothing/mask/gas, -/mob/living/simple_mob/animal/passive/mouse, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aiy" = ( -/obj/item/weapon/paper, -/turf/simulated/floor, -/area/maintenance/lowfloor2) -"aiz" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/paper, -/turf/simulated/floor, -/area/maintenance/lowfloor2) -"aiA" = ( -/obj/item/weapon/paper, -/obj/effect/rune, -/obj/effect/decal/cleanable/blood, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/lowfloor2) -"aiB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aiC" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/turf/simulated/floor/wood/broken, -/area/vacant/vacant_site/private) -"aiD" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aiE" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aiF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aiG" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aiH" = ( -/obj/random/obstruction, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"aiI" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/emergency/eva) -"aiJ" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor, -/turf/simulated/floor/wood/broken, -/area/vacant/vacant_site/private) -"aiK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aiL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/emergency/eva) -"aiM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aiN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aiO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aiP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aiQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - dir = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 0; - pixel_y = 27 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aiR" = ( -/obj/machinery/door/morgue{ - dir = 2; - name = "Confession Booth (Chaplain)"; - req_access = list(22) - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"aiS" = ( -/turf/simulated/floor/lino, -/area/chapel/office) -"aiT" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp{ - pixel_y = 10 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"aiU" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/fancy/crayons, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"aiV" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/camera{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"aiW" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/chapel/office) -"aiX" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/weapon/flame/candle/candelabra/everburn, -/turf/simulated/floor/carpet, -/area/chapel/office) -"aiY" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/carpet, -/area/chapel/office) -"aiZ" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/chapel/office) -"aja" = ( -/obj/structure/table/rack, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/turf/simulated/floor, -/area/maintenance/starboard) -"ajb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/starboard) -"ajc" = ( -/obj/structure/table/rack, -/obj/item/weapon/flame/lighter/random, -/obj/item/weapon/storage/fancy/cigarettes/dromedaryco, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"ajd" = ( -/obj/structure/closet/crate, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/flashlight, -/obj/item/weapon/storage/backpack, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aje" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajf" = ( -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajg" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajh" = ( -/turf/simulated/mineral/cave, -/area/maintenance/medical_lower) -"aji" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/reagent_containers/blood, -/turf/simulated/floor, -/area/maintenance/lowfloor2) -"ajj" = ( -/obj/item/weapon/paper_bin, -/turf/simulated/floor, -/area/maintenance/lowfloor2) -"ajk" = ( -/obj/item/weapon/reagent_containers/blood, -/turf/simulated/floor, -/area/maintenance/lowfloor2) -"ajl" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"ajn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall, -/area/maintenance/medical_lower) -"ajo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/maintenance/medical_lower) -"ajp" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall, -/area/maintenance/medical_lower) -"ajq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajr" = ( -/obj/structure/closet/crate, -/obj/item/weapon/coin/silver, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajs" = ( -/obj/structure/closet/crate, -/obj/item/clothing/shoes/boots/combat, -/obj/item/weapon/tank/air, -/obj/item/weapon/tank/air, -/obj/item/weapon/tank/air, -/obj/item/clothing/mask/gas, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/cargo, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajt" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Emergency Cold Apparel" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/emergency/eva) -"aju" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajv" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"ajw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajx" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/weapon/stool/padded, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"ajy" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"ajz" = ( -/obj/machinery/camera/network/northern_star{ - c_tag = "Hall - Recreation Mid"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"ajA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"ajB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction/wildcard, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"ajC" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ajD" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 1 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ajE" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 4 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ajF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet, -/area/chapel/main) -"ajG" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ajH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 4; - icon_state = "twindow" - }, -/obj/structure/window/reinforced/tinted{ - dir = 8; - icon_state = "twindow" - }, -/turf/simulated/floor/plating, -/area/chapel/main) -"ajI" = ( -/mob/living/simple_mob/clockwork/fluff/Ignis, -/turf/simulated/floor/lino, -/area/chapel/office) -"ajJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"ajK" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/storage/fancy/blackcandle_box, -/obj/item/weapon/storage/fancy/candle_box, -/obj/item/weapon/storage/fancy/whitecandle_box, -/turf/simulated/floor/lino, -/area/chapel/office) -"ajL" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/chapel/office) -"ajM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/starboard) -"ajN" = ( -/obj/item/clothing/gloves/rainbow, -/obj/item/clothing/head/soft/rainbow, -/obj/item/clothing/shoes/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/weapon/bedsheet/rainbow, -/obj/item/weapon/pen/crayon/rainbow, -/turf/simulated/floor, -/area/maintenance/starboard) -"ajO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"ajP" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"ajQ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"ajR" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajS" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajT" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajU" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajW" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/conveyor{ - id = "Psycheiso" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajX" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajY" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ajZ" = ( -/obj/structure/closet, -/obj/item/weapon/storage/backpack, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/firstaid, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aka" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"akb" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"akc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"akd" = ( -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled/dark, -/area/hallway/lower/fore) -"ake" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"akf" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"akg" = ( -/obj/effect/floor_decal/chapel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"akh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aki" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet, -/area/chapel/main) -"akj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"akk" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"akl" = ( -/obj/effect/floor_decal/chapel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"akm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"akn" = ( -/obj/machinery/door/morgue{ - dir = 2; - name = "Confession Booth" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ako" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - dir = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 0; - pixel_y = 27 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"akp" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/lino, -/area/chapel/office) -"akq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"akr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"aks" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"akt" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"aku" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"akv" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"akw" = ( -/obj/item/inflatable/torn, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"akx" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aky" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"akz" = ( -/turf/simulated/wall, -/area/medical/morgue) -"akA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical, -/turf/simulated/floor, -/area/medical/morgue) -"akB" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/medical/pyschwarde) -"akC" = ( -/turf/simulated/wall, -/area/medical/pyschwarde) -"akD" = ( -/obj/structure/plasticflaps{ - can_pass_lying = 0; - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Psycheiso" - }, -/turf/simulated/floor, -/area/medical/pyschwarde) -"akE" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/emergency, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"akF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"akG" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"akH" = ( -/obj/random/obstruction, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"akI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"akJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"akK" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/lower/fore) -"akL" = ( -/obj/item/weapon/stool/padded, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"akM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "chapel"; - name = "Chapel Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/chapel/office) -"akN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "chapel"; - name = "Chapel Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/chapel/office) -"akO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Chapel Office"; - req_access = list(27) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/lino, -/area/chapel/office) -"akP" = ( -/obj/machinery/door/morgue{ - dir = 2; - name = "Strange meeting room" - }, -/turf/simulated/floor/carpet, -/area/chapel/office) -"akQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/starboard) -"akR" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"akS" = ( -/obj/effect/decal/cleanable/generic, -/obj/item/weapon/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"akT" = ( -/turf/simulated/mineral/cave, -/area/maintenance/lowfloor3) -"akU" = ( -/turf/simulated/wall/r_wall, -/area/medical/virology) -"akV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"akW" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"akX" = ( -/obj/structure/morgue{ - icon_state = "morgue1"; - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"akY" = ( -/obj/structure/morgue, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"akZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"ala" = ( -/obj/structure/bed/padded, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/medical/pyschwarde) -"alb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/medical/pyschwarde) -"alc" = ( -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"ald" = ( -/obj/machinery/computer/arcade, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"ale" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"alf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"alg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"alh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"ali" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"alj" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"alk" = ( -/turf/simulated/wall, -/area/ai_monitored/storage/emergency/eva) -"all" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"alm" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aln" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"alo" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"alp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"alq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"alr" = ( -/obj/structure/showcase/yw/chaplain2, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"als" = ( -/obj/structure/showcase/yw/chaplain2, -/turf/simulated/floor/bronze, -/area/chapel/office) -"alt" = ( -/obj/structure/sign/poster, -/turf/simulated/wall, -/area/maintenance/starboard) -"alu" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"alv" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology Isolation 1" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"alw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/medical/virology) -"alx" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology Isolation 2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aly" = ( -/obj/structure/table/standard, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"alz" = ( -/obj/structure/closet/crate/medical, -/obj/item/weapon/reagent_containers/syringe, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/firstaid, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"alA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/medical_lower) -"alB" = ( -/obj/structure/table/steel, -/obj/item/weapon/autopsy_scanner, -/obj/item/weapon/surgical/scalpel, -/obj/item/weapon/surgical/cautery, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"alC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"alD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"alE" = ( -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"alF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/medical/pyschwarde) -"alG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/pyschwarde) -"alH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"alI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"alJ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/holodeck_control) -"alK" = ( -/obj/machinery/floodlight, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"alL" = ( -/turf/simulated/wall, -/area/medical/biostorage3) -"alM" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"alN" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"alO" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 9 - }, -/obj/machinery/door/window/southleft, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"alP" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 5 - }, -/obj/machinery/door/window/southright, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"alQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"alR" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/shovel, -/obj/item/weapon/shovel, -/obj/item/weapon/soap, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/emergency/eva) -"alS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/emergency/eva) -"alT" = ( -/obj/machinery/camera/network/civilian{ - c_tag = "Lower Primary Hall Fore"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"alU" = ( -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 8 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"alV" = ( -/obj/effect/floor_decal/chapel, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"alW" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"alX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"alY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"alZ" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ama" = ( -/obj/structure/symbol/clock, -/turf/simulated/wall{ - can_open = 1 - }, -/area/chapel/main) -"amb" = ( -/obj/machinery/door/blast/regular{ - id = "clock" - }, -/turf/simulated/floor/carpet, -/area/chapel/office) -"amc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"amd" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ame" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"amf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"amg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/medical/virology) -"amh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ami" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"amj" = ( -/obj/structure/table/rack, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/device/radio, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"amk" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aml" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/medical_lower) -"amm" = ( -/obj/machinery/optable, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"amn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"amo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"amp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"amq" = ( -/obj/machinery/door/window, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"amr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"ams" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"amt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"amu" = ( -/obj/structure/morgue{ - icon_state = "morgue1"; - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"amv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/medical/pyschwarde) -"amw" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/pyschwarde) -"amx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"amy" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Psychiatric Isolation"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"amz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/bed/chair, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - frequency = 1475; - icon_state = "intercom"; - listening = 1; - name = "Station Intercom (Security)"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"amA" = ( -/obj/item/weapon/gun/launcher/syringe, -/obj/item/weapon/storage/box/syringegun, -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 8 - }, -/obj/random/medical, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"amB" = ( -/obj/item/weapon/cane, -/obj/item/weapon/cane{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/weapon/cane{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/rxglasses, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"amC" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"amD" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/closet/l3closet/medical, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"amE" = ( -/obj/structure/closet/l3closet/medical, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"amF" = ( -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom1) -"amG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/emergency/eva) -"amH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/emergency/eva) -"amI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/emergency/eva) -"amJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Emergency Cold Apparel" - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/emergency/eva) -"amK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"amL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"amM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"amN" = ( -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"amO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet, -/area/chapel/main) -"amP" = ( -/obj/structure/table/woodentable, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"amQ" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/weapon/storage/fancy/candle_box, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"amR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"amS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"amT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"amU" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Chapel Office"; - req_access = list(27) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/chapel/main) -"amV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"amW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"amX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"amY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"amZ" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/weapon/flame/candle/candelabra/everburn, -/turf/simulated/floor/bronze, -/area/chapel/office) -"ana" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"anb" = ( -/obj/random/obstruction, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"anc" = ( -/obj/item/roller, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"and" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ane" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"anf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/medical/virology) -"ang" = ( -/obj/item/roller, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"anh" = ( -/obj/structure/closet/firecloset/full/double, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"ani" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"anj" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/medical/morgue) -"ank" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/floor/bluegrid, -/area/medical/morgue) -"anl" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"anm" = ( -/obj/structure/filingcabinet/chestdrawer{ - desc = "A large drawer filled with autopsy reports."; - name = "Autopsy Reports" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"ann" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"ano" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/medical/pyschwarde) -"anp" = ( -/turf/simulated/floor/tiled, -/area/medical/pyschwarde) -"anq" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/medical/pyschwarde) -"anr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "brigobs"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"ans" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Secure Gate"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/northright{ - name = "Visitation"; - req_access = list(2) - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"ant" = ( -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/structure/table/steel, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"anu" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"anv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"anw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"anx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"any" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"anz" = ( -/turf/simulated/wall, -/area/crew_quarters/kitchen/lower) -"anA" = ( -/obj/structure/kitchenspike, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"anB" = ( -/obj/machinery/gibber, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"anC" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"anD" = ( -/obj/machinery/icecream_vat, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"anE" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/kitchen/fish_farm) -"anF" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"anG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"anH" = ( -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Chapel Port"; - dir = 4 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"anI" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"anJ" = ( -/turf/simulated/floor/carpet, -/area/chapel/main) -"anK" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"anL" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"anM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"anN" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/passive/mouse, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"anO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/starboard) -"anP" = ( -/obj/machinery/cooker/oven, -/turf/simulated/floor, -/area/maintenance/starboard) -"anQ" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/head/chefhat, -/obj/item/clothing/suit/chef/classic, -/turf/simulated/floor, -/area/maintenance/starboard) -"anR" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"anS" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lowfloor3) -"anT" = ( -/obj/machinery/door/window/southright{ - dir = 1; - name = "Virology Isolation Room Three"; - req_access = list(39) - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"anU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/virology) -"anV" = ( -/turf/simulated/wall, -/area/medical/virology) -"anW" = ( -/obj/machinery/door/window/southright{ - dir = 1; - name = "Virology Isolation Room Four"; - req_access = list(39) - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"anX" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin{ - pixel_y = 0 - }, -/obj/item/weapon/pen/red{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/weapon/pen/blue{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/device/camera{ - name = "Autopsy Camera"; - pixel_x = -2; - pixel_y = 7 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"anY" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"anZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"aoa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"aob" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/medical/pyschwarde) -"aoc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/pyschwarde) -"aod" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Secondary Entry"; - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"aoe" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"aof" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "IAflash"; - pixel_x = 30; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"aog" = ( -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"aoh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"aoi" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Secondary Auxiliary Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"aoj" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/device/radio/intercom{ - broadcasting = 0; - canhear_range = 5; - dir = 2; - frequency = 1487; - icon_state = "intercom"; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -21 - }, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/device/defib_kit/loaded, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"aok" = ( -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/structure/table/steel, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/item/device/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"aol" = ( -/obj/item/weapon/storage/box/cdeathalarm_kit, -/obj/item/bodybag/cryobag{ - pixel_x = -3 - }, -/obj/item/bodybag/cryobag{ - pixel_x = -3 - }, -/obj/structure/table/steel, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"aom" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"aon" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"aoo" = ( -/obj/structure/kitchenspike, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"aop" = ( -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"aoq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"aor" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"aos" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"aot" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_foyer) -"aou" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access"; - req_access = list(16) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_cyborg_station) -"aov" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aow" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aox" = ( -/obj/structure/closet/coffin, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aoy" = ( -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aoz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aoA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aoB" = ( -/obj/structure/morgue{ - icon_state = "morgue1"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aoC" = ( -/turf/simulated/wall, -/area/chapel/chapel_morgue) -"aoD" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aoE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aoF" = ( -/turf/simulated/wall/titanium, -/area/maintenance/lowfloor3) -"aoG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aoH" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/fancy/vials, -/obj/item/weapon/storage/fancy/vials, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aoI" = ( -/obj/item/weapon/storage/box/syringes, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aoJ" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/lockbox/vials, -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aoK" = ( -/obj/item/roller, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aoL" = ( -/turf/simulated/wall, -/area/medical/medbaylower) -"aoM" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/medical/medbaylower) -"aoN" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"aoO" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"aoP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"aoQ" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"aoR" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aoS" = ( -/obj/structure/closet/secure_closet, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aoT" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aoU" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aoV" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "Psycheiso" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aoW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Secondary Storage"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage3) -"aoX" = ( -/turf/simulated/wall, -/area/medical/chemistry) -"aoY" = ( -/obj/item/device/radio/intercom/department/medbay, -/turf/simulated/wall, -/area/medical/chemistry) -"aoZ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"apa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"apb" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"apc" = ( -/turf/simulated/mineral/cave, -/area/chapel/chapel_morgue) -"apd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"ape" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/starboard) -"apf" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/starboard) -"apg" = ( -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/starboard) -"aph" = ( -/obj/structure/table/steel, -/turf/simulated/floor, -/area/maintenance/starboard) -"api" = ( -/obj/item/weapon/pickaxe/drill, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"apj" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/extinguisher, -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apk" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apl" = ( -/obj/machinery/vending/medical, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apm" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/masks, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apn" = ( -/obj/item/weapon/storage/box/syringes{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/reagent_containers/dropper, -/obj/structure/table/glass, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apo" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"app" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aps" = ( -/obj/machinery/door/window/westright{ - name = "Virology Isolation Room Two"; - req_access = list(39) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apv" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"apw" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner/blue, -/area/borealis2/elevator/medbasement) -"apx" = ( -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/borealis2/elevator/medbasement) -"apy" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/medical, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/medical/medbaylower) -"apz" = ( -/obj/machinery/requests_console/preset/medical, -/turf/simulated/wall, -/area/medical/morgue) -"apA" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/medical/morgue) -"apB" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access = list(6) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/morgue) -"apC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access = list(6) - }, -/turf/simulated/floor/tiled/white, -/area/medical/morgue) -"apD" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/structure/curtain/medical{ - name = "therapy isolation curtain" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"apE" = ( -/obj/structure/curtain/medical{ - name = "therapy isolation curtain" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"apF" = ( -/obj/structure/curtain/medical{ - name = "therapy isolation curtain" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"apG" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/structure/curtain/medical{ - name = "therapy isolation curtain" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"apH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "visitdoor"; - name = "Visitation Area"; - req_access = list(63) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/medical/pyschwarde) -"apI" = ( -/obj/machinery/vending/medical, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"apJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"apK" = ( -/obj/structure/flora/pottedplant/orientaltree, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"apL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/chemistry) -"apM" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/effect/floor_decal/corner/beige{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"apN" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"apO" = ( -/obj/structure/sign/periodic{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"apP" = ( -/obj/structure/morgue{ - icon_state = "morgue1"; - dir = 8 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"apQ" = ( -/obj/item/device/radio/intercom{ - desc = "Talk... listen through this."; - dir = 1; - name = "Station Intercom (Brig Radio)"; - pixel_x = 0; - pixel_y = 21; - wires = 7 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/chemical, -/obj/item/weapon/storage/box/pillbottles, -/obj/item/weapon/storage/box/pillbottles, -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"apR" = ( -/obj/structure/table/reinforced, -/obj/item/device/mass_spectrometer/adv, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"apS" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"apT" = ( -/obj/machinery/chemical_dispenser/full, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/beige/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"apU" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "chemcounter"; - name = "Pharmacy Counter Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/medical/chemistry) -"apV" = ( -/obj/effect/mist, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"apW" = ( -/obj/structure/railing{ - dir = 2; - flags = null - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"apX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"apY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"apZ" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"aqa" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"aqb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"aqc" = ( -/obj/effect/mist, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/hotspring, -/area/chapel/chapel_morgue) -"aqd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/button/crematorium{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aqe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aqf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aqg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aqh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aqi" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"aqj" = ( -/obj/structure/table/rack, -/obj/item/weapon/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/item/clothing/mask/gas, -/obj/item/device/flashlight, -/obj/item/clothing/glasses/meson, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor, -/area/maintenance/starboard) -"aqk" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/starboard) -"aql" = ( -/obj/structure/table/steel, -/obj/machinery/microwave, -/turf/simulated/floor, -/area/maintenance/starboard) -"aqm" = ( -/obj/structure/table/steel, -/obj/item/pizzabox/old, -/turf/simulated/floor, -/area/maintenance/starboard) -"aqn" = ( -/obj/random/contraband, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"aqo" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/regular, -/obj/random/medical/lite, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aqp" = ( -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aqq" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aqr" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/lockbox/vials, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aqs" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aqt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aqu" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/device/antibody_scanner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/corner/lime, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aqv" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aqw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aqx" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology Isolation 3"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aqy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aqz" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/borealis2/elevator/medbasement) -"aqA" = ( -/turf/simulated/floor/plating, -/area/borealis2/elevator/medbasement) -"aqB" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/flora/pottedplant/minitree, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqC" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/space_heater, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqD" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqE" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqF" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqG" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqH" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqI" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqJ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqK" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqL" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqM" = ( -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "Chemistry"; - sortType = "Chemistry" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqP" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqQ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqR" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqS" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aqT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - dir = 8; - name = "Chemistry Desk"; - req_access = list(33) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Chemistry Desk" - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"aqU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chemist" - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"aqV" = ( -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"aqW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"aqX" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"aqZ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/beakers, -/obj/machinery/bunsen_burner, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"ara" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Chemist" - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"arb" = ( -/obj/machinery/chem_master, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"arc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"ard" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"are" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"arf" = ( -/obj/structure/railing{ - dir = 2; - flags = null - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"arg" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/chapel/chapel_morgue) -"arh" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/hotspring, -/area/chapel/chapel_morgue) -"ari" = ( -/obj/structure/morgue/crematorium, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"arj" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"ark" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"arl" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"arm" = ( -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Chapel Morgue"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"arn" = ( -/turf/simulated/wall/r_wall, -/area/ai_upload) -"aro" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor, -/area/maintenance/starboard) -"arp" = ( -/obj/item/weapon/caution/cone, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"arq" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"arr" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/fancy/vials, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ars" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"art" = ( -/obj/machinery/sleeper{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aru" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"arv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/virology) -"arw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/medical/virology) -"arx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/medical/virology) -"ary" = ( -/turf/simulated/floor/tiled/white, -/area/borealis2/elevator/medbasement) -"arz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arD" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arK" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arO" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"arR" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Chemistry Laboratory"; - req_access = list(33) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"arS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"arT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"arU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"arV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"arW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"arX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"arY" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - dir = 8; - name = "Chemistry Desk"; - req_access = list(33) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Chemistry Desk" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "chemcounter"; - name = "Pharmacy Counter Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"arZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"asa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"asb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"asc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"asd" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"ase" = ( -/turf/simulated/floor/water/hotspring, -/area/chapel/chapel_morgue) -"asf" = ( -/turf/simulated/floor, -/area/chapel/chapel_morgue) -"asg" = ( -/obj/item/device/radio/intercom/department/medbay, -/turf/simulated/wall/r_wall, -/area/medical/virology) -"ash" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology lab"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"asi" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"asj" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ask" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"asl" = ( -/obj/machinery/sleep_console{ - dir = 1; - pixel_y = 10 - }, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"asm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"asn" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aso" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"asp" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology Isolation 4"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"asq" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"asr" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ass" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ast" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asu" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asv" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asx" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asy" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asz" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/bedsheetbin, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Lower Hall Port"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asA" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asB" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asC" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asD" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/flora/pottedplant/large, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asE" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asF" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/light, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asG" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asH" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asI" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asJ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asK" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Lower hallway Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asL" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asM" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"asN" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/medical/chemistry) -"asO" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/item/weapon/storage/box/pillbottles, -/obj/effect/floor_decal/corner/beige/full, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"asP" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"asQ" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"asR" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/reagentgrinder, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Chemistry"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"asS" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/hand_labeler, -/obj/machinery/light, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"asT" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"asU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"asV" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/medical/chemistry) -"asW" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"asX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"asY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"asZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"ata" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"atb" = ( -/obj/effect/mist, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"atc" = ( -/turf/simulated/wall, -/area/crew_quarters/recreation_area) -"atd" = ( -/obj/structure/sign/poster, -/turf/simulated/wall, -/area/crew_quarters/recreation_area) -"ate" = ( -/obj/machinery/porta_turret/stationary, -/turf/simulated/floor/reinforced, -/area/ai_upload) -"atf" = ( -/obj/machinery/computer/aiupload, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"atg" = ( -/obj/machinery/ai_status_display, -/turf/simulated/wall/r_wall, -/area/ai_upload) -"ath" = ( -/obj/machinery/computer/borgupload, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"ati" = ( -/obj/machinery/disease2/incubator, -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"atj" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"atk" = ( -/obj/machinery/computer/centrifuge, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"atl" = ( -/obj/machinery/disease2/diseaseanalyser, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"atm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"atn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ato" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"atp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"atq" = ( -/obj/machinery/door/window/westright{ - name = "Virology Isolation Room One"; - req_access = list(39) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"atr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ats" = ( -/obj/structure/table/standard, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"att" = ( -/obj/turbolift_map_holder/lumber/medevator, -/turf/simulated/floor/plating, -/area/borealis2/elevator/medbasement) -"atu" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"atv" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"atw" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"atx" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aty" = ( -/obj/effect/floor_decal/corner/paleblue/full, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"atz" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"atA" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Lower Annex"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"atB" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/crew_quarters/medical_restroom) -"atC" = ( -/turf/simulated/wall, -/area/crew_quarters/medical_restroom) -"atD" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/crew_quarters/medical_restroom) -"atE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Staff Room"; - req_access = list(5) - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"atF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Staff Room"; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"atG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/medmeeting) -"atH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Briefing Room"; - req_access = list(5) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"atI" = ( -/turf/simulated/wall, -/area/crew_quarters/medmeeting) -"atJ" = ( -/turf/simulated/wall, -/area/medical/biostorage2) -"atK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Secondary Storage"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"atL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical{ - req_access = list(33) - }, -/turf/simulated/floor, -/area/medical/chemistry) -"atM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"atN" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"atO" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"atP" = ( -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"atQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"atR" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"atS" = ( -/obj/machinery/computer/arcade, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"atT" = ( -/obj/structure/table/woodentable, -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"atU" = ( -/obj/structure/table/woodentable, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/item/device/paicard, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"atV" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/coin/silver, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Recreation Area Fore"; - dir = 2 - }, -/obj/item/clothing/glasses/threedglasses, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"atW" = ( -/obj/machinery/computer/arcade/orion_trail, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"atX" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"atY" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/oxygen, -/obj/item/weapon/aiModule/oneHuman, -/obj/item/weapon/aiModule/purge, -/obj/item/weapon/aiModule/antimov, -/obj/item/weapon/aiModule/teleporterOffline, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"atZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"aua" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"aub" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"auc" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"aud" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"aue" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/reset, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"auf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/starboard) -"aug" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -30 - }, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"auh" = ( -/obj/effect/floor_decal/corner/lime, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aui" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Surgery Wing Starboard"; - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - canhear_range = 5; - dir = 2; - frequency = 1487; - icon_state = "intercom"; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"auj" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"auk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aul" = ( -/obj/effect/floor_decal/corner/lime, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aum" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aun" = ( -/obj/item/roller, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"auo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aup" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"auq" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aur" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aus" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"aut" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"auu" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"auv" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"auw" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"aux" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"auy" = ( -/obj/machinery/computer/crew, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"auz" = ( -/obj/structure/bookcase/manuals/medical, -/obj/item/weapon/book/manual/stasis, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"auA" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"auB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"auC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"auD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/start{ - name = "Chief Medical Officer" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"auE" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"auF" = ( -/obj/structure/bed/chair/wheelchair, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"auG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"auH" = ( -/obj/structure/bedsheetbin, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"auI" = ( -/turf/simulated/floor/plating, -/area/medical/chemistry) -"auJ" = ( -/obj/structure/cable{ - dir = 4; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"auK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"auL" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/water/hotspring, -/area/maintenance/medical_lower) -"auM" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"auN" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"auO" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/mist, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"auP" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"auQ" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"auR" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"auS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"auT" = ( -/obj/structure/closet/lasertag/blue, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"auU" = ( -/turf/simulated/wall/r_wall, -/area/ai_upload_foyer) -"auV" = ( -/obj/machinery/ai_status_display, -/turf/simulated/wall/r_wall, -/area/ai_upload_foyer) -"auW" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"auX" = ( -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"auY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"auZ" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/nanotrasen, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"ava" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/starboard) -"avb" = ( -/obj/machinery/floodlight, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"avc" = ( -/obj/item/inflatable/torn, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"avd" = ( -/obj/machinery/disease2/isolator, -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ave" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/floor_decal/corner/lime, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avf" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/device/radio{ - anchored = 1; - broadcasting = 0; - canhear_range = 7; - frequency = 1487; - icon = 'icons/obj/items.dmi'; - icon_state = "red_phone"; - listening = 1; - name = "Virology Emergency Phone"; - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/machinery/light, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avg" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/hand_labeler, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -27 - }, -/obj/item/device/radio{ - pixel_x = -4 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avh" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Virology Laboratory"; - req_access = list(39) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avi" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Virology Laboratory"; - req_access = list(39) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avj" = ( -/obj/machinery/oxygen_pump, -/turf/simulated/wall, -/area/medical/medbaylower) -"avk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"avl" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"avm" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"avn" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"avo" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"avp" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"avq" = ( -/obj/machinery/vending/fitness, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"avr" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall, -/area/crew_quarters/medical_restroom) -"avs" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"avt" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"avu" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"avv" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"avw" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"avx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"avy" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"avz" = ( -/obj/structure/closet/wardrobe/medic_white, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/biostorage2) -"avA" = ( -/obj/item/clothing/suit/storage/fluff, -/obj/item/clothing/glasses/hud/health/prescription, -/obj/item/clothing/glasses/hud/health/prescription, -/obj/item/clothing/glasses/hud/health/prescription, -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"avB" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"avC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"avD" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/cups, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"avE" = ( -/obj/structure/closet/lasertag/red, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"avF" = ( -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"avG" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"avH" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/asimov, -/obj/item/weapon/aiModule/freeformcore, -/obj/item/weapon/aiModule/corp, -/obj/item/weapon/aiModule/paladin, -/obj/item/weapon/aiModule/robocop, -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"avI" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"avJ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"avK" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/freeform, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"avL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor, -/area/maintenance/starboard) -"avM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/starboard) -"avN" = ( -/obj/machinery/atmospherics/valve{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"avO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"avP" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"avQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"avR" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/window/phoronreinforced, -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avS" = ( -/obj/machinery/smartfridge/chemistry/virology, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/window/phoronbasic, -/turf/simulated/wall/silver, -/area/medical/virology) -"avT" = ( -/obj/machinery/computer/diseasesplicer{ - dir = 1 - }, -/obj/structure/window/phoronreinforced, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avU" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avW" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avX" = ( -/turf/simulated/wall/r_wall, -/area/medical/virologyaccess) -"avY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical{ - req_one_access = list() - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/medical/medbaylower) -"avZ" = ( -/obj/machinery/newscaster, -/turf/simulated/wall, -/area/medical/medbaylower) -"awa" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"awb" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"awc" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"awd" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"awe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"awf" = ( -/obj/machinery/vending/medical, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"awg" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/flora/skeleton, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"awh" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"awi" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/pizzabox, -/obj/item/weapon/material/ashtray/plastic, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"awj" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/item/weapon/deck/cards, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"awk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"awl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"awm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"awn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"awo" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"awp" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - name = "Grenade Crate"; - opened = 1 - }, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"awq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"awr" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"aws" = ( -/turf/simulated/wall, -/area/maintenance/maintroom1) -"awt" = ( -/turf/simulated/wall, -/area/hallway/lower/central) -"awu" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"awv" = ( -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aww" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"awx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"awy" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"awz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"awA" = ( -/obj/machinery/door/airlock/glass{ - name = "Pool" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/recreation_area) -"awB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"awC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"awD" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"awE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"awF" = ( -/obj/machinery/media/jukebox, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"awG" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"awH" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"awI" = ( -/obj/machinery/turretid/stun{ - control_area = "\improper AI Upload Chamber"; - name = "AI Upload turret control"; - pixel_x = 0; - pixel_y = 30 - }, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"awJ" = ( -/obj/machinery/camera/motion{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"awK" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"awL" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"awM" = ( -/turf/simulated/mineral/cave, -/area/maintenance/starboard) -"awN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"awO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"awP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"awQ" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"awR" = ( -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/mine/explored/lower_rock) -"awS" = ( -/obj/item/clothing/under/color/grey, -/turf/simulated/floor, -/area/mine/explored/lower_rock) -"awT" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"awU" = ( -/obj/effect/mist, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/fore) -"awV" = ( -/obj/machinery/shower{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"awW" = ( -/obj/machinery/door/airlock/glass_centcom{ - name = "Pathogen Deep Freeze" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"awX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"awY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"awZ" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/weapon/storage/box/masks, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axa" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -28; - pixel_y = -8; - req_access = list(39) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"axb" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"axc" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"axd" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "virologyquar"; - name = "Virology Emergency Quarantine Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/virologyaccess) -"axe" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/medical/medbaylower) -"axf" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbaylower) -"axg" = ( -/obj/structure/sign/biohazard, -/turf/simulated/wall/r_wall, -/area/medical/medbaylower) -"axh" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"axi" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"axj" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/bed/roller, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"axk" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/flora/pottedplant/subterranean, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"axl" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"axm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"axn" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"axo" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"axp" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"axq" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"axr" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"axs" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/reagent_containers/food/drinks/britcup, -/obj/item/weapon/reagent_containers/food/drinks/britcup, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"axt" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/recharger, -/obj/item/device/defib_kit/loaded, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"axu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"axv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"axw" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"axx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Staff Briefing Room"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medmeeting) -"axy" = ( -/obj/structure/table/standard, -/obj/item/device/defib_kit, -/obj/item/device/defib_kit, -/obj/item/device/defib_kit, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/syringes, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"axz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"axA" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Auxiliury Storage"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"axB" = ( -/obj/structure/girder, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"axC" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"axD" = ( -/obj/structure/barricade, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"axE" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom1) -"axF" = ( -/turf/simulated/floor/tiled, -/area/maintenance/maintroom1) -"axG" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/lower/central) -"axH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"axI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"axJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"axK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"axL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/lower/central) -"axM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"axN" = ( -/obj/machinery/door/airlock/glass{ - name = "Pool" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/recreation_area) -"axO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"axP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"axQ" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"axR" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"axS" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"axT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"axU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"axV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/motion{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"axW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"axX" = ( -/obj/effect/floor_decal/techfloor/corner, -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"axY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload"; - req_access = list(16); - req_one_access = list() - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"axZ" = ( -/obj/effect/floor_decal/techfloor, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera/motion, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"aya" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload"; - req_access = list(16); - req_one_access = list() - }, -/obj/effect/floor_decal/techfloor, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"ayb" = ( -/obj/effect/floor_decal/techfloor, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"ayc" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"ayd" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"aye" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"ayf" = ( -/obj/effect/floor_decal/techfloor, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"ayg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"ayh" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"ayi" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"ayj" = ( -/obj/item/weapon/oldtwohanded/spear, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/mine/explored/lower_rock) -"ayk" = ( -/obj/item/weapon/oldtwohanded/spear, -/turf/simulated/floor, -/area/mine/explored/lower_rock) -"ayl" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/inflatable/door, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"aym" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "virofreezer"; - name = "Pathogen Deep Freeze Bolts"; - pixel_y = -24; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayn" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "virology_airlock_control"; - name = "Virology Airlock Controller"; - pixel_x = 25; - pixel_y = 32; - tag_exterior_door = "virology_airlock_exterior"; - tag_interior_door = "virology_airlock_interior" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayr" = ( -/obj/machinery/door/airlock/medical{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"ays" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"ayt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"ayu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"ayv" = ( -/obj/machinery/door/airlock/medical{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access = list(39) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 0; - pixel_y = 24; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/virologyaccess) -"ayw" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "virologyquar"; - name = "Virology Emergency Quarantine Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/virologyaccess) -"ayx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/medical/medbaylower) -"ayy" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbaylower) -"ayz" = ( -/obj/machinery/door/airlock/medical{ - name = "Virology Access"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/medical/medbaylower) -"ayA" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/sign/v, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ayB" = ( -/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/white, -/area/medical/medbaylower) -"ayC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ayD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ayE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ayF" = ( -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"ayG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ayH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ayI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ayJ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ayK" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/vending/wallmed1{ - layer = 3.3; - name = "Emergency NanoMed"; - pixel_x = 28; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"ayL" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"ayM" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"ayN" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"ayO" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"ayP" = ( -/obj/machinery/requests_console/preset/medical, -/turf/simulated/wall, -/area/crew_quarters/medical_restroom) -"ayQ" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/storage/belt/medical, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"ayR" = ( -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"ayS" = ( -/obj/structure/closet/crate/radiation, -/turf/simulated/floor/tiled/dark, -/area/medical/biostorage2) -"ayT" = ( -/obj/structure/kitchenspike, -/obj/effect/gibspawner/human, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"ayU" = ( -/obj/structure/closet/crate/freezer{ - name = "freezer: Harvested organs" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"ayV" = ( -/obj/machinery/gibber, -/turf/simulated/floor/tiled/freezer, -/area/maintenance/maintroom1) -"ayW" = ( -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"ayX" = ( -/obj/structure/barricade, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"ayY" = ( -/obj/effect/landmark/start{ - name = "Janitor" - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom1) -"ayZ" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access = list(26) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/lower/central) -"aza" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"azb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"azc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"azd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aze" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"azf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/recreation_area) -"azg" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"azh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"azi" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"azj" = ( -/obj/structure/table/woodentable, -/obj/item/device/instrument/guitar, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"azk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"azl" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"azm" = ( -/obj/effect/floor_decal/corner_techfloor_grid, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"azn" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"azo" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"azp" = ( -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"azq" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"azr" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"azs" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"azt" = ( -/obj/item/clothing/under/color/grey, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/mine/explored/lower_rock) -"azu" = ( -/obj/structure/closet/crate/freezer, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azv" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology Viral Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azw" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azx" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azy" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "virologyq_airlock_control"; - name = "Virology Quarantine Access Console"; - pixel_x = 32; - pixel_y = -25; - tag_exterior_door = "virologyq_airlock_exterior"; - tag_interior_door = "virologyq_airlock_interior" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azz" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology Entry"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azA" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"azB" = ( -/obj/structure/table/steel, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = -26 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Exam room"; - dir = 1 - }, -/obj/random/medical, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"azC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel, -/area/medical/virologyaccess) -"azD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/medical/medbaylower) -"azE" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/medical/medbaylower) -"azF" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"azG" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"azH" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Lower Annex Aft"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"azI" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/item/device/radio/intercom/department/medbay{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"azJ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"azK" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/closet/wardrobe/medic_gown, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"azL" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/coatrack, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"azM" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"azN" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"azO" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/obj/structure/flora/pottedplant/orientaltree, -/turf/simulated/floor/tiled/white, -/area/medical/medbaylower) -"azP" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"azQ" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay break room"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"azR" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"azS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical, -/turf/simulated/floor, -/area/medical/biostorage2) -"azT" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"azU" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"azV" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"azW" = ( -/obj/effect/gibspawner/human, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"azX" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom1) -"azY" = ( -/obj/machinery/light/small, -/obj/structure/mopbucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom1) -"azZ" = ( -/obj/machinery/computer/timeclock/premade/west, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aAa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aAb" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aAc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aAd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aAe" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/vending/fitness, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"aAf" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"aAg" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"aAh" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"aAi" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"aAj" = ( -/obj/structure/sign/poster, -/turf/simulated/wall/r_wall, -/area/crew_quarters/recreation_area) -"aAk" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"aAl" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"aAm" = ( -/obj/machinery/porta_turret/ai_defense, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"aAn" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/effect/floor_decal/techfloor/hole/right, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"aAo" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"aAp" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor/hole, -/obj/machinery/camera/network/command{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"aAq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/inflatable/door, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"aAr" = ( -/obj/machinery/door/airlock/medical{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "virologyq_airlock_interior"; - locked = 1; - name = "Virology Quarantine Airlock"; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/access_button/airlock_interior{ - master_tag = "virologyq_airlock_control"; - pixel_x = 30; - pixel_y = -5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aAs" = ( -/turf/simulated/wall, -/area/medical/toilet) -"aAt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Rest Room"; - req_one_access = list() - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/toilet) -"aAu" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/medical/medbaylower) -"aAv" = ( -/turf/simulated/wall/r_wall, -/area/medical/medbay_emt_storage) -"aAw" = ( -/obj/machinery/door/window/northleft{ - req_one_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aAx" = ( -/obj/machinery/door/window/northright{ - req_one_access = list(5) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aAy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical, -/turf/simulated/floor, -/area/crew_quarters/medical_restroom) -"aAz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical, -/turf/simulated/floor, -/area/crew_quarters/medmeeting) -"aAA" = ( -/obj/structure/table/standard, -/obj/item/weapon/material/knife/butch, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"aAB" = ( -/obj/machinery/optable, -/obj/effect/decal/remains/unathi, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"aAC" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/white, -/area/maintenance/maintroom1) -"aAD" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aAE" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aAF" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aAG" = ( -/obj/machinery/door/airlock/glass{ - name = "Pool" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/recreation_area) -"aAH" = ( -/obj/machinery/newscaster, -/turf/simulated/wall, -/area/crew_quarters/recreation_area) -"aAI" = ( -/turf/simulated/wall, -/area/crew_quarters/pool) -"aAJ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) -"aAK" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/ai_upload_foyer) -"aAL" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/extinguisher, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aAM" = ( -/obj/machinery/washing_machine, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aAN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aAO" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/clothing/under/sterile, -/obj/item/clothing/under/sterile, -/obj/item/clothing/under/sterile, -/obj/item/clothing/under/sterile, -/obj/item/clothing/shoes/white, -/obj/item/clothing/shoes/white, -/obj/item/clothing/shoes/white, -/obj/item/clothing/shoes/white, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aAP" = ( -/obj/structure/closet/crate, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"aAQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical{ - req_one_access = list() - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/medical/medbaylower) -"aAR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aAS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aAT" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aAU" = ( -/obj/structure/toilet, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/toilet) -"aAV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aAW" = ( -/turf/simulated/wall, -/area/medical/medbay_emt_storage) -"aAX" = ( -/obj/machinery/suit_cycler/medical, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aAY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aAZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aBa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aBb" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aBc" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/item/device/multitool, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/device/defib_kit/compact/loaded, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aBd" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aBe" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/cryo) -"aBf" = ( -/obj/structure/stairs/north, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aBg" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aBh" = ( -/obj/structure/stairs/north, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aBi" = ( -/turf/simulated/floor/tiled/steel, -/area/hallway/lower/central) -"aBj" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aBk" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBl" = ( -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBm" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBn" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBo" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBp" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBq" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Pool Fore"; - dir = 2 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBr" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBs" = ( -/obj/structure/table/glass, -/obj/item/weapon/inflatable_duck, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBt" = ( -/obj/structure/closet/athletic_mixed, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBu" = ( -/obj/structure/table/glass, -/obj/item/inflatable{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/inflatable{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/inflatable{ - pixel_x = -2; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aBv" = ( -/turf/simulated/wall, -/area/ai_upload_foyer) -"aBw" = ( -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "maintbar"; - layer = 3.1; - name = "Bar Shutters" - }, -/obj/machinery/media/jukebox{ - hacked = 1 - }, -/turf/simulated/floor/lino, -/area/maintenance/blueserg) -"aBx" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aBy" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aBz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aBA" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aBB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aBC" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/clothing/gloves/sterile/latex, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aBD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aBE" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"aBF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aBG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aBH" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aBI" = ( -/obj/machinery/door/airlock{ - name = "Medical Restroom" - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aBJ" = ( -/obj/structure/undies_wardrobe{ - pixel_y = -15 - }, -/turf/simulated/wall, -/area/medical/toilet) -"aBK" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aBL" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit{ - pixel_y = -5 - }, -/obj/item/weapon/tank/oxygen{ - pixel_y = -4 - }, -/obj/item/device/suit_cooling_unit{ - pixel_y = -5 - }, -/obj/item/weapon/tank/oxygen{ - pixel_y = -4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aBM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aBN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aBO" = ( -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aBP" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical, -/obj/item/clothing/shoes/boots/winter/medical, -/obj/item/clothing/shoes/boots/winter/medical, -/obj/item/device/gps/medical, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aBQ" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aBR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aBS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aBT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aBU" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aBV" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aBW" = ( -/obj/effect/landmark{ - name = "JoinLateCryo" - }, -/obj/machinery/requests_console{ - department = "Crew Quarters"; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aBX" = ( -/obj/machinery/computer/cryopod{ - density = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aBY" = ( -/obj/effect/landmark{ - name = "JoinLateCryo" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aBZ" = ( -/obj/machinery/cryopod, -/obj/machinery/ai_status_display{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aCa" = ( -/obj/structure/cryofeed, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aCb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCc" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCg" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/pool) -"aCh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aCi" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aCj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aCk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aCl" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aCm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/medical/virology) -"aCn" = ( -/obj/machinery/door/airlock/medical{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "virologyq_airlock_exterior"; - locked = 1; - name = "Virology Quarantine Airlock"; - req_access = list(39) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "virologyq_airlock_control"; - name = "Virology Quarantine Access Button"; - pixel_x = 24; - pixel_y = 0; - req_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aCo" = ( -/obj/machinery/floodlight, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"aCp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aCq" = ( -/turf/simulated/wall/r_wall, -/area/medical/toilet) -"aCr" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aCs" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor, -/turf/simulated/floor/wood/broken, -/area/vacant/vacant_site/private) -"aCt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aCu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aCv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aCw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/medical/toilet) -"aCx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aCy" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aCz" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aCA" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aCB" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aCC" = ( -/obj/machinery/cryopod, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aCD" = ( -/obj/machinery/lapvend, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aCE" = ( -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aCF" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aCG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aCR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aCS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aCT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aCU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aCV" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aCW" = ( -/turf/simulated/wall, -/area/crew_quarters/recreation_area_restroom) -"aCX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aCY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aCZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aDa" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDb" = ( -/obj/structure/closet/wardrobe/white, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDc" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDd" = ( -/obj/machinery/computer/arcade, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDe" = ( -/obj/machinery/vending/cola, -/obj/item/trash/candy, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDf" = ( -/obj/machinery/vending/snack, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology Quarantine North" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDg" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDh" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDk" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDl" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/window/reinforced/tinted, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aDm" = ( -/obj/machinery/door/window/southleft, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aDn" = ( -/obj/structure/window/reinforced/tinted, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aDo" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aDp" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aDq" = ( -/obj/item/device/radio/intercom{ - dir = 2; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aDr" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aDs" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Recovery Ward"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aDt" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_storage) -"aDu" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aDv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aDw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aDx" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aDy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aDz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aDA" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/longue_area) -"aDB" = ( -/turf/simulated/wall, -/area/crew_quarters/longue_area) -"aDC" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aDD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aDE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aDF" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/unsimulated/beach/sand, -/area/crew_quarters/pool) -"aDG" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/unsimulated/beach/sand, -/area/crew_quarters/pool) -"aDH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/water/indoors, -/area/crew_quarters/pool) -"aDI" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"aDJ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"aDK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aDL" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5; - pixel_y = 0 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aDM" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aDN" = ( -/obj/machinery/shower{ - dir = 8; - icon_state = "shower"; - pixel_x = -5; - pixel_y = 0 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aDO" = ( -/obj/item/weapon/soap/nanotrasen, -/obj/item/weapon/soap/nanotrasen, -/obj/structure/table/standard, -/obj/random/soap, -/obj/item/clothing/under/bathrobe, -/obj/item/clothing/under/bathrobe, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aDP" = ( -/obj/machinery/washing_machine, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aDQ" = ( -/turf/simulated/wall, -/area/vacant/vacant_site/private) -"aDR" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/private) -"aDS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aDT" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDV" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aDW" = ( -/obj/item/inflatable/torn, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aDX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aDY" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5; - pixel_y = 0 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aDZ" = ( -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aEa" = ( -/obj/structure/curtain/open/shower/medical, -/obj/machinery/shower{ - dir = 8; - icon_state = "shower"; - pixel_x = -5; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aEb" = ( -/obj/structure/ladder/updown, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aEc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineeringatmos{ - name = "Pipe-Power Floor Transfer" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medical_lower) -"aEd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/medical_lower) -"aEe" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aEf" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aEg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aEh" = ( -/obj/structure/table/standard, -/obj/item/weapon/material/kitchen/utensil/fork, -/obj/item/weapon/material/kitchen/utensil/spoon{ - pixel_x = 2 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Cafeteria Fore"; - dir = 2 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aEi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aEj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aEk" = ( -/obj/structure/table/standard, -/obj/item/weapon/material/kitchen/utensil/fork, -/obj/item/weapon/material/kitchen/utensil/spoon{ - pixel_x = 2 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aEl" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aEm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/unsimulated/beach/sand, -/area/crew_quarters/pool) -"aEn" = ( -/turf/unsimulated/beach/sand, -/area/crew_quarters/pool) -"aEo" = ( -/turf/simulated/floor/water/indoors, -/area/crew_quarters/pool) -"aEp" = ( -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"aEq" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"aEr" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aEs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aEt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aEu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aEv" = ( -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aEw" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aEx" = ( -/turf/simulated/floor, -/turf/simulated/floor/wood/broken, -/area/vacant/vacant_site/private) -"aEy" = ( -/turf/simulated/floor/wood, -/area/vacant/vacant_site/private) -"aEz" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/morgue) -"aEA" = ( -/turf/simulated/mineral/cave, -/area/vacant/vacant_site/private) -"aEB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor, -/area/maintenance/lowfloor3) -"aEC" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/double, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aED" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aEE" = ( -/obj/machinery/door/window/westright{ - name = "Virology Isolation Room Two"; - req_access = list(39) - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aEF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aEG" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/toy/plushie/farwa, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aEH" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/box/masks, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aEI" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aEJ" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aEK" = ( -/obj/machinery/vending/wallmed1, -/turf/simulated/wall/r_wall, -/area/medical/virology) -"aEL" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/freezer, -/area/medical/toilet) -"aEM" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aEN" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/medical_lower) -"aEO" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"aEP" = ( -/obj/machinery/cryopod/robot, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aEQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aER" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aES" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aET" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aEU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aEV" = ( -/obj/machinery/cryopod/robot, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aEW" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aEX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/cryo) -"aEY" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aEZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aFa" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aFb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aFc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aFd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aFe" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aFf" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aFg" = ( -/obj/item/weapon/bikehorn/rubberducky, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aFh" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed"; - name = "Clothing Storage" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/recreation_area_restroom) -"aFi" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_site/private) -"aFj" = ( -/obj/structure/table/bench/standard, -/turf/simulated/floor/lino, -/area/vacant/vacant_site/private) -"aFk" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/lino, -/area/vacant/vacant_site/private) -"aFl" = ( -/obj/structure/table/rack/shelf, -/obj/item/device/taperecorder, -/obj/item/device/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detectives camera"; - pictures_left = 30; - pixel_x = 2; - pixel_y = 3 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_site/private) -"aFm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aFn" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aFo" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aFp" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aFq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aFr" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aFs" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aFt" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/toy/plushie/therapy/blue, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aFu" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/toy/plushie/kitten, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aFv" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aFw" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aFx" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"aFy" = ( -/obj/structure/disposalpipe/up, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aFz" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aFA" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 1 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/medical_lower) -"aFB" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aFC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aFD" = ( -/obj/structure/showcase, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aFE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/closet/emcloset, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aFF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aFG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/weapon/storage/toolbox/emergency, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aFH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aFI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aFJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aFK" = ( -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aFL" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aFM" = ( -/obj/machinery/door/airlock/glass{ - name = "Pool" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"aFN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aFO" = ( -/obj/structure/table/glass, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aFP" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aFQ" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aFR" = ( -/obj/machinery/smartfridge/chemistry/chemvator/down, -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"aFS" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/weapon/folder, -/turf/simulated/floor/lino, -/area/vacant/vacant_site/private) -"aFT" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/security/range) -"aFU" = ( -/obj/structure/safe/floor, -/obj/item/device/radio_jammer, -/obj/item/weapon/storage/box/camerabug, -/turf/simulated/floor/wood, -/area/vacant/vacant_site/private) -"aFV" = ( -/obj/structure/disposalpipe/down{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aFW" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aFX" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "16-0" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/broken{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aFY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aFZ" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"aGa" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aGb" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"aGc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aGd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aGe" = ( -/obj/machinery/door/airlock/glass{ - frequency = null; - id_tag = "cryostorage_shuttle_berth_hatch"; - name = "Cryogenic Storage" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo) -"aGf" = ( -/obj/machinery/door/airlock/glass{ - name = "Cryogenic Storage" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo) -"aGg" = ( -/obj/machinery/door/airlock/glass{ - name = "Cryogenic Storage" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo) -"aGh" = ( -/obj/structure/closet/wardrobe/grey, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aGi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aGj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/crew_quarters/sleep/cryo) -"aGk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aGl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aGm" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aGn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aGo" = ( -/obj/machinery/camera/autoname, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aGp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aGq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aGr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aGs" = ( -/obj/machinery/door/airlock/glass{ - name = "Pool" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"aGt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aGu" = ( -/obj/structure/table/glass, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/chemical_dispenser/bar_soft, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aGv" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aGw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aGx" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aGy" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aGz" = ( -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aGA" = ( -/turf/simulated/floor/plating, -/turf/simulated/floor/wood/broken, -/area/vacant/vacant_site/private) -"aGB" = ( -/obj/structure/closet/cabinet, -/obj/item/device/uv_light, -/obj/item/weapon/storage/box/evidence, -/turf/simulated/floor/wood, -/area/vacant/vacant_site/private) -"aGC" = ( -/obj/item/trash/snack_bowl, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aGD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aGE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aGF" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aGG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aGH" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aGI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aGJ" = ( -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aGK" = ( -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aGL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aGM" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aGN" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aGO" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aGP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aGQ" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - autoclose = 1; - dir = 2; - id_tag = null; - name = "Laundry"; - req_access = list() - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monofloor, -/area/crew_quarters/sleep/cryo) -"aGR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aGS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aGT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aGU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aGV" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aGW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aGX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aGY" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aGZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aHa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aHb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/crew_quarters/pool) -"aHc" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aHd" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aHe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aHf" = ( -/turf/simulated/wall, -/area/maintenance/maintroom3) -"aHg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aHh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology Quarantine South"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aHi" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aHj" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/box/cups, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aHk" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aHl" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/microwave, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aHm" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/device/radio{ - anchored = 1; - broadcasting = 0; - canhear_range = 7; - frequency = 1487; - icon = 'icons/obj/items.dmi'; - icon_state = "red_phone"; - listening = 1; - name = "Virology Emergency Phone"; - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aHn" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aHo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aHp" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aHq" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/medical_lower) -"aHr" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aHs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aHt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aHu" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/fish) -"aHv" = ( -/turf/simulated/mineral/cave, -/area/maintenance/fish) -"aHw" = ( -/turf/simulated/wall, -/area/maintenance/fish) -"aHx" = ( -/obj/structure/closet/crate/mimic/cointoss, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aHy" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aHz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aHA" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aHB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aHC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aHD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aHE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aHF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aHG" = ( -/obj/structure/flora/pottedplant, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aHH" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aHI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aHJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aHK" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aHL" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom3) -"aHM" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom3) -"aHN" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/beakers, -/obj/machinery/bunsen_burner, -/obj/item/weapon/storage/pill_bottle/phenethylamine, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom3) -"aHO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aHP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall, -/area/medical/virology) -"aHQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall/r_wall, -/area/medical/virology) -"aHR" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/extinguisher, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aHS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aHT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aHU" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aHV" = ( -/obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/turf/simulated/floor/wood/broken, -/area/maintenance/maintroom6) -"aHW" = ( -/obj/structure/sign/poster, -/turf/simulated/wall, -/area/crew_quarters/sleep/cryo) -"aHX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aHY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aHZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIb" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aIc" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aId" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aIe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aIf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aIg" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/neutral, -/area/crew_quarters/longue_area) -"aIh" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"aIi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aIj" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/unsimulated/beach/sand, -/area/crew_quarters/pool) -"aIk" = ( -/obj/effect/floor_decal/spline/plain, -/turf/unsimulated/beach/sand, -/area/crew_quarters/pool) -"aIl" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/indoors, -/area/crew_quarters/pool) -"aIm" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"aIn" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"aIo" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aIp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aIq" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aIr" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aIs" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aIt" = ( -/obj/item/weapon/storage/pill_bottle/happy, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom3) -"aIu" = ( -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom3) -"aIv" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom3) -"aIw" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/maintenance/maintroom3) -"aIx" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aIy" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aIz" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/random/soap, -/obj/random/soap, -/obj/random/soap, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aIA" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/towel, -/obj/item/weapon/towel, -/obj/item/weapon/towel, -/obj/item/weapon/towel, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aIB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aIC" = ( -/obj/structure/sink{ - pixel_y = 18 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aID" = ( -/obj/structure/sink{ - pixel_y = 18 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aIE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aIF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/turf/simulated/floor/wood/broken, -/area/maintenance/maintroom6) -"aIG" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/crew_quarters/sleep/cryo) -"aIH" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aII" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aIJ" = ( -/obj/item/stack/material/wood{ - amount = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/turf/simulated/floor/wood/broken, -/area/maintenance/maintroom6) -"aIK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aIL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aIM" = ( -/obj/structure/closet/wardrobe/white, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIN" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIO" = ( -/obj/structure/closet/wardrobe/black, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIP" = ( -/obj/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "plant-01" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIQ" = ( -/obj/structure/closet/wardrobe/suit, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIR" = ( -/obj/structure/closet/wardrobe/xenos, -/obj/item/clothing/suit/tajaran/furs, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 4; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIS" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIT" = ( -/obj/machinery/washing_machine, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIU" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"aIV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aIW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aIX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aIY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aIZ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aJa" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aJb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aJc" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aJd" = ( -/obj/item/weapon/storage/box/pillbottles, -/obj/item/weapon/storage/pill_bottle/zoom, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom3) -"aJe" = ( -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom3) -"aJf" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aJg" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aJh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aJi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aJj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aJk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aJl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aJm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aJn" = ( -/obj/machinery/vending/fishing, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/fish_farm) -"aJo" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aJp" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/engineeringatmos{ - name = "Pipe-Power Floor Transfer" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medical_lower) -"aJq" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aJr" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aJs" = ( -/turf/simulated/mineral/cave, -/area/maintenance/maintroom2) -"aJt" = ( -/turf/simulated/wall, -/area/maintenance/maintroom2) -"aJu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aJv" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aJw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aJx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aJy" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/fish) -"aJz" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/fish) -"aJA" = ( -/turf/simulated/wall, -/area/holodeck_control) -"aJB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aJC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aJD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aJE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aJF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aJG" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aJH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aJI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aJJ" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aJK" = ( -/obj/item/weapon/storage/pill_bottle/zoom, -/turf/simulated/floor/tiled, -/area/maintenance/maintroom3) -"aJL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aJM" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aJN" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aJO" = ( -/obj/structure/closet/crate, -/obj/item/clothing/mask/gas, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aJP" = ( -/obj/structure/table/standard, -/obj/structure/plushie/drone, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aJQ" = ( -/obj/structure/table/standard, -/obj/item/toy/plushie/octopus, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aJR" = ( -/turf/simulated/floor/wood, -/area/maintenance/maintroom2) -"aJS" = ( -/obj/structure/table/standard, -/obj/item/weapon/fluff/fidgetspinner, -/obj/item/weapon/storage/backpack/chameleon, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aJT" = ( -/obj/structure/table/standard, -/obj/item/toy/stickhorse, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aJU" = ( -/turf/simulated/floor, -/area/maintenance/fish) -"aJV" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor, -/area/maintenance/fish) -"aJW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/fish) -"aJX" = ( -/obj/random/maintenance/engineering, -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/turf/simulated/floor, -/area/maintenance/fish) -"aJY" = ( -/obj/structure/sign/poster, -/turf/simulated/wall, -/area/maintenance/fish) -"aJZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/fish) -"aKa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/fish) -"aKb" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/closet/crate, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/fish) -"aKc" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/alphadeck) -"aKd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 9 - }, -/turf/simulated/floor/plating, -/area/holodeck_control) -"aKe" = ( -/turf/simulated/floor/grass, -/area/hydroponics) -"aKf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"aKg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aKh" = ( -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aKi" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/lower) -"aKj" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aKk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aKl" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aKm" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aKn" = ( -/obj/structure/table/glass, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aKo" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aKp" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Pool Aft"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aKq" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aKr" = ( -/obj/structure/table/glass, -/obj/machinery/light, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = -27 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aKs" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aKt" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aKu" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aKv" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aKw" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aKx" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aKy" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower/medical, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/northright, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aKz" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower/medical, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/window/northright, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aKA" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower/medical, -/obj/machinery/door/window/northright, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aKB" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aKC" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aKD" = ( -/obj/structure/table/standard, -/obj/structure/plushie/carp, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aKE" = ( -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aKF" = ( -/obj/item/weapon/pickaxe, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fish) -"aKG" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor, -/area/maintenance/fish) -"aKH" = ( -/obj/item/stack/material/glass/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/fish) -"aKI" = ( -/obj/item/weapon/material/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/fish) -"aKJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/fish) -"aKK" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/holodeck_control) -"aKL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 9 - }, -/turf/simulated/floor/plating, -/area/holodeck_control) -"aKM" = ( -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aKN" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"aKO" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"aKP" = ( -/obj/structure/stairs/south, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aKQ" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aKR" = ( -/obj/structure/stairs/south, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aKS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aKT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness Area" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/pool) -"aKU" = ( -/obj/structure/sign/poster, -/turf/simulated/wall, -/area/crew_quarters/pool) -"aKV" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/recreation_area_restroom) -"aKW" = ( -/obj/structure/ore_box, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aKX" = ( -/obj/structure/table/standard, -/obj/item/toy/sword, -/obj/item/toy/bouquet/fake, -/turf/simulated/floor/wood, -/area/maintenance/maintroom2) -"aKY" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor, -/area/maintenance/fish) -"aKZ" = ( -/obj/item/toy/figure/clown, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fish) -"aLa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aLb" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor, -/area/maintenance/fish) -"aLc" = ( -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"aLd" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aLe" = ( -/turf/simulated/wall, -/area/hydroponics) -"aLf" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 10 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"aLg" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/lower/central) -"aLh" = ( -/turf/simulated/wall, -/area/crew_quarters/fitness) -"aLi" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/fitness) -"aLj" = ( -/obj/structure/closet/athletic_mixed, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLk" = ( -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLl" = ( -/obj/machinery/fitness/heavy/lifter, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLm" = ( -/obj/structure/closet/athletic_mixed, -/obj/item/clothing/shoes/boots/jackboots{ - armor = list("melee" = 69, "bullet" = 69, "laser" = 69, "energy" = 69, "bomb" = 69, "bio" = 69, "rad" = 69); - desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom"; - name = "Dhaeleena's Jackboots" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLn" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLo" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLp" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLr" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLs" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness) -"aLt" = ( -/obj/item/hoist_kit, -/turf/simulated/floor/plating, -/area/maintenance/lowfloor3) -"aLu" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/turf/simulated/floor, -/area/maintenance/medical_lower) -"aLv" = ( -/obj/structure/table/standard, -/obj/item/toy/spinningtoy, -/turf/simulated/floor/wood, -/area/maintenance/maintroom2) -"aLw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintroom2) -"aLx" = ( -/obj/structure/table/standard, -/obj/item/toy/nanotrasenballoon, -/obj/item/toy/blink, -/turf/simulated/floor/wood, -/area/maintenance/maintroom2) -"aLy" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/fish) -"aLz" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/fish) -"aLA" = ( -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/fish) -"aLB" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Holodeck Control"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"aLC" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"aLD" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck Control" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"aLE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 9 - }, -/turf/simulated/floor/plating, -/area/holodeck_control) -"aLF" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aLG" = ( -/mob/living/simple_mob/animal/passive/chicken/clucky, -/turf/simulated/floor/grass, -/area/hydroponics) -"aLH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aLI" = ( -/obj/structure/sink/puddle, -/turf/simulated/floor/grass, -/area/hydroponics) -"aLJ" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/closet/crate/hydroponics{ - desc = "All you need to start your own honey farm."; - name = "beekeeping crate" - }, -/obj/item/beehive_assembly, -/obj/item/bee_smoker, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/bee_pack, -/obj/item/weapon/tool/crowbar, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aLK" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/hydroponics) -"aLL" = ( -/obj/machinery/light_construct, -/turf/simulated/floor/plating, -/turf/simulated/floor/wood/broken, -/area/maintenance/maintroom6) -"aLM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness) -"aLN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLP" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aLR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aLS" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aLT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aLU" = ( -/obj/structure/table/standard, -/obj/item/toy/owl, -/turf/simulated/floor/wood, -/area/maintenance/maintroom2) -"aLV" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/turf/simulated/floor, -/area/maintenance/fish) -"aLW" = ( -/obj/item/clothing/shoes/clown_shoes, -/obj/item/clothing/mask/gas/clown_hat, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fish) -"aLX" = ( -/obj/random/obstruction, -/turf/simulated/floor, -/area/maintenance/fish) -"aLY" = ( -/obj/structure/closet/crate, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/fish) -"aLZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"aMa" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper{ - desc = ""; - info = "Brusies sustained in the holodeck can be healed simply by sleeping."; - name = "Holodeck Disclaimer" - }, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"aMb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 9 - }, -/turf/simulated/floor/plating, -/area/holodeck_control) -"aMc" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"aMd" = ( -/turf/simulated/floor/beach/sand/desert, -/area/crew_quarters/kitchen/fish_farm) -"aMe" = ( -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aMf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aMg" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aMh" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aMi" = ( -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"aMj" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"aMk" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/reagentgrinder, -/obj/item/weapon/reagent_containers/spray/plantbgone, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aMl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aMm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMo" = ( -/obj/machinery/fitness/punching_bag/clown, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMr" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/glasses/threedglasses, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMs" = ( -/obj/machinery/door/airlock{ - name = "Sauna Unit 1" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMt" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "sauna1" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness) -"aMu" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "sauna2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/fitness) -"aMv" = ( -/obj/machinery/door/airlock{ - name = "Sauna Unit 2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMw" = ( -/obj/machinery/light/small, -/turf/simulated/floor, -/area/maintenance/starboard) -"aMx" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aMy" = ( -/obj/structure/table/standard, -/obj/item/toy/crossbow, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aMz" = ( -/obj/structure/table/standard, -/obj/item/toy/plushie/corgi, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aMA" = ( -/obj/item/clothing/under/rank/clown, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fish) -"aMB" = ( -/obj/item/clothing/gloves/boxing/blue, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aMC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aMD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aME" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aMG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aMH" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"aMI" = ( -/obj/machinery/computer/HolodeckControl, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"aMJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 9 - }, -/turf/simulated/floor/plating, -/area/holodeck_control) -"aMK" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aML" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access = list(28) - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/lower) -"aMM" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/effect/landmark/start{ - name = "Gardener" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aMN" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aMO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aMP" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aMQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aMR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aMS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness Area" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/fitness) -"aMT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/fitness) -"aMU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMV" = ( -/obj/machinery/fitness/punching_bag/clown, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMX" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/coin/silver, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMY" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aMZ" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aNb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aNc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aNd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aNe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aNf" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aNg" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/maintenance/security_lower) -"aNh" = ( -/turf/simulated/wall, -/area/maintenance/security_lower) -"aNi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aNj" = ( -/obj/structure/table/standard, -/obj/item/toy/plushie/face_hugger, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aNk" = ( -/obj/structure/table/standard, -/obj/item/toy/cultsword, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aNl" = ( -/obj/structure/table/standard, -/obj/item/toy/eight_ball, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aNm" = ( -/obj/structure/table/standard, -/obj/structure/plushie/ian, -/obj/item/toy/katana, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom2) -"aNn" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aNo" = ( -/obj/random/obstruction, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/fish) -"aNp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aNq" = ( -/obj/machinery/floodlight, -/turf/simulated/floor, -/area/maintenance/fish) -"aNr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aNs" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"aNt" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"aNu" = ( -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"aNv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aNw" = ( -/obj/structure/closet/chefcloset, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"aNx" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers, -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"aNy" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"aNz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aNA" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aND" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNE" = ( -/obj/structure/table/bench/padded, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNF" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNG" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNH" = ( -/obj/structure/table/bench/padded, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNI" = ( -/obj/structure/dogbed, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/item/toy/plushie/lizard, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/starboard) -"aNJ" = ( -/obj/structure/frame{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/starboard) -"aNK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aNL" = ( -/obj/item/toy/plushie/kitten{ - desc = "An odd appearing, cryptic plush of a cat."; - name = "Pablo" - }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aNM" = ( -/obj/item/clothing/under/batter, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aNN" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aNO" = ( -/obj/item/taperoll/police, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aNP" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aNQ" = ( -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aNR" = ( -/turf/simulated/mineral/cave, -/area/holodeck_control) -"aNS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"aNT" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aNU" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled, -/area/crew_quarters/fitness) -"aNV" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNW" = ( -/obj/machinery/scale, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNX" = ( -/obj/machinery/scale, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 4; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNY" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aNZ" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = -27 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOb" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/item/device/radio/intercom{ - dir = 2; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOc" = ( -/obj/structure/table/bench/padded, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOe" = ( -/obj/machinery/button/windowtint{ - id = "sauna1"; - pixel_x = 24 - }, -/obj/machinery/space_heater, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOf" = ( -/obj/machinery/button/windowtint{ - id = "sauna2"; - pixel_x = -24 - }, -/obj/machinery/space_heater, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOh" = ( -/obj/structure/table/bench/padded, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/starboard) -"aOj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/starboard) -"aOk" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/starboard) -"aOl" = ( -/obj/structure/disposalpipe/up{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/starboard) -"aOm" = ( -/obj/item/clothing/shoes/boots/jackboots{ - desc = "Very old and worn baseball cleats."; - name = "baseball cleats" - }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aOn" = ( -/obj/item/clothing/head/soft/black{ - desc = "Its a dusty old cap, It hides most your eyes." - }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aOo" = ( -/obj/random/obstruction, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/security_lower) -"aOp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aOq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aOr" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aOs" = ( -/turf/simulated/mineral/cave, -/area/maintenance/security_lower) -"aOt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/security_lower) -"aOw" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aOx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aOy" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/kitchen/fish_farm) -"aOz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"aOA" = ( -/turf/simulated/floor/water/indoors, -/area/crew_quarters/kitchen/fish_farm) -"aOB" = ( -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"aOC" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access = newlist(); - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aOD" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aOE" = ( -/obj/item/clothing/gloves/boxing/yellow, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aOF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aOG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness Area" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/fitness) -"aOH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOI" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/cups, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aOJ" = ( -/obj/structure/frame/computer, -/turf/simulated/floor, -/area/maintenance/starboard) -"aOK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/starboard) -"aOL" = ( -/obj/structure/frame{ - anchored = 1 - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aOM" = ( -/turf/simulated/floor/tiled, -/area/maintenance/starboard) -"aON" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/starboard) -"aOO" = ( -/obj/item/weapon/material/twohanded/baseballbat{ - desc = "This bat looks very off."; - health = 500 - }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aOP" = ( -/obj/structure/table/standard, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aOQ" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aOR" = ( -/turf/simulated/wall/r_wall, -/area/security/prison) -"aOU" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Hydroponics"; - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aOV" = ( -/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/airlock/glass{ - name = "Hydroponics"; - req_access = newlist(); - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aOW" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aOX" = ( -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aOY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aOZ" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/item/seeds/wheatseed, -/obj/item/seeds/wheatseed, -/turf/simulated/floor/grass, -/area/hydroponics) -"aPa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aPb" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPc" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPg" = ( -/obj/machinery/door/airlock{ - name = "Sauna Unit 1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aPh" = ( -/obj/machinery/door/airlock{ - name = "Sauna Unit 2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"aPi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/starboard) -"aPj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/newspaper, -/turf/simulated/floor, -/area/maintenance/starboard) -"aPk" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/turf/simulated/floor/plating, -/area/security/prison) -"aPl" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, -/obj/item/weapon/weldingtool, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aPm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aPn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aPo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aPp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aPq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/security_lower) -"aPr" = ( -/turf/simulated/floor, -/area/maintenance/security_lower) -"aPs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"aPt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"aPu" = ( -/obj/machinery/seed_storage/garden, -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aPv" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/material/knife/machete/hatchet, -/obj/item/weapon/material/minihoe, -/obj/item/weapon/material/minihoe, -/obj/item/weapon/material/knife/machete/hatchet, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aPw" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -26 - }, -/obj/machinery/vending/hydronutrients, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aPx" = ( -/obj/machinery/door/airlock/freezer{ - name = "Kitchen cold room"; - req_access = list(28) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"aPy" = ( -/obj/machinery/door/airlock/glass{ - name = "Plant-Chemical Lab"; - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aPz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"aPA" = ( -/obj/machinery/honey_extractor, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Hydroponics"; - dir = 1 - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aPB" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/weapon/plantspray/pests, -/obj/item/weapon/material/minihoe, -/turf/simulated/floor/grass, -/area/hydroponics) -"aPC" = ( -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/kitchen/fish_farm) -"aPD" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"aPE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aPF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aPG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aPH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Fitness Room"; - sortType = "Fitness Room" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/starboard) -"aPL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aPM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPO" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aPQ" = ( -/turf/simulated/wall, -/area/hallway/primary/starboard) -"aPR" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/starboard) -"aPS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/starboard) -"aPT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aPU" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/security_lower) -"aPV" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Security Maintenance"; - req_access = list(63); - req_one_access = list(1) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/maintenance/security_lower) -"aPW" = ( -/turf/simulated/mineral/cave, -/area/security/prison) -"aPX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/security/prison) -"aPY" = ( -/obj/structure/closet/crate, -/obj/item/clothing/glasses/meson/prescription, -/obj/item/weapon/storage/box/lights/mixed, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aPZ" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aQa" = ( -/obj/structure/closet/wardrobe/grey, -/obj/item/weapon/storage/backpack, -/obj/item/weapon/storage/backpack, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aQb" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/storage/belt/utility, -/obj/item/clothing/mask/breath, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aQc" = ( -/obj/item/device/instrument/harmonica, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aQd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aQe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aQf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aQg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"aQh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/security_lower) -"aQi" = ( -/turf/simulated/wall, -/area/vacant/vacant_site) -"aQj" = ( -/turf/simulated/floor, -/area/vacant/vacant_site) -"aQk" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aQl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aQm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aQn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aQo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aQp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aQq" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/fish) -"aQr" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aQs" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aQt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"aQu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aQv" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Hydroponics"; - sortType = "Hydroponics" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aQw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aQx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aQy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/starboard) -"aQz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aQA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aQB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aQC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aQD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aQE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aQF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aQG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aQH" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aQI" = ( -/obj/structure/closet, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/starboard) -"aQJ" = ( -/turf/simulated/mineral/cave, -/area/security/range) -"aQK" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/target_stake, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aQL" = ( -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aQM" = ( -/turf/simulated/floor/plating, -/area/security/range) -"aQN" = ( -/turf/simulated/wall/r_wall, -/area/security/range) -"aQO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/security/prison) -"aQP" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Security Maintenance"; - req_one_access = list(1,18) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/security/prison) -"aQQ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aQR" = ( -/obj/machinery/recharge_station, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/security/prison) -"aQS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/turf/simulated/floor, -/area/security/prison) -"aQT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/security/prison) -"aQU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/turf/simulated/floor, -/area/security/prison) -"aQV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance/sec{ - name = "Security Maintenance"; - req_access = list(1,12) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aQW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/security_lower) -"aQX" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/security_lower) -"aQY" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"aQZ" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/central) -"aRa" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/central) -"aRb" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/central) -"aRc" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/lower/central) -"aRd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aRe" = ( -/turf/simulated/wall, -/area/vacant/vacant_office) -"aRf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/curtain/black, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"aRg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aRh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aRi" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aRj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aRk" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/starboard) -"aRl" = ( -/turf/simulated/wall, -/area/security/prison) -"aRm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aRn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aRo" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - icon_state = "n2o_map"; - dir = 1 - }, -/turf/simulated/floor, -/area/security/prison) -"aRp" = ( -/obj/machinery/atmospherics/valve/digital, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/security/prison) -"aRq" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled, -/area/security/prison) -"aRr" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aRs" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/security/prison) -"aRt" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aRu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/security/sorting) -"aRv" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aRw" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "prison" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aRx" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "prison" - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aRy" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aRz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aRA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/security_lower) -"aRB" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor, -/area/vacant/vacant_site) -"aRC" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aRD" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/central) -"aRE" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/central) -"aRF" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/central) -"aRH" = ( -/obj/structure/table/glass, -/obj/machinery/camera/network/northern_star{ - c_tag = "Hall - Central Primary Fore Port 1"; - dir = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/lower/central) -"aRI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/lower/central) -"aRJ" = ( -/turf/simulated/wall, -/area/storage/emergency_storage/emergency4) -"aRK" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency4) -"aRL" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/weapon/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/item/clothing/glasses/meson, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage/emergency4) -"aRM" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/extinguisher, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage/emergency4) -"aRN" = ( -/turf/simulated/wall, -/area/vacant/vacant_shop) -"aRO" = ( -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aRP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aRQ" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aRR" = ( -/obj/structure/table/gamblingtable, -/obj/structure/safe/floor, -/obj/item/weapon/storage/bag/cash, -/obj/item/weapon/gun/projectile/pistol, -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aRS" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aRT" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aRU" = ( -/obj/structure/bed/chair/comfy/brown, -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aRV" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aRW" = ( -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aRX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aRY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aRZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aSa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aSb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aSc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aSd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aSe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aSf" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aSg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aSh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"aSi" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/hallway/primary/starboard) -"aSj" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aSk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aSl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aSm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aSn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aSo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSp" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSq" = ( -/obj/machinery/vending/food/prison, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSr" = ( -/obj/machinery/vending/sovietsoda, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/machinery/door/airlock/maintenance/sec{ - name = "Riot Control"; - req_access = list(1) - }, -/turf/simulated/floor, -/area/security/prison) -"aSt" = ( -/turf/simulated/floor/tiled, -/area/security/prison) -"aSu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSv" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aSw" = ( -/turf/simulated/wall, -/area/security/sorting) -"aSx" = ( -/turf/simulated/floor/tiled, -/area/security/sorting) -"aSy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aSz" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aSA" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/kitchen/fish_farm) -"aSB" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aSC" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aSD" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/central) -"aSE" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/central) -"aSF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aSG" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency4) -"aSH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency4) -"aSI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency4) -"aSJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency4) -"aSK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aSL" = ( -/obj/structure/table/rack{ - dir = 4 - }, -/obj/item/weapon/storage/photo_album, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aSM" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor, -/area/vacant/vacant_shop) -"aSN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aSO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aSP" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/device/flashlight/lamp/green, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aSQ" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aSR" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aSS" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aST" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/curtain/black, -/obj/machinery/door/airlock{ - name = "Vacant Office" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/vacant/vacant_office) -"aSU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aSV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aSW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aSX" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aSY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aSZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aTa" = ( -/obj/structure/railing{ - dir = 2; - flags = null - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/primary/starboard) -"aTb" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/primary/starboard) -"aTc" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aTd" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aTe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aTf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aTg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aTh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aTi" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aTj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aTk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aTl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aTm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTn" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTo" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTq" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTr" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTs" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTt" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTv" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aTy" = ( -/obj/machinery/door/airlock/glass_security, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aTz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aTA" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "prison"; - req_access = list(1); - req_one_access = list(1) - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aTB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aTC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/prison{ - c_tag = "Prison Disposal Processing"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aTD" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/central) -"aTE" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aTF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aTG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aTH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aTI" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency4) -"aTJ" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency4) -"aTK" = ( -/obj/machinery/floodlight, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency4) -"aTL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aTM" = ( -/obj/structure/table/rack{ - dir = 4 - }, -/obj/item/frame/light, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aTN" = ( -/obj/item/weapon/tool/crowbar, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aTO" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aTP" = ( -/obj/item/frame/light, -/obj/structure/table/reinforced, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aTQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/cash_register/civilian{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aTR" = ( -/obj/structure/table/reinforced, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aTS" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aTT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aTU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/bcarpet, -/area/vacant/vacant_office) -"aTV" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aTW" = ( -/obj/machinery/disposal, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/starboard) -"aTX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aTY" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/primary/starboard) -"aTZ" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/primary/starboard) -"aUa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aUb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aUc" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = -27 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aUd" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aUe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aUf" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/security{ - c_tag = "Security Firing Range"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aUg" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice, -/obj/item/ammo_magazine/clip/c762/practice, -/obj/item/ammo_magazine/clip/c762/practice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/ammo_magazine/clip/c762/practice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aUh" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aUi" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/weapon/gun/energy/laser/practice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aUj" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aUk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Lower Hall Port" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUu" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/camera/network/security{ - c_tag = "Security Lower Hall Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aUA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall, -/area/security/sorting) -"aUB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aUC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aUD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aUE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aUF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aUG" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/water/hotspring, -/area/hallway/lower/central) -"aUH" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aUI" = ( -/obj/machinery/light, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aUJ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aUK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aUL" = ( -/obj/structure/table/rack{ - dir = 4 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aUM" = ( -/obj/effect/decal/cleanable/blood/oil/streak{ - amount = 0 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aUN" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aUO" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/suit_jacket/really_black, -/obj/item/clothing/head/fedora, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aUP" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/weapon/reagent_containers/food/drinks/bottle/rum{ - desc = "TASTE DEMOCRACY"; - name = "Managed Democra-cider" - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aUQ" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/rocks, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aUR" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aUS" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_office) -"aUT" = ( -/turf/simulated/wall, -/area/hallway/lower/dorms) -"aUU" = ( -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/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/glass/hidden, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aUV" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aUW" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_6) -"aUX" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/effect/mist, -/turf/simulated/floor/water/hotspring, -/area/crew_quarters/sleep/Dorm_6) -"aUY" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/water/hotspring, -/area/crew_quarters/sleep/Dorm_6) -"aUZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/Dorm_6) -"aVa" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/Dorm_6) -"aVb" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/Dorm_10) -"aVc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/Dorm_10) -"aVd" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_10) -"aVe" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aVf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aVg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aVh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aVi" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aVj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aVk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Firing Range"; - req_access = list(1) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aVl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aVm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aVn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aVo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aVp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aVq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/prison) -"aVr" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aVs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aVt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/prison) -"aVu" = ( -/obj/machinery/computer/area_atmos/tag{ - dir = 8; - scrub_id = "prison" - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aVv" = ( -/turf/simulated/wall/r_wall, -/area/security/perma/control) -"aVw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "brigobs"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/security/perma) -"aVx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "brigobs"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/perma) -"aVy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "brigobs"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/security/perma) -"aVz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "brigobs"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/plating, -/area/security/perma) -"aVA" = ( -/turf/simulated/wall/r_wall, -/area/security/perma) -"aVB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/sorting) -"aVC" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aVD" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aVE" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"aVF" = ( -/turf/simulated/wall, -/area/library) -"aVG" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aVH" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/dark, -/area/hallway/lower/fore) -"aVI" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/lower/fore) -"aVJ" = ( -/obj/machinery/gear_painter, -/turf/simulated/floor/tiled/dark, -/area/hallway/lower/fore) -"aVK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aVL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aVM" = ( -/obj/item/stack/material/steel{ - amount = 50 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aVN" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor, -/area/vacant/vacant_office) -"aVO" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_7) -"aVP" = ( -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aVQ" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aVR" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aVS" = ( -/obj/structure/toilet, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aVT" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/door/window/southright{ - name = "Shower" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aVU" = ( -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright{ - name = "Shower" - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"aVV" = ( -/obj/structure/toilet, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"aVW" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"aVX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aVY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aVZ" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aWa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aWb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aWc" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/range) -"aWd" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs, -/turf/simulated/floor/tiled, -/area/security/range) -"aWe" = ( -/turf/simulated/wall/r_wall, -/area/security/brig/visitation) -"aWf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "visit_blast"; - name = "Privacy Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/brig/visitation) -"aWg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock{ - id_tag = "visitdoor"; - name = "Visitation Area"; - req_access = list(63) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"aWh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - id_tag = "prisonexit"; - name = "Prison Exit"; - req_access = list(2) - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aWi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - id_tag = "prisonexit"; - name = "Prison Exit"; - req_access = list(2) - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aWj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass_security{ - name = "Prison Control"; - req_access = list(1) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aWk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/computer/arcade, -/turf/simulated/floor/tiled, -/area/security/perma) -"aWl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aWm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/perma) -"aWn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/washing_machine, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aWo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/security/perma) -"aWp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/perma) -"aWq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/computer/arcade/orion_trail, -/obj/machinery/camera/network/prison{ - c_tag = "Prison Starboard" - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aWr" = ( -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aWs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aWt" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aWu" = ( -/turf/simulated/floor/tiled, -/area/security/perma) -"aWv" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor, -/area/maintenance/security_lower) -"aWw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aWx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aWy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aWz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aWA" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/simulated/floor/carpet, -/area/library) -"aWB" = ( -/obj/structure/cult/tome, -/turf/simulated/floor/carpet, -/area/library) -"aWC" = ( -/obj/structure/closet, -/turf/simulated/floor/carpet, -/area/library) -"aWD" = ( -/obj/machinery/disposal, -/turf/simulated/floor/tiled/dark, -/area/hallway/lower/fore) -"aWE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/lower/fore) -"aWF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aWG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aWH" = ( -/obj/machinery/door/airlock/glass{ - name = "Construction Area"; - req_access = list(32) - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aWI" = ( -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aWJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aWK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aWL" = ( -/obj/item/frame/light, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aWM" = ( -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"aWN" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_7/holo) -"aWO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/seven, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aWP" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aWQ" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aWR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aWS" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aWT" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aWU" = ( -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/browndouble, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aWV" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aWW" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/browndouble, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aWX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"aWY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"aWZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"aXa" = ( -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aXb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/button/remote/blast_door{ - id = "visit_blast"; - name = "Privacy Shutters"; - pixel_x = -25; - pixel_y = 0 - }, -/obj/machinery/button/flasher{ - id = "IAflash"; - pixel_x = -25; - pixel_y = 12 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"aXc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"aXd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aXe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aXf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Prison Gate"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/perma/control) -"aXg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/button/flasher{ - id = "permentryflash"; - name = "entry flash"; - pixel_x = 0; - pixel_y = -34; - req_access = list(2) - }, -/obj/machinery/button/remote/airlock{ - id = "prisonexit"; - name = "Exit Doors"; - pixel_x = 6; - pixel_y = -26; - req_access = list(2) - }, -/obj/machinery/button/remote/airlock{ - id = "prisonentry"; - name = "Entry Doors"; - pixel_x = -6; - pixel_y = -26; - req_access = list(2) - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aXh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Big Brother is watching."; - layer = 3.4; - name = "Brig Monitor"; - network = list("Prison"); - pixel_x = 32; - pixel_y = -3 - }, -/obj/item/weapon/stool/padded, -/obj/machinery/button/remote/blast_door{ - id = "brigobs"; - name = "Observation Shutters"; - pixel_x = 6; - pixel_y = -26; - req_access = list(2) - }, -/obj/machinery/button/flasher{ - id = "permflash"; - name = "Brig flashes"; - pixel_x = -6; - pixel_y = -36; - req_access = list(2) - }, -/obj/machinery/button/remote/blast_door{ - id = "Prison Gate"; - name = "Prison Lockdown"; - pixel_x = 6; - pixel_y = -36; - req_access = list(2) - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aXi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Prison Gate"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/perma/control) -"aXj" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXo" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1443; - icon_state = "on"; - id = "air_in"; - use_power = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXp" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXs" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge{ - scrub_id = "prison" - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXt" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aXu" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"aXv" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/effect/landmark/start{ - name = "Librarian" - }, -/turf/simulated/floor/carpet, -/area/library) -"aXw" = ( -/turf/simulated/floor/carpet, -/area/library) -"aXx" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aXy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aXz" = ( -/obj/item/frame/light, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aXA" = ( -/obj/item/stack/cable_coil/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aXB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aXC" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm7"; - name = "Room 7 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aXD" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aXE" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aXF" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aXG" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aXH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aXI" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aXJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aXK" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"aXL" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aXM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aXN" = ( -/turf/simulated/wall, -/area/maintenance/maintroom6) -"aXO" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"aXP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - frequency = 1475; - icon_state = "intercom"; - listening = 1; - name = "Station Intercom (Security)"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"aXQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/flasher{ - id = "permentryflash"; - name = "Floor mounted flash"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aXR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/prison{ - c_tag = "SEC - Common Brig Enterance"; - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aXS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Prison Gate"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/perma/control) -"aXT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/table/steel, -/obj/item/device/communicator, -/obj/item/device/communicator, -/obj/item/device/communicator, -/obj/item/device/communicator, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aXU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/table/steel, -/obj/machinery/camera/network/prison{ - c_tag = "SEC - Brig Observation"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aXV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Prison Gate"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/perma/control) -"aXW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXX" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXY" = ( -/obj/machinery/flasher{ - id = "permflash"; - name = "Floor mounted flash"; - pixel_x = 0 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/security/perma) -"aXZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aYa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/perma) -"aYb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/security_lower) -"aYc" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/library) -"aYd" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/library) -"aYe" = ( -/obj/structure/sign/coffee_shop_library, -/turf/simulated/wall, -/area/library) -"aYf" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/invisible, -/obj/item/clothing/under/suit_jacket/red, -/obj/machinery/light, -/obj/item/weapon/barcodescanner, -/turf/simulated/floor/carpet, -/area/library) -"aYg" = ( -/obj/structure/table/woodentable, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/item/device/retail_scanner/civilian{ - icon_state = "retail_idle"; - dir = 1 - }, -/obj/item/device/camera, -/obj/item/device/tape, -/turf/simulated/floor/carpet, -/area/library) -"aYh" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/structure/table/woodentable, -/obj/item/device/tvcamera, -/turf/simulated/floor/carpet, -/area/library) -"aYi" = ( -/obj/machinery/computer/arcade{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/lower/central) -"aYj" = ( -/obj/item/inflatable/torn, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"aYk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aYl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aYm" = ( -/obj/item/frame, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aYn" = ( -/turf/simulated/floor/tiled/steel_dirty, -/area/vacant/vacant_shop) -"aYo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/vacant/vacant_shop) -"aYp" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aYq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aYr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aYs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm7"; - name = "Room 7 (Holo)" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_7) -"aYt" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aYu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aYv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm6"; - name = "Room 6" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aYw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/machinery/button/remote/airlock{ - id = "dorm6"; - name = "Room 6 Lock"; - pixel_x = -26; - pixel_y = -26; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aYx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aYy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aYz" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aYA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aYB" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aYC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aYD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aYE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aYF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aYG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aYH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aYI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm10"; - name = "Room 10" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aYJ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aYK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"aYL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"aYM" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom6) -"aYN" = ( -/turf/simulated/mineral/cave, -/area/maintenance/maintroom6) -"aYO" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"aYP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "brigobs"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/brig/visitation) -"aYQ" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Secure Gate"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/northright{ - name = "Visitation"; - req_access = list(2) - }, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"aYR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - id_tag = "prisonentry"; - name = "Prison Entry"; - req_access = list(2) - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aYS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - id_tag = "prisonentry"; - name = "Prison Entry"; - req_access = list(2) - }, -/turf/simulated/floor/tiled, -/area/security/perma/control) -"aYT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Prison Gate"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/security/perma/control) -"aYU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Prison Gate"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/perma/control) -"aYV" = ( -/turf/simulated/wall, -/area/security/perma/control) -"aYW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/security/perma) -"aYX" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aYY" = ( -/obj/structure/table/steel, -/obj/item/weapon/material/minihoe, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/clothing/head/greenbandana, -/turf/simulated/floor/tiled, -/area/security/perma) -"aYZ" = ( -/obj/machinery/vending/hydronutrients, -/turf/simulated/floor/tiled, -/area/security/perma) -"aZa" = ( -/obj/machinery/seed_storage/garden, -/obj/machinery/camera/network/prison{ - c_tag = "SEC - Common Brig Fore"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"aZb" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled, -/area/security/perma) -"aZc" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/perma) -"aZd" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled, -/area/security/perma) -"aZe" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/atmos_control) -"aZf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"aZg" = ( -/obj/item/weapon/syringe_cartridge, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"aZh" = ( -/turf/simulated/wall, -/area/maintenance/atmos_control) -"aZi" = ( -/obj/random/trash_pile, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"aZj" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/research, -/obj/item/weapon/storage/trinketbox, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"aZk" = ( -/obj/machinery/librarypubliccomp, -/obj/structure/table/woodentable, -/obj/machinery/camera/network/civilian{ - c_tag = "Library Fore"; - dir = 2 - }, -/turf/simulated/floor/wood, -/area/library) -"aZl" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood, -/area/library) -"aZm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/library) -"aZn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/library) -"aZo" = ( -/obj/machinery/computer/timeclock/premade/east, -/obj/machinery/lapvend, -/turf/simulated/floor/wood, -/area/library) -"aZp" = ( -/obj/machinery/door/morgue{ - dir = 2; - name = "Private Study"; - req_access = list(37) - }, -/turf/simulated/floor/wood, -/area/library) -"aZq" = ( -/turf/simulated/wall, -/area/crew_quarters/coffee_shop) -"aZr" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/polarized{ - dir = 2; - id = "coffee" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "exam" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "coffee" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/coffee_shop) -"aZs" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "coffee" - }, -/obj/structure/window/reinforced/polarized{ - dir = 2; - id = "coffee" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "coffee" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/coffee_shop) -"aZt" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aZu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"aZv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aZw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aZx" = ( -/obj/machinery/door/airlock/glass{ - name = "Construction Area"; - req_access = list(32) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"aZy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aZz" = ( -/obj/effect/floor_decal/corner/blue, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aZA" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aZB" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aZC" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aZD" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aZE" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aZF" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aZG" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aZH" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aZI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aZJ" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aZK" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aZL" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aZM" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aZN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm10"; - name = "Room 10 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aZO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aZP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"aZQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"aZR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"aZS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"aZT" = ( -/obj/structure/table/woodentable, -/obj/item/stack/tile/carpet, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"aZU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"aZV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"aZW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "brigobs"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/brig/visitation) -"aZX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"aZY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/flasher{ - id = "IAflash"; - pixel_x = 30; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"aZZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/perma) -"baa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bab" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/item/device/radio/intercom{ - desc = "Talk... listen through this."; - dir = 1; - name = "Station Intercom (Brig Radio)"; - pixel_x = 0; - pixel_y = 21; - wires = 7 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bac" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/computer/cryopod{ - density = 0; - layer = 3.3; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bad" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bae" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/security/perma) -"baf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/security/perma) -"bag" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/security/perma) -"bah" = ( -/turf/simulated/wall, -/area/security/perma/bathroom) -"bai" = ( -/obj/machinery/door/airlock{ - name = "Brig Restroom" - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/security/perma/bathroom) -"baj" = ( -/turf/simulated/wall/r_wall, -/area/security/perma/bathroom) -"bak" = ( -/turf/simulated/mineral/cave, -/area/maintenance/atmos_control) -"bal" = ( -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bam" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"ban" = ( -/obj/structure/bookcase{ - name = "bookcase (Adult)" - }, -/turf/simulated/floor/wood, -/area/library) -"bao" = ( -/obj/structure/bookcase{ - name = "bookcase (Adult)" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/library) -"bap" = ( -/turf/simulated/floor/wood, -/area/library) -"baq" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/library) -"bar" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/library) -"bas" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/library) -"bat" = ( -/obj/machinery/librarycomp{ - pixel_y = 0 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/library) -"bau" = ( -/obj/structure/table/marble, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/yellow, -/area/crew_quarters/coffee_shop) -"bav" = ( -/obj/structure/table/marble, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/reagent_containers/food/condiment/small/sugar, -/obj/item/weapon/reagent_containers/food/drinks/britcup, -/obj/item/weapon/reagent_containers/food/drinks/britcup, -/obj/item/weapon/reagent_containers/food/drinks/teapot, -/turf/simulated/floor/tiled/yellow, -/area/crew_quarters/coffee_shop) -"baw" = ( -/obj/structure/table/marble, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 0; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 0; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Cafe Back Room"; - dir = 2 - }, -/turf/simulated/floor/tiled/yellow, -/area/crew_quarters/coffee_shop) -"bax" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_coffee/full, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/yellow, -/area/crew_quarters/coffee_shop) -"bay" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/machinery/button/remote/blast_door{ - id = "coffeeshop"; - name = "Cafe Shutters"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/machinery/light_switch{ - pixel_x = 34; - pixel_y = 4 - }, -/obj/machinery/button/windowtint{ - id = "coffee"; - pixel_x = 34; - pixel_y = -4 - }, -/turf/simulated/floor/tiled/yellow, -/area/crew_quarters/coffee_shop) -"baz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"baA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"baB" = ( -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/lower/fore) -"baC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"baD" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"baE" = ( -/obj/machinery/atm, -/turf/simulated/wall, -/area/crew_quarters/longue_area) -"baF" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_5) -"baG" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_5/holo) -"baH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/five, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"baI" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"baJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"baK" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_6) -"baL" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_9) -"baM" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_9) -"baN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"baO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/random/maintenance/engineering, -/obj/item/weapon/flame/lighter/zippo, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"baP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"baQ" = ( -/obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom6) -"baR" = ( -/turf/simulated/wall/durasteel/blueserg, -/area/mine/explored/lower_rock) -"baS" = ( -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"baT" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"baU" = ( -/obj/structure/table/woodentable, -/obj/item/stack/tile/carpet, -/obj/effect/decal/cleanable/dirt, -/obj/random/tool, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"baV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "brigobs"; - name = "Communal Brig Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/brig/visitation) -"baW" = ( -/obj/effect/floor_decal/corner/red/full, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"baX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/camera/network/prison{ - c_tag = "Prison Visitation"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"baY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "visitdoor"; - name = "Visitation Area"; - req_access = list(63) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"baZ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/perma) -"bba" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bbb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bbc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "permflash"; - name = "Floor mounted flash"; - pixel_x = 0 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/security/perma) -"bbd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bbe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/security/perma) -"bbf" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/security/perma) -"bbg" = ( -/obj/structure/closet{ - name = "Prisoner's Locker" - }, -/obj/item/weapon/flame/lighter/zippo, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bbh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/weapon/bedsheet/orange, -/obj/structure/bed/padded, -/turf/simulated/floor/tiled, -/area/security/perma) -"bbi" = ( -/obj/structure/closet{ - name = "Prisoner's Locker" - }, -/obj/random/tech_supply, -/obj/item/clothing/head/flatcap, -/turf/simulated/floor/tiled, -/area/security/perma) -"bbj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5; - pixel_y = 0 - }, -/obj/structure/curtain/open/shower/security, -/turf/simulated/floor/tiled/freezer, -/area/security/perma/bathroom) -"bbk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/perma/bathroom) -"bbl" = ( -/obj/structure/mirror{ - pixel_x = 30 - }, -/obj/item/weapon/soap/nanotrasen, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/perma/bathroom) -"bbm" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bbn" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - name = "Atmospherics"; - sortType = "Atmospherics" - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bbo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bbp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_one_access = list(12,37) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/library) -"bbq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bbr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Library"; - sortType = "Library" - }, -/turf/simulated/floor/wood, -/area/library) -"bbs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/library) -"bbt" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/library) -"bbu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bbv" = ( -/obj/machinery/door/window/northright{ - dir = 8; - name = "Library Desk Door"; - req_access = list(37) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bbw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bbx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bby" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - name = "Coffee Shop"; - sortType = "Coffee Shop" - }, -/turf/simulated/floor/wood, -/area/library) -"bbz" = ( -/obj/machinery/door/airlock/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bbA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bbB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bbC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bbD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bbE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock{ - name = "Coffee Shop"; - req_one_access = list(25,28) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/coffee_shop) -"bbF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bbG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bbH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bbI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bbJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bbK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"bbL" = ( -/obj/structure/closet/crate/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/dormitory) -"bbM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"bbN" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm5"; - name = "Room 5 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"bbO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bbP" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bbQ" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_4) -"bbR" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"bbS" = ( -/obj/structure/toilet, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"bbT" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/door/window/southright{ - name = "Shower" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"bbU" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bbV" = ( -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bbW" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bbX" = ( -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bbY" = ( -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright{ - name = "Shower" - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_9) -"bbZ" = ( -/obj/structure/toilet, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_9) -"bca" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_9) -"bcb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bcc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bcd" = ( -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/engineering, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bce" = ( -/obj/item/weapon/caution/cone, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bcf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bcg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bch" = ( -/obj/random/junk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bci" = ( -/turf/simulated/floor/plating, -/turf/simulated/floor/wood/broken, -/area/maintenance/maintroom6) -"bcj" = ( -/turf/simulated/wall/r_wall, -/area/security/perma/court) -"bck" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bcl" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/security/perma) -"bcm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bcn" = ( -/obj/machinery/door/airlock/glass{ - name = "Prison Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bco" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bcp" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bcq" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5; - pixel_y = 0 - }, -/obj/structure/curtain/open/shower/security, -/turf/simulated/floor/tiled/freezer, -/area/security/perma/bathroom) -"bcr" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/perma/bathroom) -"bcs" = ( -/obj/structure/mopbucket, -/obj/item/weapon/mop, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/perma/bathroom) -"bct" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bcu" = ( -/obj/structure/bookcase{ - name = "bookcase (Fiction)" - }, -/turf/simulated/floor/wood, -/area/library) -"bcv" = ( -/obj/structure/table/woodentable, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/simulated/floor/wood, -/area/library) -"bcw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bcx" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/yellow, -/area/crew_quarters/coffee_shop) -"bcy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bcz" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bcA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/landmark/start{ - name = "Bartender" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bcB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bcC" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/polarized{ - dir = 2; - id = "coffee" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "coffee" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "exam" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "coffee" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/coffee_shop) -"bcD" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bcE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bcF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bcG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bcH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bcI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bcJ" = ( -/turf/simulated/wall, -/area/maintenance/dormitory) -"bcK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"bcL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"bcM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm5"; - name = "Room 5 (Holo)" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_5) -"bcN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bcO" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Visitor Room Hall FP"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bcP" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"bcQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"bcR" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"bcS" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/brown, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bcT" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bcU" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/brown, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bcV" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bcW" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_9) -"bcX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_9) -"bcY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_9) -"bcZ" = ( -/obj/structure/closet, -/obj/random/maintenance/research, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bda" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/stack/tile/carpet, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bdb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bdc" = ( -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bdd" = ( -/obj/item/stack/tile/wood{ - amount = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bde" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom6) -"bdf" = ( -/obj/structure/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bdg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/perma/court) -"bdh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma/court) -"bdi" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma/court) -"bdj" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/perma/court) -"bdk" = ( -/obj/machinery/door/airlock/security{ - name = "The Hole"; - req_access = list(2) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma/court) -"bdl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bdm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bdn" = ( -/obj/structure/table/steel, -/obj/machinery/microwave, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bdo" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/donkpockets, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bdp" = ( -/obj/structure/table/steel, -/obj/item/weapon/dice, -/obj/machinery/camera/network/prison{ - c_tag = "Prison Port"; - dir = 1 - }, -/obj/item/weapon/deck/cards, -/turf/simulated/floor/tiled, -/area/security/perma) -"bdq" = ( -/obj/structure/table/steel, -/obj/item/device/taperecorder{ - pixel_x = -4; - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bdr" = ( -/obj/structure/table/steel, -/obj/item/weapon/newspaper, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/perma) -"bds" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/security/perma) -"bdt" = ( -/obj/structure/cryofeed, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/perma) -"bdu" = ( -/obj/item/weapon/bedsheet/orange, -/obj/structure/bed/padded, -/turf/simulated/floor/tiled, -/area/security/perma) -"bdv" = ( -/obj/structure/closet{ - name = "Prisoner's Locker" - }, -/obj/item/clothing/head/soft/orange, -/obj/item/clothing/shoes/sandal, -/turf/simulated/floor/tiled, -/area/security/perma) -"bdw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/weapon/bedsheet/orange, -/obj/structure/bed/padded, -/obj/machinery/camera/network/prison{ - c_tag = "Prison Dormitories"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bdx" = ( -/obj/structure/closet{ - name = "Prisoner's Locker" - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe, -/obj/item/clothing/suit/storage/apron/overalls, -/obj/machinery/camera/network/prison{ - c_tag = "SEC - Brig Bedroom"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bdy" = ( -/obj/machinery/door/airlock{ - name = "Toilet" - }, -/turf/simulated/floor/tiled/freezer, -/area/security/perma/bathroom) -"bdz" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bdA" = ( -/obj/random/obstruction, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bdB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/library) -"bdC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bdD" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/library) -"bdE" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/library) -"bdF" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet, -/area/library) -"bdG" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/library) -"bdH" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/wood, -/area/library) -"bdI" = ( -/obj/structure/table/woodentable, -/obj/item/device/taperecorder, -/turf/simulated/floor/wood, -/area/library) -"bdJ" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/library) -"bdK" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "coffeeshop"; - layer = 3.1; - name = "Cafe Shutters" - }, -/obj/machinery/cash_register/civilian{ - icon_state = "register_idle"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bdL" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "coffeeshop"; - layer = 3.1; - name = "Cafe Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bdM" = ( -/obj/machinery/door/window/southright{ - name = "Coffee Shop"; - req_one_access = list(25,28) - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "coffeeshop"; - layer = 3.1; - name = "Cafe Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bdN" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bdO" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bdP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/coffee_shop) -"bdQ" = ( -/obj/structure/table/glass, -/obj/machinery/camera/network/northern_star{ - c_tag = "Hall - Port Primary 5"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bdR" = ( -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bdS" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bdT" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bdU" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_4) -"bdV" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"bdW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bdX" = ( -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bdY" = ( -/obj/machinery/newscaster{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bdZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bea" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_9) -"beb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bec" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bed" = ( -/obj/structure/table, -/obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom6) -"bee" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bef" = ( -/obj/structure/table, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom6) -"beg" = ( -/obj/structure/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/pen, -/obj/random/tool, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom6) -"beh" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/codex/lore/news, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bei" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bej" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bek" = ( -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bel" = ( -/obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bem" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"ben" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"beo" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/vending/wallmed1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/perma) -"bep" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/freezer, -/area/security/perma/bathroom) -"beq" = ( -/obj/structure/closet/crate, -/obj/item/clothing/glasses/meson/prescription, -/obj/item/weapon/storage/box/lights/mixed, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"ber" = ( -/obj/item/weapon/toolbox_tiles, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bes" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/weapon/pen/red{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/weapon/book/codex/lore/vir, -/turf/simulated/floor/carpet, -/area/library) -"bet" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/library) -"beu" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet, -/area/library) -"bev" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bew" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bex" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bey" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bez" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"beA" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"beB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"beC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"beD" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"beE" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"beF" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"beG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"beH" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"beI" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_3) -"beJ" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_3/holo) -"beK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/three, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"beL" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"beM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"beN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"beO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm4"; - name = "Room 4" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"beP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "dorm4"; - name = "Room 4 Lock"; - pixel_x = -26; - pixel_y = -26; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"beQ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"beR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"beS" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"beT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"beU" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"beV" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"beW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"beX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"beY" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"beZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bfa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bfb" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"bfc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bfd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bfe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/item/stack/cable_coil/random, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bff" = ( -/obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bfg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bfh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bfi" = ( -/obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/maintenance/maintroom6) -"bfj" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bfk" = ( -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/structure/holohoop{ - icon_state = "hoop"; - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bfl" = ( -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bfm" = ( -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/item/weapon/paper/crumpled{ - name = "basketball" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bfn" = ( -/obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bfo" = ( -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border, -/obj/structure/holohoop{ - icon_state = "hoop"; - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bfp" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/maintenance/atmos_control) -"bfq" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/weapon/storage/belt/utility, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"bfr" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bfs" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/library) -"bft" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/library) -"bfu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/carpet, -/area/library) -"bfv" = ( -/obj/structure/bed/chair/comfy/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet, -/area/library) -"bfw" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/library) -"bfx" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bfy" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bfz" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bfA" = ( -/obj/effect/floor_decal/corner/brown, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bfB" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bfC" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bfD" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bfE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bfF" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bfG" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bfH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-01" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bfI" = ( -/turf/simulated/mineral/cave, -/area/hallway/lower/fore) -"bfJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bfK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bfL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"bfM" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm3"; - name = "Room 3 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"bfN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bfO" = ( -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bfP" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bfQ" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bfR" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bfS" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bfT" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bfU" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bfV" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bfW" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bfX" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bfY" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bfZ" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bga" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bgb" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bgc" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm9"; - name = "Room 9 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bgd" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "virofreezer"; - locked = 1; - name = "Pathogen Deep-Freeze"; - req_access = list(39) - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"bge" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bgf" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bgg" = ( -/obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/security{ - c_tag = "Prison Court"; - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/perma/court) -"bgh" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bgi" = ( -/obj/item/weapon/storage/rollingpapers, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bgj" = ( -/obj/structure/frame, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bgk" = ( -/obj/structure/bookcase{ - name = "bookcase (Non-Fiction)" - }, -/turf/simulated/floor/wood, -/area/library) -"bgl" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgm" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/codex/lore/vir, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgn" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgo" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgp" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgq" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgs" = ( -/obj/machinery/camera/network/northern_star{ - c_tag = "Hall - Central Primary Aft Starboard 3"; - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/weapon/dice, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bgt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"bgu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"bgv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm3"; - name = "Room 3 (Holo)" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_3) -"bgw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bgx" = ( -/obj/structure/table/woodentable, -/obj/item/stack/material/wood{ - amount = 10 - }, -/obj/item/stack/tile/carpet, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bgy" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bgz" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bgA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bgB" = ( -/obj/structure/table, -/turf/simulated/floor/wood, -/area/maintenance/maintroom6) -"bgC" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"bgD" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bgE" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/maintenance/atmos_control) -"bgF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bgG" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bgH" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/obj/random/junk, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"bgI" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/engi_wash) -"bgJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/library) -"bgK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bgL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/library) -"bgM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bgN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/library) -"bgO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bgP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/library) -"bgQ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgR" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgS" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/condiment/small/sugar, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgT" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgU" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgV" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bgW" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor, -/area/maintenance/dormitory) -"bgX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bgY" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bgZ" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_2) -"bha" = ( -/obj/structure/table/standard, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"bhb" = ( -/obj/structure/toilet, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"bhc" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/door/window/southright{ - name = "Shower" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"bhd" = ( -/turf/simulated/mineral/cave, -/area/crew_quarters/sleep/Dorm_2) -"bhe" = ( -/turf/simulated/mineral/cave, -/area/crew_quarters/sleep/Dorm_8) -"bhf" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_8) -"bhg" = ( -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright{ - name = "Shower" - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"bhh" = ( -/obj/structure/toilet, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"bhi" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"bhj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bhk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bhl" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bhm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bhn" = ( -/obj/structure/table/woodentable, -/obj/random/junk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bho" = ( -/obj/item/stack/tile/wood{ - amount = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bhp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom6) -"bhq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bhr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bhs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bht" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bhu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bhv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bhw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bhx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bhy" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bhz" = ( -/obj/machinery/recharge_station, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bhA" = ( -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/random/soap, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bhB" = ( -/turf/simulated/wall/r_wall, -/area/library) -"bhC" = ( -/obj/structure/bookcase{ - name = "bookcase (Reference)" - }, -/turf/simulated/floor/wood, -/area/library) -"bhD" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/wood, -/area/library) -"bhE" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Public Office" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 4; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/library) -"bhF" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "Library Aft"; - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/library) -"bhG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"bhH" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/library) -"bhI" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bhJ" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bhK" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bhL" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bhM" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bhN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bhO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bhP" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_1) -"bhQ" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_1/holo) -"bhR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/one, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"bhS" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"bhT" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"bhU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"bhV" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"bhW" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"bhX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"bhY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"bhZ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_lower) -"bia" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bib" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bic" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bid" = ( -/obj/machinery/light/small, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bie" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bif" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"big" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bih" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bij" = ( -/obj/structure/mirror{ - dir = 4; - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bik" = ( -/obj/machinery/door/morgue{ - dir = 2; - name = "Reading Rooms"; - req_access = null - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/library) -"bil" = ( -/obj/structure/noticeboard/library, -/turf/simulated/wall, -/area/library) -"bim" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bin" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bio" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bip" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"biq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bir" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bis" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bit" = ( -/turf/simulated/wall, -/area/maintenance/substation/civilian_lower) -"biu" = ( -/obj/machinery/door/airlock/engineering{ - name = "Civilian Lower Substation"; - req_one_access = list(11,24) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_lower) -"biv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"biw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"bix" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm1"; - name = "Room 1 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"biy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Visitor Room Hall AP"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"biz" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"biA" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_2) -"biB" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"biC" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"biD" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"biE" = ( -/obj/structure/table/standard, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"biF" = ( -/obj/structure/table/standard, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"biG" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"biH" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"biI" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"biJ" = ( -/obj/structure/sign/directions/evac{ - dir = 8 - }, -/turf/simulated/wall, -/area/maintenance/maintroom6) -"biK" = ( -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/atmos_control) -"biL" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"biM" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"biN" = ( -/obj/structure/firedoor_assembly, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"biO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"biP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"biQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/standard, -/obj/random/soap, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"biR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"biS" = ( -/obj/structure/bed/chair/comfy/black, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet, -/area/library) -"biT" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/carpet, -/area/library) -"biU" = ( -/obj/structure/curtain/bed{ - name = "privacy curtain" - }, -/turf/simulated/floor/wood, -/area/library) -"biV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/library) -"biW" = ( -/obj/structure/bed/chair/comfy/black, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet, -/area/library) -"biX" = ( -/obj/machinery/media/jukebox, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"biY" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"biZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bja" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bjb" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bjc" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/computer/security/telescreen/entertainment, -/obj/item/weapon/reagent_containers/food/condiment/small/sugar, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bjd" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "Cafe"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bje" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bjf" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bjg" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/sugar, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bjh" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/coffee_shop) -"bji" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_lower) -"bjj" = ( -/obj/machinery/door/airlock/atmos, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"bjk" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Civilian Lower"; - name_tag = "Lower Civilian Subgrid" - }, -/obj/structure/cable/green, -/turf/simulated/floor, -/area/maintenance/substation/civilian_lower) -"bjl" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Lower Civilian Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_lower) -"bjm" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/wall, -/area/maintenance/substation/civilian_lower) -"bjn" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/dormitory) -"bjo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bjp" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bjq" = ( -/turf/simulated/mineral/cave, -/area/maintenance/dormitory) -"bjr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"bjs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"bjt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm1"; - name = "Room 1 (Holo)" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_1) -"bju" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bjv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm2"; - name = "Room 2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bjw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "dorm2"; - name = "Room 2 Lock"; - pixel_x = -26; - pixel_y = -26; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bjx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bjy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bjz" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bjA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bjB" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bjC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bjD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bjE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bjF" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bjG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bjH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bjI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm8"; - name = "Room 8" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bjJ" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/atmos_control) -"bjK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"bjL" = ( -/obj/structure/girder, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bjM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bjN" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bjO" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bjP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bjQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bjR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bjS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bjT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bjU" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper, -/obj/item/weapon/pen, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/library) -"bjV" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/library) -"bjW" = ( -/obj/structure/curtain/open/bed{ - name = "privacy curtain" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"bjX" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/wood, -/area/library) -"bjY" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper, -/obj/item/weapon/pen, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/library) -"bjZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Library Meeting Room" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/coffee_shop) -"bka" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Library Meeting Room" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/coffee_shop) -"bkb" = ( -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_lower) -"bkc" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_lower) -"bkd" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_lower) -"bke" = ( -/obj/machinery/door/airlock/engineering{ - name = "Civilian Lower Substation"; - req_one_access = list(11,24) - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_lower) -"bkf" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bkg" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bkh" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bki" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bkj" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bkk" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bkl" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bkm" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"bkn" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bko" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bkp" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bkq" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bkr" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bks" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bkt" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm8"; - name = "Room 8 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"bku" = ( -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"bkv" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"bkw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bkx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bky" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bkz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - name = "Shower"; - req_access = list() - }, -/obj/structure/curtain/open/shower/engineering, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/engi_wash) -"bkA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/window/northleft{ - name = "Shower"; - req_access = list() - }, -/obj/structure/curtain/open/shower/engineering, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/engi_wash) -"bkB" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/library) -"bkC" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/carpet, -/area/library) -"bkD" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/library) -"bkE" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/obj/machinery/ai_status_display{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bkF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bkG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bkH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bkI" = ( -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bkJ" = ( -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/packageWrap, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bkK" = ( -/turf/simulated/wall, -/area/library_conference_room) -"bkL" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/dormitory) -"bkM" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor, -/area/maintenance/dormitory) -"bkN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bkO" = ( -/turf/simulated/wall, -/area/maintenance/aft) -"bkP" = ( -/obj/item/clothing/gloves/rainbow, -/obj/item/clothing/head/soft/rainbow, -/obj/item/clothing/shoes/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/weapon/bedsheet/rainbow, -/obj/item/weapon/pen/crayon/rainbow, -/turf/simulated/floor, -/area/hallway/lower/dorms) -"bkQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/atmos_control) -"bkR" = ( -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/atmos_control) -"bkS" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"bkT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/mine/unexplored/lower_rock) -"bkU" = ( -/turf/simulated/floor, -/area/mine/unexplored/lower_rock) -"bkV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bkW" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics Access" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/hallway_lower) -"bkX" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bkY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Washroom"; - req_one_access = list(10) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/engi_wash) -"bkZ" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/engi_wash) -"bla" = ( -/turf/simulated/floor/wood, -/area/library_conference_room) -"blb" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"blc" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bld" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"ble" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"blf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"blg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"blh" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bli" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/dormitory) -"blj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/maintenance/dormitory) -"blk" = ( -/obj/machinery/atmospherics/valve{ - dir = 4 - }, -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor, -/area/maintenance/dormitory) -"bll" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"blm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/lower/fore) -"bln" = ( -/turf/simulated/wall, -/area/maintenance/dorm) -"blo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalconstruct, -/turf/simulated/floor, -/area/maintenance/dorm) -"blp" = ( -/turf/simulated/floor, -/area/maintenance/dorm) -"blq" = ( -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"blr" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bls" = ( -/turf/simulated/floor/plating, -/area/maintenance/aft) -"blt" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/aft) -"blu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass/hidden, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"blv" = ( -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"blw" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/corner/white/diagonal{ - icon_state = "corner_white_diagonal"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"blx" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bly" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"blz" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Visitor's Dinning"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"blA" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"blB" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/cups, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"blC" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"blD" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"blE" = ( -/turf/simulated/wall, -/area/engineering/hallway_lower) -"blF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"blG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"blH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"blI" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"blJ" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics Hallway Fore" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"blK" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"blL" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"blM" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"blN" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"blO" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"blP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"blQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"blR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"blS" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"blT" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - name = "Maintenance Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/dormitory) -"blU" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"blV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"blW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"blX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 26 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"blY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/fish) -"blZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bma" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor, -/area/maintenance/dorm) -"bmb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor, -/area/maintenance/dorm) -"bmc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bmd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bme" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bmf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/dorm) -"bmg" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bmh" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bml" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/vending/loadout, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/vending/loadout/overwear, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/vending/loadout/loadout_misc, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bmq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/vending/loadout/costume, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmr" = ( -/obj/machinery/computer/timeclock/premade/north, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/vending/loadout/clothing, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bms" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/vending/loadout/accessory, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmx" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bmy" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/engineering/hallway_lower) -"bmz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bmA" = ( -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bmB" = ( -/obj/effect/decal/cleanable/blood/oil{ - name = "oil" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bmC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bmD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bmE" = ( -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bmF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bmG" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hallway_lower) -"bmH" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bmI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bmJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bmK" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/dice/d20, -/obj/item/weapon/dice, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bmL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bmM" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/deck/cards, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bmN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bmO" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bmP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bmQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/cigbutt/cigarbutt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/dorm) -"bmR" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bmS" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/random/toy, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bmT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/dorm) -"bmU" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/dorm) -"bmV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/barricade, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/dorm) -"bmW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bmX" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor, -/area/hallway/lower/dorms) -"bmY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bmZ" = ( -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bna" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnd" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bne" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bng" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bnh" = ( -/turf/simulated/mineral/cave, -/area/engineering/atmos) -"bni" = ( -/obj/structure/grille, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"bnj" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/atmospheric) -"bnk" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/wall, -/area/maintenance/substation/atmospheric) -"bnl" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall, -/area/maintenance/substation/atmospheric) -"bnm" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"bnn" = ( -/turf/simulated/wall/r_wall, -/area/engineering/hallway_lower) -"bno" = ( -/obj/structure/table/standard, -/obj/item/device/t_scanner, -/obj/item/weapon/storage/briefcase/inflatable, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hallway_lower) -"bnp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bnq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bnr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bns" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hallway_lower) -"bnt" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bnu" = ( -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bnv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bnw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/dormitory) -"bnx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bny" = ( -/obj/structure/table/gamblingtable, -/obj/item/weapon/reagent_containers/food/condiment/enzyme, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bnz" = ( -/obj/structure/table/gamblingtable, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bnA" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/table/gamblingtable, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/deck/cards, -/turf/simulated/floor, -/area/maintenance/dorm) -"bnB" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/newscaster{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/diagonal, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnE" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnF" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnG" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnH" = ( -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/crew_quarters/longue_area) -"bnJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnN" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bnP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance Access"; - req_access = newlist(); - req_one_access = list(10) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bnQ" = ( -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"bnR" = ( -/obj/machinery/power/smes/buildable{ - charge = 2e+006; - RCon_tag = "Substation - Atmospherics" - }, -/obj/structure/cable/cyan, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"bnS" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"bnT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"bnU" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"bnV" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/monitoring) -"bnW" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"bnX" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/glasses/pint, -/obj/machinery/requests_console/preset/engineering{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bnY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bnZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"boa" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bob" = ( -/obj/machinery/bookbinder{ - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"boc" = ( -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bod" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"boe" = ( -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Library Meeting Room"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bof" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"bog" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/turf/simulated/floor/wood, -/area/library_conference_room) -"boh" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/library_conference_room) -"boi" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/dormitory) -"boj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bok" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/dorm) -"bol" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bom" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner/green, -/area/borealis2/elevator/dorms) -"bon" = ( -/turf/simulated/shuttle/wall/voidcraft/green, -/area/borealis2/elevator/dorms) -"boo" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/borealis2/elevator/dorms) -"bop" = ( -/obj/structure/sign/deck/second, -/turf/simulated/shuttle/wall/voidcraft/green, -/area/borealis2/elevator/dorms) -"boq" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bor" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/hallway/lower/dorms) -"bos" = ( -/turf/simulated/wall, -/area/vacant/vacant_site/locker) -"bot" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bou" = ( -/obj/structure/closet/crate, -/obj/item/weapon/deck/tarot, -/obj/item/weapon/coin/gold, -/obj/item/weapon/storage/fancy/cigarettes/dromedaryco, -/obj/item/weapon/flame/lighter/zippo, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bov" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 2; - frequency = 1441; - icon_state = "map_injector"; - id = "waste_in"; - pixel_y = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"bow" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "waste_sensor"; - output = 63 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"box" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 2; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "waste_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"boy" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"boz" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Atmospherics Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"boA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"boB" = ( -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Atmospherics Subgrid"; - name_tag = "Atmospherics Subgrid" - }, -/obj/structure/cable/cyan, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"boC" = ( -/obj/machinery/computer/general_air_control{ - frequency = 1443; - level = 3; - name = "Distribution and Waste Monitor"; - sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Engine Waste") - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"boD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - pixel_x = 0; - pixel_y = 24; - req_access = newlist(); - req_one_access = list(10,24) - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"boE" = ( -/obj/machinery/computer/atmoscontrol, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"boF" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"boG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"boH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"boI" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"boJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"boK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"boL" = ( -/turf/simulated/wall/r_wall, -/area/library_conference_room) -"boM" = ( -/turf/simulated/wall/r_wall, -/area/tcomfoyer) -"boN" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/computer) -"boO" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/dorm) -"boP" = ( -/obj/structure/sign/poster, -/turf/simulated/wall/r_wall, -/area/maintenance/dorm) -"boQ" = ( -/turf/simulated/floor, -/area/maintenance/aft) -"boR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"boS" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/cargo, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/borealis2/elevator/dorms) -"boT" = ( -/turf/simulated/open, -/area/borealis2/elevator/dorms) -"boU" = ( -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"boV" = ( -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"boW" = ( -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/item/weapon/camera_assembly, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"boX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"boY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"boZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bpa" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/rods, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bpb" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bpc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bpd" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bpe" = ( -/obj/structure/grille, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"bpf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bpg" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/meter, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"bph" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"bpi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"bpj" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/atmospheric) -"bpk" = ( -/obj/machinery/computer/general_air_control{ - frequency = 1441; - name = "Tank Monitor"; - sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bpl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bpm" = ( -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bpn" = ( -/obj/structure/table/glass, -/obj/machinery/microwave, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bpo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bpp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bpq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bpr" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hallway_lower) -"bps" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) -"bpt" = ( -/turf/simulated/floor/reinforced, -/area/tcomfoyer) -"bpu" = ( -/obj/machinery/porta_turret/stationary, -/turf/simulated/floor/reinforced, -/area/tcomfoyer) -"bpv" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/tcomfoyer) -"bpw" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bpx" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bpy" = ( -/obj/structure/table/standard, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/folder/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecoms Main Computer Room" - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bpz" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen/blue{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bpA" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bpB" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"bpC" = ( -/turf/simulated/wall, -/area/tcommsat/computer) -"bpD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bpE" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bpF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/borealis2/elevator/dorms) -"bpG" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bpH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/locker) -"bpI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bpJ" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bpK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bpL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bpM" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bpN" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/locker) -"bpO" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bpP" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bpQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/lattice, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bpR" = ( -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bpS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/lattice, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bpT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmos RC"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/item/device/t_scanner, -/obj/item/device/multitool{ - pixel_x = 5 - }, -/obj/item/device/radio/headset/headset_eng, -/obj/item/weapon/cartridge/atmos, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/item/weapon/cartridge/atmos, -/obj/item/device/pipe_painter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bpU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/weapon/tool/wrench, -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bpV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/weapon/storage/belt/utility/atmostech, -/obj/item/weapon/storage/belt/utility/atmostech, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Atmospherics Fore Starboard"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bpW" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/visible/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bpX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bpY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Monitoring Room"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bpZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bqa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bqb" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 36; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bqc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bqd" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bqe" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics Hallway"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hallway_lower) -"bqf" = ( -/turf/simulated/wall, -/area/tcommsat/entrance) -"bqg" = ( -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"bqh" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"bqi" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"bqj" = ( -/obj/machinery/porta_turret{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/entrance) -"bqk" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) -"bql" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/reinforced, -/area/tcomfoyer) -"bqm" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/tcommsat/computer) -"bqn" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bqo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bqp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bqq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bqr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bqs" = ( -/obj/machinery/computer/telecomms/monitor{ - network = "tcommsat" - }, -/obj/item/device/radio/intercom{ - name = "General Listening Channel"; - pixel_x = 28; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"bqt" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/plating, -/area/borealis2/elevator/dorms) -"bqu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bqv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bqw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bqx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bqy" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bqz" = ( -/obj/structure/table/standard, -/obj/structure/disposalpipe/segment, -/obj/item/frame, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bqA" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bqB" = ( -/obj/item/stack/tile/floor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bqC" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/simulated/floor/tiled/dark, -/area/hydroponics) -"bqD" = ( -/obj/item/weapon/caution/cone, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bqE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bqF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bqG" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bqH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bqI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bqJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/standard, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/clothing/glasses/welding, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bqK" = ( -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bqL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bqM" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bqN" = ( -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bqO" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bqP" = ( -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Monitoring Room"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bqQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bqR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bqS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bqT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bqU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bqV" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"bqW" = ( -/obj/machinery/turretid/stun{ - ailock = 1; - check_synth = 1; - control_area = "\improper Telecoms Foyer"; - desc = "A firewall prevents AIs from interacting with this device."; - name = "Telecoms Foyer turret control"; - pixel_y = 29; - req_access = list(61) - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/motion, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"bqX" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"bqY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"bqZ" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/reinforced, -/area/tcomfoyer) -"bra" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"brb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"brc" = ( -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"brd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bre" = ( -/obj/machinery/computer/telecomms/server{ - network = "tcommsat" - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"brf" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"brg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"brh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bri" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"brj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"brk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/borealis2/elevator/dorms) -"brl" = ( -/obj/item/stack/tile/floor, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"brm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"brn" = ( -/obj/item/weapon/stool/padded, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bro" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"brp" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/weapon/weldingtool, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"brq" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"brr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"brs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"brt" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bru" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Mixing to Mix Tank" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1441; - input_tag = "waste_in"; - name = "Gas Mix Tank Control"; - output_tag = "waste_out"; - sensors = list("waste_sensor" = "Tank") - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 2; - name = "Mix Tank to Connector" - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Atmospherics Fore Port"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bry" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 2; - name = "Mix Tank to Port" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/visible/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"brG" = ( -/obj/machinery/computer/atmos_alert, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"brH" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"brI" = ( -/obj/structure/sign/atmosplaque{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Atmospherics Monitoring"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"brJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"brK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"brL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"brM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"brN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"brO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"brP" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Satellite"; - req_access = list(61) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"brQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"brR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"brS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"brT" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"brU" = ( -/obj/structure/catwalk, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"brV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"brW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"brX" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecoms East Wing"; - req_access = list(61) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"brY" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcomfoyer) -"brZ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tcomfoyer) -"bsa" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tcomfoyer) -"bsb" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Control Room"; - req_access = list(61) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"bsc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bsd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bse" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bsf" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bsg" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "32-1" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/down{ - dir = 1 - }, -/turf/simulated/open, -/area/borealis2/elevator/dorms) -"bsh" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bsi" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bsj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bsk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bsl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bsm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bsn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance"; - req_access = list(24) - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bso" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bsp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bsq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bsr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bss" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bst" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bsu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bsv" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bsw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bsx" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bsy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/meter{ - frequency = 1443; - id = "wloop_atm_meter"; - name = "Waste Loop" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bsz" = ( -/obj/machinery/meter{ - frequency = 1443; - id = "dloop_atm_meter"; - name = "Distribution Loop" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bsA" = ( -/obj/machinery/computer/security/engineering, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bsB" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bsC" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bsD" = ( -/obj/structure/table/standard, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bsE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bsF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bsG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bsH" = ( -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"bsI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/entrance) -"bsJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"bsK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"bsL" = ( -/obj/machinery/turretid/lethal{ - ailock = 1; - check_synth = 1; - control_area = "Telecoms Satellite"; - desc = "A firewall prevents AIs from interacting with this device."; - name = "Telecoms lethal turret control"; - pixel_x = 29; - pixel_y = 0; - req_access = list(61) - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecoms Foyer"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tcomfoyer) -"bsM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/tcomfoyer) -"bsN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/tcomfoyer) -"bsO" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bsP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bsQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bsR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bsS" = ( -/turf/simulated/mineral/cave, -/area/maintenance/aft) -"bsT" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bsU" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bsV" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bsW" = ( -/obj/machinery/light, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bsY" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bsZ" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/vacant/vacant_site/locker) -"bta" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"btb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"btc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bte" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btf" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/green, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bth" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bti" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btn" = ( -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Monitoring Room"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"bto" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = -3 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"btp" = ( -/obj/machinery/power/thermoregulator, -/turf/simulated/floor, -/area/engineering/hallway_lower) -"btq" = ( -/obj/structure/closet/crate, -/obj/item/clothing/glasses/night, -/obj/machinery/light/small, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/entrance) -"btr" = ( -/obj/structure/closet/crate, -/obj/item/device/aicard, -/obj/item/device/multitool, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecoms Entrance South"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/entrance) -"bts" = ( -/obj/machinery/porta_turret{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/entrance) -"btt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/tcomfoyer) -"btu" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/device/multitool, -/obj/structure/sign/electricshock{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"btv" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer_1"; - set_temperature = 73; - use_power = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"btw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"btx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - frequency = 1381; - id_tag = "server_access_ex_sensor"; - master_tag = "server_access_airlock"; - pixel_x = 25; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bty" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - frequency = 1381; - icon_state = "door_locked"; - id_tag = "server_access_outer"; - locked = 1; - name = "Telecoms Server Access"; - req_access = list(61) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tcommsat/computer) -"btz" = ( -/obj/machinery/airlock_sensor{ - frequency = 1381; - id_tag = "server_access_sensor"; - pixel_x = 12; - pixel_y = 25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1381; - id_tag = "server_access_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ - frequency = 1381; - id_tag = "server_access_airlock"; - name = "Server Access Airlock"; - pixel_x = 0; - pixel_y = 25; - tag_airpump = "server_access_pump"; - tag_chamber_sensor = "server_access_sensor"; - tag_exterior_door = "server_access_outer"; - tag_exterior_sensor = "server_access_ex_sensor"; - tag_interior_door = "server_access_inner"; - tag_interior_sensor = "server_access_in_sensor"; - tag_secure = 1 - }, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"btA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"btB" = ( -/turf/simulated/floor/plating, -/area/borealis2/elevator/dorms) -"btC" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/obj/random/junk, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/borealis2/elevator/dorms) -"btD" = ( -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/junk, -/obj/random/tool, -/obj/random/maintenance/security, -/obj/random/maintenance/engineering, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/borealis2/elevator/dorms) -"btE" = ( -/turf/simulated/wall, -/area/maintenance/maintroom5) -"btF" = ( -/obj/structure/grille, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"btG" = ( -/obj/structure/grille/broken, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"btH" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"btI" = ( -/obj/structure/table/standard, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"btJ" = ( -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos) -"btK" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1443; - icon_state = "map_injector"; - id = "air_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos) -"btL" = ( -/obj/structure/grille, -/obj/machinery/meter{ - frequency = 1443; - id = "mair_in_meter"; - name = "Mixed Air Tank In" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"btM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/lattice, -/turf/simulated/floor, -/area/engineering/atmos) -"btN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"btO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Mixed Air Inlet Valve" - }, -/obj/effect/floor_decal/corner/white{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btP" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btT" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btU" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 2; - name = "Transit to Waste" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btV" = ( -/obj/machinery/atmospherics/binary/pump/on{ - name = "Scrubber to Waste" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btW" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Air to Supply" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btX" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btY" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"btZ" = ( -/obj/machinery/pipedispenser, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bua" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor, -/area/engineering/atmos) -"bub" = ( -/obj/structure/table/standard, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"buc" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/engineering/hallway_lower) -"bud" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/powercontrol) -"bue" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/entrance) -"buf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/entrance) -"bug" = ( -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/tcomfoyer) -"buh" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/reinforced, -/area/tcomfoyer) -"bui" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"buj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/black, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"buk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"bul" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"bum" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"bun" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - frequency = 1381; - icon_state = "door_locked"; - id_tag = "server_access_inner"; - locked = 1; - name = "Telecoms Server Access"; - req_access = list(61) - }, -/turf/simulated/floor/plating, -/area/tcommsat/computer) -"buo" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/aft) -"bup" = ( -/obj/random/trash, -/turf/simulated/floor, -/area/maintenance/aft) -"buq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bur" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/aft) -"bus" = ( -/obj/structure/table/steel, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/screwdriver, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/maintroom5) -"but" = ( -/obj/machinery/optable{ - name = "Robotics Operating Table" - }, -/obj/item/weapon/bone/ribs, -/obj/item/weapon/handcuffs/legcuffs, -/obj/item/weapon/handcuffs, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/maintroom5) -"buu" = ( -/obj/structure/table/steel, -/obj/machinery/vending/wallmed1{ - emagged = 1; - pixel_y = 32; - shut_up = 0 - }, -/obj/item/weapon/tool/wirecutters, -/obj/item/weapon/tool/wrench, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/maintroom5) -"buv" = ( -/obj/random/obstruction, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"buw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bux" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"buy" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmos Tank - Air"; - dir = 4 - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos) -"buz" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos) -"buA" = ( -/obj/machinery/air_sensor{ - frequency = 1443; - id_tag = "air_sensor"; - output = 7 - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos) -"buB" = ( -/turf/simulated/floor, -/area/engineering/atmos) -"buC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"buD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1443; - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - pressure_setting = 2000; - sensors = list("air_sensor" = "Tank") - }, -/obj/effect/floor_decal/corner/white{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buE" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 2; - name = "Air Tank Bypass Pump" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buG" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buH" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buM" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 1 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buN" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buO" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4; - initialize_directions = 11 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buP" = ( -/obj/effect/decal/cleanable/blood/oil{ - name = "oil" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buQ" = ( -/obj/machinery/pipedispenser/disposal, -/obj/structure/window/reinforced, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"buR" = ( -/obj/structure/table/standard, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"buS" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/blood/oil{ - name = "oil" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"buT" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor, -/area/engineering/hallway_lower) -"buU" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/powercontrol) -"buV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/powercontrol) -"buW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/powercontrol) -"buX" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Telecomms Substation" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tcommsat/powercontrol) -"buY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/entrance) -"buZ" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/entrance) -"bva" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/chamber) -"bvb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvc" = ( -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecoms Central Compartment North" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bve" = ( -/obj/machinery/airlock_sensor/airlock_interior{ - frequency = 1381; - id_tag = "server_access_in_sensor"; - master_tag = "server_access_airlock"; - name = "interior sensor"; - pixel_x = 8; - pixel_y = 25 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvf" = ( -/obj/machinery/airlock_sensor/airlock_interior{ - frequency = 1381; - id_tag = "server_access_in_sensor"; - name = "interior sensor"; - pixel_y = 25 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvg" = ( -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bvi" = ( -/obj/structure/table/steel, -/obj/item/weapon/tape_roll, -/obj/item/stack/medical/bruise_pack, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/maintroom5) -"bvj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/maintroom5) -"bvk" = ( -/obj/structure/table/steel, -/obj/item/stack/medical/splint/ghetto, -/obj/random/technology_scanner, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/maintroom5) -"bvl" = ( -/turf/simulated/mineral/cave, -/area/vacant/vacant_site/locker) -"bvm" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bvn" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bvo" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1443; - icon_state = "map_vent_in"; - id_tag = "air_out"; - internal_pressure_bound = 2000; - internal_pressure_bound_default = 2000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos) -"bvp" = ( -/obj/structure/grille, -/obj/machinery/meter{ - frequency = 1443; - id = "mair_out_meter"; - name = "Mixed Air Tank Out" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"bvq" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bvr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Mixed Air Outlet Valve" - }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvs" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvA" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - icon_state = "map"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvB" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvC" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvD" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 36; - pixel_y = 0 - }, -/obj/machinery/power/apc/super{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bvE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/hallway_lower) -"bvF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/tcommsat/powercontrol) -"bvG" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/tcommsat/powercontrol) -"bvH" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/powercontrol) -"bvI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/tcommsat/powercontrol) -"bvJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) -"bvK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) -"bvL" = ( -/obj/machinery/door/airlock/glass{ - name = "Telecomms Storage"; - req_access = list(61); - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/entrance) -"bvM" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvN" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvQ" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"bvR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bvT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bvU" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bvV" = ( -/obj/structure/table/steel, -/obj/random/medical/pillbottle, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/maintroom5) -"bvW" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/maintroom5) -"bvX" = ( -/turf/simulated/mineral/cave, -/area/maintenance/maintroom5) -"bvY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom5) -"bvZ" = ( -/obj/structure/table/steel, -/obj/random/medical/lite, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/maintroom5) -"bwa" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/remains/robot, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/locker) -"bwb" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/soap, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bwc" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bwd" = ( -/obj/structure/lattice, -/turf/simulated/floor, -/area/engineering/atmos) -"bwe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bwf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Air Mix to Connector" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwg" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwh" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwj" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwo" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4; - name = "Air to Ports" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwp" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwr" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bws" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bwt" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bwu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bwv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 9 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bww" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/hallway_lower) -"bwx" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/hallway_lower) -"bwy" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Telecomms Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/tcommsat/powercontrol) -"bwz" = ( -/obj/machinery/power/smes/buildable{ - charge = 100000; - RCon_tag = "Substation - Telecomms" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/tcommsat/powercontrol) -"bwA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tcommsat/powercontrol) -"bwB" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/turf/simulated/floor, -/area/tcomstorage) -"bwC" = ( -/obj/machinery/camera/network/telecom{ - c_tag = "Telecoms Storage" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/tcomstorage) -"bwD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor, -/area/tcomstorage) -"bwE" = ( -/obj/structure/table/rack, -/obj/item/weapon/circuitboard/telecomms/processor, -/obj/item/weapon/circuitboard/telecomms/processor, -/obj/item/weapon/circuitboard/telecomms/receiver, -/obj/item/weapon/circuitboard/telecomms/server, -/obj/item/weapon/circuitboard/telecomms/server, -/obj/item/weapon/circuitboard/telecomms/bus, -/obj/item/weapon/circuitboard/telecomms/bus, -/obj/item/weapon/circuitboard/telecomms/broadcaster, -/obj/item/weapon/circuitboard/telecomms/exonet_node, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor, -/area/tcomstorage) -"bwF" = ( -/turf/simulated/wall/r_wall, -/area/tcomstorage) -"bwG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bwH" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/aft) -"bwI" = ( -/obj/machinery/pros_fabricator{ - desc = "A machine used for construction of legit prosthetics. You weren't sure if cardboard was considered an engineering material until now."; - dir = 4; - emagged = 0; - mat_efficiency = 0.9; - name = "Legitimate Prosthetics Fabricator"; - res_max_amount = 150000; - speed = 0.2 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom5) -"bwJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/maintenance/maintroom5) -"bwK" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintroom5) -"bwL" = ( -/obj/structure/table/steel, -/obj/item/device/nif/bad, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/maintroom5) -"bwM" = ( -/obj/machinery/vending/assist, -/turf/simulated/floor/plating, -/area/maintenance/maintroom5) -"bwN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bwO" = ( -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"bwP" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1441; - icon_state = "map_injector"; - id = "o2_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"bwQ" = ( -/obj/structure/grille, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"bwR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/structure/lattice, -/turf/simulated/floor, -/area/engineering/atmos) -"bwS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bwT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Atmospherics Port"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwV" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 0; - tag_north = 2; - tag_south = 1; - tag_west = 3; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwW" = ( -/obj/structure/dispenser, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwX" = ( -/turf/simulated/wall, -/area/engineering/atmos) -"bwY" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bwZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxa" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxb" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Ports to Waste" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxc" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxe" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bxg" = ( -/obj/structure/catwalk, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/lower/central) -"bxh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bxi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bxj" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/hallway_lower) -"bxk" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/hallway_lower) -"bxl" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Telecomms Subgrid"; - name_tag = "Telecomms Subgrid" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/tcommsat/powercontrol) -"bxm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/tcommsat/powercontrol) -"bxn" = ( -/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, -/area/tcomstorage) -"bxo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/tcomstorage) -"bxp" = ( -/turf/simulated/floor, -/area/tcomstorage) -"bxq" = ( -/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, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor, -/area/tcomstorage) -"bxr" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bxs" = ( -/obj/machinery/telecomms/server/presets/service/cryogaia, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bxt" = ( -/obj/machinery/telecomms/server/presets/unused, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bxu" = ( -/obj/machinery/telecomms/relay/preset/cryogaia/basement_2, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bxv" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bxw" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bxx" = ( -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bxy" = ( -/obj/structure/janitorialcart, -/turf/simulated/floor/tiled/dark, -/area/maintenance/aft) -"bxz" = ( -/turf/simulated/floor/tiled/dark, -/area/maintenance/aft) -"bxA" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bxB" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bxC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bxD" = ( -/obj/structure/table/standard, -/obj/item/device/binoculars/spyglass, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bxE" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmos Tank - Oxygen"; - dir = 4 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"bxF" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"bxG" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"bxH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1441; - input_tag = "o2_in"; - name = "Oxygen Supply Control"; - output_tag = "o2_out"; - sensors = list("o2_sensor" = "Tank") - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "O2 to Mixing" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - icon_state = "map"; - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxM" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer" - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxN" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 2; - icon_state = "heater" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxO" = ( -/obj/structure/frame, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Port to Waste" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxR" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxS" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/firecloset, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bxT" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics Access" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/engineering/hallway_lower) -"bxU" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/tcommsat/powercontrol) -"bxV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/tcomstorage) -"bxW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/tcomstorage) -"bxX" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/tcomstorage) -"bxY" = ( -/obj/machinery/exonet_node{ - anchored = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bxZ" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/aft) -"bya" = ( -/obj/random/maintenance/clean, -/obj/random/maintenance/security, -/turf/simulated/floor, -/area/maintenance/aft) -"byb" = ( -/obj/structure/table/rack, -/obj/item/weapon/flame/lighter/random, -/obj/item/weapon/storage/fancy/cigarettes/dromedaryco, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"byc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"byd" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bye" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "o2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"byf" = ( -/obj/structure/grille, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"byg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 4 - }, -/obj/structure/lattice, -/turf/simulated/floor, -/area/engineering/atmos) -"byh" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"byi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Oxygen Outlet Valve" - }, -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byk" = ( -/obj/machinery/atmospherics/omni/mixer{ - active_power_usage = 7500; - tag_east = 0; - tag_east_con = null; - tag_north = 2; - tag_north_con = null; - tag_south = 1; - tag_south_con = 0.79; - tag_west = 1; - tag_west_con = 0.21; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bym" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byn" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - icon_state = "map"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bys" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byt" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byu" = ( -/turf/simulated/wall/r_wall, -/area/mine/explored/lower_rock) -"byv" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/maintenance/aft) -"byw" = ( -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor, -/area/tcomstorage) -"byx" = ( -/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, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/tcomstorage) -"byy" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byz" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byA" = ( -/obj/machinery/telecomms/bus/preset_two/cryogaia, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byB" = ( -/obj/machinery/telecomms/relay/preset/telecomms, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byC" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byD" = ( -/obj/machinery/telecomms/hub/preset/cryogaia, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byE" = ( -/obj/machinery/telecomms/receiver/preset_right/cryogaia, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byF" = ( -/obj/machinery/telecomms/relay/preset/cryogaia/main, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byG" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byH" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byI" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byJ" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/obj/random/junk, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"byK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5; - icon_state = "intact" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"byL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "O2 to Connector" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byM" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "N2 to Mixing" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byO" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - icon_state = "map"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byP" = ( -/obj/machinery/atmospherics/tvalve/digital/mirrored{ - name = "Waste to Space" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 10 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byS" = ( -/obj/machinery/atmospherics/valve/digital, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byT" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byU" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/camera/network/engineering{ - c_tag = "Medical substation"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"byV" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/item/weapon/stock_parts/subspace/transmitter, -/turf/simulated/floor, -/area/tcomstorage) -"byW" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/subspace/sub_filter, -/obj/item/weapon/stock_parts/subspace/sub_filter, -/obj/item/weapon/stock_parts/subspace/sub_filter, -/obj/item/weapon/stock_parts/subspace/sub_filter, -/obj/item/weapon/stock_parts/subspace/sub_filter, -/turf/simulated/floor, -/area/tcomstorage) -"byX" = ( -/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, -/area/tcomstorage) -"byY" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"byZ" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bza" = ( -/obj/machinery/telecomms/relay/preset/cryogaia/basement_1, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzb" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzc" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzd" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bze" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bzf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/aft) -"bzg" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bzh" = ( -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"bzi" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1441; - icon_state = "map_injector"; - id = "n2_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"bzj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzl" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 1; - tag_north = 2; - tag_south = 5; - tag_west = 4; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzn" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzp" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzq" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzr" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden/red{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"bzs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bzt" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bzu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/plushie/beepsky, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bzv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bzw" = ( -/obj/item/tape/atmos, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bzx" = ( -/obj/random/obstruction, -/turf/simulated/floor, -/area/maintenance/aft) -"bzy" = ( -/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, -/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, -/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, -/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, -/turf/simulated/floor, -/area/maintenance/aft) -"bzz" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor, -/area/maintenance/aft) -"bzA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmos Tank - Nitrogen"; - dir = 4 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"bzB" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"bzC" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2_sensor" - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"bzD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1441; - input_tag = "n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "n2_out"; - sensors = list("n2_sensor" = "Tank") - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzF" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 1; - tag_north = 0; - tag_south = 6; - tag_west = 2; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzG" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 0; - tag_north = 1; - tag_south = 7; - tag_west = 2; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzI" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bzJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"bzK" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzL" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzO" = ( -/obj/machinery/pda_multicaster/prebuilt, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzR" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzS" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bzT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/aft) -"bzU" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/trash/tastybread, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bzV" = ( -/obj/item/seeds/poppyseed, -/obj/item/seeds/poppyseed, -/obj/item/seeds/poppyseed, -/turf/simulated/floor, -/area/maintenance/aft) -"bzW" = ( -/obj/item/weapon/plantspray/pests, -/turf/simulated/floor, -/area/maintenance/aft) -"bzX" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/security, -/turf/simulated/floor, -/area/maintenance/aft) -"bzY" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "n2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"bzZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Nitrogen Outlet Valve" - }, -/obj/effect/floor_decal/corner/red/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAe" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAf" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAg" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - use_power = 1; - pressure_checks = 0; - pressure_checks_default = 0 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bAh" = ( -/obj/machinery/light, -/obj/machinery/camera/network/telecom{ - c_tag = "Telecoms Central Compartment South"; - dir = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bAi" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - use_power = 1; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bAj" = ( -/obj/structure/sign/poster, -/turf/simulated/wall, -/area/maintenance/aft) -"bAk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/aft) -"bAl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/aft) -"bAm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/maintenance/aft) -"bAn" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor, -/area/maintenance/aft) -"bAo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bAp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "N2 to Connector" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAq" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAs" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/atmos, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAt" = ( -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"bAu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bAv" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bAw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bAx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 10 - }, -/obj/effect/floor_decal/corner/black/full, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Atmospherics Aft Port"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAA" = ( -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1441; - input_tag = "co2_in"; - name = "Carbon Dioxide Supply Control"; - output_tag = "co2_out"; - sensors = list("co2_sensor" = "Tank") - }, -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAB" = ( -/obj/effect/floor_decal/corner/black/full{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "CO2 to Mixing" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAC" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "CO2 to Connector" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/corner/orange/full, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAE" = ( -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1441; - input_tag = "tox_in"; - name = "Phoron Supply Control"; - output_tag = "tox_out"; - sensors = list("tox_sensor" = "Tank") - }, -/obj/effect/floor_decal/corner/orange{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAF" = ( -/obj/effect/floor_decal/corner/orange/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAG" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Phoron to Connector" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Atmospherics Aft Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1441; - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensors = list("n2o_sensor" = "Tank") - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAJ" = ( -/obj/effect/floor_decal/corner/white/diagonal{ - icon_state = "corner_white_diagonal"; - dir = 4 - }, -/obj/effect/floor_decal/corner/red, -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "N2O to Transit" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAK" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "N2O to Connector" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAL" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"bAM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bAN" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bAO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bAP" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bAQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bAR" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bAS" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bAT" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bAU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bAV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bAW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9; - icon_state = "intact" - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bAX" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 6 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bAY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9; - icon_state = "intact" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bAZ" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bBa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bBb" = ( -/obj/structure/sign/poster, -/turf/simulated/wall/r_wall, -/area/maintenance/aft) -"bBc" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bBd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bBe" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/mine/explored/lower_rock) -"bBf" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/maintenance/aft) -"bBg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/lattice, -/turf/simulated/floor, -/area/engineering/atmos) -"bBh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bBi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/lattice, -/turf/simulated/floor, -/area/engineering/atmos) -"bBj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/floor, -/area/engineering/atmos) -"bBk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/lattice, -/turf/simulated/floor, -/area/engineering/atmos) -"bBl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light/small, -/turf/simulated/floor, -/area/maintenance/aft) -"bBm" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bBn" = ( -/obj/machinery/door/airlock/maintenance/rnd, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bBo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bBp" = ( -/obj/machinery/light/small, -/turf/simulated/floor, -/area/maintenance/aft) -"bBq" = ( -/obj/structure/grille, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"bBr" = ( -/turf/simulated/wall, -/area/rnd/storage) -"bBs" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"bBt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/aft) -"bBu" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1441; - icon_state = "map_injector"; - id = "co2_in"; - use_power = 1; - pixel_y = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"bBv" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "co2_sensor" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"bBw" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "co2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - use_power = 1; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"bBx" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1441; - icon_state = "map_injector"; - id = "tox_in"; - use_power = 1; - pixel_y = 1 - }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) -"bBy" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "tox_sensor" - }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) -"bBz" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "tox_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - use_power = 1; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0 - }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) -"bBA" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1441; - icon_state = "map_injector"; - id = "n2o_in"; - use_power = 1; - pixel_y = 1 - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos) -"bBB" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2o_sensor" - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos) -"bBC" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "n2o_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - use_power = 1; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0 - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos) -"bBD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bBE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/rust, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bBF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/closet/firecloset, -/obj/item/weapon/handcuffs, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bBG" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bBH" = ( -/turf/simulated/mineral/cave, -/area/rnd/lab) -"bBI" = ( -/turf/simulated/wall/r_wall, -/area/rnd/lab) -"bBJ" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bBK" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/rnd/lab) -"bBL" = ( -/obj/machinery/door/airlock/maintenance/rnd, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/rnd/lab) -"bBM" = ( -/obj/structure/grille, -/turf/simulated/wall/r_wall, -/area/mine/explored/lower_rock) -"bBN" = ( -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/mine/explored/lower_rock) -"bBO" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/mine/explored/lower_rock) -"bBP" = ( -/turf/simulated/floor/reinforced/phoron, -/area/mine/explored/lower_rock) -"bBQ" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/reinforced/phoron, -/area/mine/explored/lower_rock) -"bBR" = ( -/turf/simulated/floor/reinforced/n20, -/area/mine/explored/lower_rock) -"bBS" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/turf/simulated/floor/reinforced/n20, -/area/mine/explored/lower_rock) -"bBT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bBU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bBV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bBW" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bBX" = ( -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bBY" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bBZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCa" = ( -/obj/machinery/light/small, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics Tank - Carbon Dioxide"; - dir = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/mine/explored/lower_rock) -"bCb" = ( -/obj/machinery/light/small, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics Tank - Phoron"; - dir = 1 - }, -/turf/simulated/floor/reinforced/phoron, -/area/mine/explored/lower_rock) -"bCc" = ( -/obj/machinery/light/small, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics Tank - Nitrous Oxide"; - dir = 1 - }, -/turf/simulated/floor/reinforced/n20, -/area/mine/explored/lower_rock) -"bCd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCf" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCg" = ( -/obj/structure/table/steel, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCh" = ( -/obj/structure/frame, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCi" = ( -/turf/simulated/wall, -/area/rnd/lab) -"bCj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCk" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCl" = ( -/obj/structure/coatrack, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCm" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCn" = ( -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCo" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCq" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCr" = ( -/obj/structure/table/steel, -/obj/item/weapon/locator, -/obj/effect/floor_decal/rust, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCs" = ( -/obj/structure/table/standard, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bCt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/lab) -"bCu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCv" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet/wardrobe/robotics_black, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCw" = ( -/obj/effect/floor_decal/rust, -/obj/structure/bed, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCx" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCy" = ( -/obj/structure/table/steel, -/obj/item/weapon/implantcase/chem, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/storage) -"bCz" = ( -/obj/structure/table/standard, -/obj/structure/table/standard, -/obj/item/stack/cable_coil, -/obj/item/device/multitool, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bCA" = ( -/obj/structure/table/standard, -/obj/item/device/assembly/igniter, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bCB" = ( -/obj/machinery/door/airlock/glass_science{ - name = "Nanite Laboratory" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCF" = ( -/obj/machinery/door/airlock/glass_science{ - name = "Nanite Laboratory" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCH" = ( -/obj/structure/bookcase, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCI" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCK" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/clothing/mask/gas, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCL" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCN" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/tool/wrench, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/clothing/glasses/science, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCO" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/ignition{ - id = "Xenobio"; - pixel_x = -6; - pixel_y = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCP" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used to monitor the proceedings inside the test chamber."; - name = "Test Chamber Monitor"; - network = list("Miscellaneous Reseach"); - pixel_x = 32; - pixel_y = 0 - }, -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/purple, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCQ" = ( -/obj/structure/closet/toolcloset, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCR" = ( -/obj/machinery/shieldwallgen{ - anchored = 1; - req_access = list(47) - }, -/obj/effect/floor_decal/corner/purple/full, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCS" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/rnd/lab) -"bCT" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/rnd/lab) -"bCU" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Test Chamber"; - req_one_access = list(7,29) - }, -/obj/machinery/door/window/southleft{ - name = "Test Chamber"; - req_one_access = list(7,29) - }, -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCV" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/southright{ - dir = 1; - name = "Test Chamber"; - req_one_access = list(7,29) - }, -/obj/machinery/door/window/southright{ - name = "Test Chamber"; - req_one_access = list(7,29) - }, -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCW" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/rnd/lab) -"bCX" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/rnd/lab) -"bCY" = ( -/obj/machinery/shieldwallgen{ - anchored = 1; - req_access = list(47) - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/structure/cable, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bCZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDa" = ( -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDb" = ( -/obj/structure/frame, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDc" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDd" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - icon_state = "map_injector"; - id = "n2_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDe" = ( -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDf" = ( -/obj/item/device/radio/intercom{ - layer = 4; - name = "Station Intercom (General)"; - pixel_y = -27 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Miscellaneous Test Chamber"; - dir = 1; - network = list("Research","Miscellaneous Reseach") - }, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDg" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "High Security-Grey Tempest" - }, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDh" = ( -/obj/structure/particle_accelerator/end_cap, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDi" = ( -/obj/structure/particle_accelerator/fuel_chamber, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDj" = ( -/obj/structure/particle_accelerator/power_box, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDk" = ( -/obj/structure/particle_accelerator/particle_emitter/left, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDl" = ( -/obj/structure/particle_accelerator/particle_emitter/center, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDm" = ( -/obj/structure/particle_accelerator/particle_emitter/right, -/turf/simulated/floor/reinforced, -/area/rnd/lab) -"bDn" = ( -/turf/simulated/mineral/floor, -/area/mine/explored/lower_rock) -"bDo" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8; - icon_state = "propulsion_l" - }, -/turf/simulated/mineral/floor, -/area/mine/explored/lower_rock) -"bDp" = ( -/turf/simulated/shuttle/wall, -/area/mine/explored/lower_rock) -"bDq" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "large_escape_pod_1_hatch"; - locked = 1; - name = "Large Escape Pod Hatch 1"; - req_access = list(13) - }, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDr" = ( -/obj/structure/sign/redcross, -/turf/simulated/shuttle/wall, -/area/mine/explored/lower_rock) -"bDs" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/mineral/floor, -/area/mine/explored/lower_rock) -"bDt" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/mine/explored/lower_rock) -"bDu" = ( -/obj/machinery/atmospherics/unary/cryo_cell{ - layer = 3.3 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDv" = ( -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDw" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDx" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - frequency = 1380; - id_tag = "large_escape_pod_1"; - pixel_x = -26; - pixel_y = 26; - tag_door = "large_escape_pod_1_hatch" - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDy" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDz" = ( -/obj/structure/bed/chair, -/obj/machinery/vending/wallmed1{ - layer = 3.3; - name = "Emergency NanoMed"; - pixel_x = 28; - pixel_y = 0 - }, -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDA" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/turf/simulated/mineral/floor, -/area/mine/explored/lower_rock) -"bDB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDD" = ( -/obj/structure/grille/broken, -/turf/simulated/shuttle/plating, -/area/mine/explored/lower_rock) -"bDE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDF" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -4; - pixel_y = 0 - }, -/obj/item/weapon/tool/wrench, -/obj/random/medical/lite, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDG" = ( -/obj/structure/closet/crate/medical, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/weapon/storage/firstaid/o2{ - layer = 2.8; - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/storage/box/masks{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/fire{ - layer = 2.9; - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -2 - }, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDH" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDI" = ( -/obj/machinery/sleep_console, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/shuttle/floor, -/area/mine/explored/lower_rock) -"bDL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/mineral/floor, -/area/mine/explored/lower_rock) -"bDM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/simulated/mineral/floor, -/area/mine/explored/lower_rock) -"bDN" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/remains, -/turf/simulated/mineral/floor, -/area/mine/explored/lower_rock) -"bDO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"bDP" = ( -/obj/machinery/door/airlock/glass{ - name = "Kitchen"; - req_access = list(28) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/grass, -/area/hydroponics) -"bDQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bDR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - dir = 1; - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bDS" = ( -/obj/machinery/ntnet_relay, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bDT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/engineering/hallway_lower) -"bDU" = ( -/obj/machinery/camera/motion{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"bDV" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bDW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/entrance) -"bDX" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"bDY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/vending/loadout/gadget, -/obj/machinery/camera/network/civilian{ - c_tag = "Sublevel 1 Elevator"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bDZ" = ( -/obj/structure/catwalk, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"bEa" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bEb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/dorms) -"bEc" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/central) -"bEd" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 4; - pixel_y = -24 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) -"bEe" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/maintenance/medical_lower) -"bEf" = ( -/obj/machinery/camera/autoname, -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/lower/fore) -"bEg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm9"; - name = "Room 9" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bEh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/turf/simulated/floor/plating, -/area/mine/explored/lower_rock) -"bEi" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Lower Civilian" - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_lower) -"bEj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Toxins Substation"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bEk" = ( -/obj/structure/sign/coffee_shop_library, -/turf/simulated/wall, -/area/crew_quarters/coffee_shop) -"bEl" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = -27 - }, -/turf/simulated/floor/carpet, -/area/library) -"bEm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bEn" = ( -/obj/machinery/telecomms/relay/preset/cryogaia/residential, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"bEo" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bEp" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bEq" = ( -/obj/structure/closet/crate, -/obj/random/action_figure, -/obj/random/action_figure, -/obj/random/action_figure, -/obj/random/action_figure, -/obj/random/maintenance/clean, -/obj/random/toy, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/dormitory) -"bEr" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/tape_roll, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bEs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bEt" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bEu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bEv" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/codex/lore/vir, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bEw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bEx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bEy" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/dormitory) -"bEz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bEA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bEB" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bEC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/library_conference_room) -"bED" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_one_access = list(12,37) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/library_conference_room) -"bEE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "16-0" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bEF" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bEG" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/atmos_control) -"bEH" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/light, -/turf/simulated/floor/grass, -/area/hydroponics) -"bEI" = ( -/obj/machinery/smartfridge/plantvator/down, -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"bEJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access = newlist(); - req_one_access = list(35,28) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hydroponics) -"bEK" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bEL" = ( -/mob/living/simple_mob/animal/passive/fish/bass, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bEM" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bEN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"bEO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"bEP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"bEQ" = ( -/obj/structure/table/rack, -/obj/item/weapon/material/fishing_rod/modern/cheap, -/obj/item/weapon/material/fishing_rod/modern/cheap, -/obj/item/weapon/material/fishing_rod/modern/cheap, -/obj/item/weapon/material/fishing_rod/modern/cheap, -/obj/item/weapon/material/fishing_rod/modern/cheap, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/fish_farm) -"bER" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"bES" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bET" = ( -/obj/structure/railing, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bEU" = ( -/obj/structure/railing, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bEV" = ( -/obj/structure/table/rack, -/obj/item/stack/cable_coil/pink, -/obj/item/stack/cable_coil/pink, -/obj/item/stack/cable_coil/pink, -/obj/item/stack/cable_coil/pink, -/obj/item/stack/cable_coil/pink, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/fish_farm) -"bEW" = ( -/turf/simulated/mineral/cave, -/area/crew_quarters/kitchen/fish_farm) -"bEX" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bEY" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bEZ" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bFa" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"bFb" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"bFc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"bFd" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/mob/living/simple_mob/animal/passive/fish/salmon, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bFe" = ( -/turf/simulated/wall, -/area/crew_quarters/kitchen/fish_farm) -"bFf" = ( -/mob/living/simple_mob/animal/passive/fish/salmon, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bFg" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/camera/network/civilian{ - icon_state = "camera"; - dir = 10 - }, -/turf/simulated/floor/water/deep/indoors, -/area/crew_quarters/kitchen/fish_farm) -"bFh" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/beach/sand/desert, -/area/crew_quarters/kitchen/fish_farm) -"bFi" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"bFj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"bFk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"bFl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"bFm" = ( -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFn" = ( -/obj/machinery/biogenerator, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFo" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFp" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFq" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"bFr" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24 - }, -/turf/simulated/floor, -/area/vacant/vacant_site/locker) -"bFs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/aft) -"bFt" = ( -/obj/structure/table/rack, -/obj/item/weapon/material/fishing_net, -/obj/item/weapon/material/fishing_net, -/obj/item/weapon/material/fishing_net, -/obj/item/weapon/material/fishing_net, -/obj/item/weapon/material/fishing_net, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/fish_farm) -"bFu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/fish_farm) -"bFv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFw" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"bFy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"bFz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/fish_farm) -"bFA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"bFB" = ( -/obj/effect/floor_decal/corner/green{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFC" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/green/full, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFD" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/light, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFE" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/fish_farm) -"bFG" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/fish_farm) -"bFH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFI" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFL" = ( -/obj/effect/landmark/start{ - name = "Gardener" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/fish_farm) -"bFN" = ( -/obj/machinery/door/airlock/glass{ - name = "Kitchen"; - req_access = list(28) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"bFO" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFR" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/solution_tray, -/obj/item/weapon/reagent_containers/glass/solution_tray, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"bFS" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass{ - name = "Plant-Chemical Lab"; - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFV" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access = newlist(); - req_one_access = list(35,28) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen/fish_farm) -"bFX" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bFY" = ( -/turf/simulated/floor, -/area/crew_quarters/kitchen/fish_farm) -"bFZ" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bGa" = ( -/obj/item/seeds/tomatoseed, -/turf/simulated/floor/grass, -/area/hydroponics) -"bGb" = ( -/obj/structure/table/standard, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/westright{ - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bGc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/medical_lower) -"bGd" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/medical/pyschwarde) -"bGe" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"bGf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"bGg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pyschwarde) -"bGh" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bGi" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/white, -/area/hydroponics) -"bGj" = ( -/obj/structure/stairs/west, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"bGk" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/kitchen/lower) -"bGl" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 4; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/hydro, -/area/hydroponics) -"bGm" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 4; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/fish_farm) -"bGn" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/kitchen/lower) -"bGo" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bGp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"bGq" = ( -/obj/effect/decal/cleanable/blood/oil{ - name = "oil" - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - req_access = list(150) - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway_lower) -"dma" = ( -/obj/structure/sign/directions/cryo{ - icon_state = "direction_cry"; - dir = 8 - }, -/turf/simulated/wall, -/area/crew_quarters/longue_area) -"gTr" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"mbM" = ( -/obj/structure/table/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/fore) +"aaa" = (/turf/unsimulated/wall/ice,/area/mine/unexplored/lower_rock) +"aab" = (/turf/simulated/mineral/cave,/area/mine/unexplored/lower_rock) +"aac" = (/turf/simulated/mineral/cave,/area/mine/explored/lower_rock) +"aad" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/mine/unexplored/lower_rock) +"aae" = (/turf/simulated/wall/durasteel,/area/mine/explored/lower_rock) +"aaf" = (/turf/simulated/floor/plating,/area/mine/unexplored/lower_rock) +"aag" = (/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"aah" = (/obj/structure/table/bench/padded,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"aai" = (/obj/structure/table/borosilicate,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"aaj" = (/obj/structure/table/borosilicate,/obj/structure/dancepole,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"aak" = (/obj/structure/table/borosilicate,/obj/structure/curtain/black,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"aal" = (/obj/structure/table/borosilicate,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"aam" = (/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"aan" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/mine/explored/lower_rock) +"aao" = (/obj/structure/table/alien{desc = "A strange table, seemingly forgotten by time"; name = "strange table"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"aap" = (/turf/simulated/floor/wood/sif/broken,/area/maintenance/blueserg/misc) +"aaq" = (/turf/simulated/floor/plating,/area/mine/explored/lower_rock) +"aar" = (/turf/simulated/wall/r_wall,/area/ai) +"aas" = (/turf/simulated/mineral/cave,/area/ai) +"aat" = (/obj/structure/table/bench/padded,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"aau" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "maintbar"; pixel_x = -7; pixel_y = -5},/obj/machinery/partyalarm{dir = 4; pixel_x = 5},/turf/simulated/floor/lino,/area/maintenance/blueserg) +"aav" = (/obj/structure/table/reinforced,/turf/simulated/floor/lino,/area/maintenance/blueserg) +"aaw" = (/obj/structure/curtain/black,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"aax" = (/turf/simulated/floor/tiled/dark,/area/ai) +"aay" = (/turf/simulated/floor/bluegrid,/area/ai) +"aaz" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/maintenance/chapel) +"aaA" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"aaB" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"aaC" = (/obj/structure/curtain/black,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"aaD" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"aaE" = (/obj/machinery/floor_light{anchored = 1},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"aaF" = (/turf/simulated/floor/lino,/area/maintenance/blueserg) +"aaG" = (/obj/structure/table/reinforced,/obj/machinery/door/blast/shutters{dir = 4; id = "maintbar"; layer = 3.1; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/maintenance/blueserg) +"aaH" = (/obj/machinery/floor_light{anchored = 1},/obj/machinery/light{dir = 4},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"aaI" = (/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/dorms) +"aaJ" = (/obj/structure/bed/double/padded,/obj/structure/curtain/open/bed,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/dorms) +"aaK" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/ai) +"aaL" = (/obj/machinery/power/smes/buildable{charge = 5e+006; input_attempt = 1; input_level = 200000; output_level = 200000},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/bluegrid,/area/ai) +"aaM" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - AI Subgrid"; name_tag = "AI Subgrid"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/bluegrid,/area/ai) +"aaN" = (/obj/machinery/porta_turret/ai_defense,/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/ai) +"aaO" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/light{dir = 1},/obj/machinery/status_display{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/ai) +"aaP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"aaQ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/bluegrid,/area/ai) +"aaR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/bluegrid,/area/ai) +"aaS" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/light{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/ai) +"aaT" = (/obj/machinery/porta_turret/ai_defense,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/dark,/area/ai) +"aaU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"aaV" = (/turf/simulated/floor/wood/sif/broken,/area/maintenance/blueserg) +"aaW" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"aaX" = (/obj/structure/table/reinforced,/obj/machinery/door/blast/shutters{dir = 8; id = "maintbar"; layer = 3.1; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/maintenance/blueserg) +"aaY" = (/obj/machinery/vending/boozeomat{req_access = list(); req_log_access = null},/turf/simulated/floor/lino,/area/maintenance/blueserg) +"aaZ" = (/obj/machinery/floor_light{anchored = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"aba" = (/obj/structure/curtain/black,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/dorms) +"abb" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/dorms) +"abc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/ai) +"abd" = (/obj/machinery/flasher{id = "AI"; pixel_x = 0; pixel_y = -24},/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid,/area/ai) +"abe" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/bluegrid,/area/ai) +"abf" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/ai) +"abg" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/bluegrid,/area/ai) +"abh" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/bluegrid,/area/ai) +"abi" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"abj" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/bluegrid,/area/ai) +"abk" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/dark,/area/ai) +"abl" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled/dark,/area/ai) +"abm" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/maintenance/maintroom4) +"abn" = (/turf/simulated/wall/titanium,/area/maintenance/maintroom4) +"abo" = (/turf/simulated/wall,/area/maintenance/maintroom4) +"abp" = (/turf/simulated/wall{can_open = 1},/area/maintenance/maintroom4) +"abq" = (/turf/simulated/wall,/area/mine/explored/lower_rock) +"abr" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"abs" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"abt" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/glasses,/turf/simulated/floor/lino,/area/maintenance/blueserg) +"abu" = (/obj/machinery/floor_light{anchored = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"abv" = (/turf/simulated/floor/wood/sif/broken,/area/maintenance/blueserg/dorms) +"abw" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/maintenance/lowfloor1) +"abx" = (/turf/simulated/wall,/area/maintenance/lowfloor1) +"aby" = (/turf/simulated/mineral/cave,/area/maintenance/lowfloor1) +"abz" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/wall/r_wall,/area/ai) +"abA" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/wall/r_wall,/area/ai) +"abB" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/porta_turret/ai_defense,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/ai) +"abC" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/bluegrid,/area/ai) +"abD" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/ai) +"abE" = (/turf/simulated/wall/durasteel,/area/ai) +"abF" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai) +"abG" = (/obj/machinery/porta_turret/ai_defense,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/dark,/area/ai) +"abH" = (/obj/structure/table/steel,/obj/item/clothing/accessory/collar/pink,/obj/item/clothing/accessory/collar/shock,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"abI" = (/obj/structure/table/steel,/obj/item/weapon/flame/candle,/obj/item/weapon/flame/candle,/obj/item/weapon/flame/lighter,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"abJ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"abK" = (/obj/item/device/camera,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"abL" = (/obj/structure/table/steel,/obj/item/clothing/mask/muzzle,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"abM" = (/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"abN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/kitchenspike,/turf/simulated/floor/plating,/area/mine/explored/lower_rock) +"abO" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"abP" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"abQ" = (/obj/structure/closet,/obj/item/clothing/under/schoolgirl,/turf/simulated/floor/wood,/area/maintenance/lowfloor1) +"abR" = (/turf/simulated/floor/wood,/area/maintenance/lowfloor1) +"abS" = (/obj/machinery/vending/coffee{product_ads = "Have a drink!;Drink up!;It's good for you!;Would you like a hot joe?;I'd kill for some coffee!;The best beans in the galaxy.;Only the finest brew for you.;Mmmm. Nothing like a coffee.;I like coffee, don't you?;Coffee helps you work!;Try some tea.;We hope you like the best!;Try our new chocolate!;Admin conspiracies;Would you like some tea, Mrs. Nesbit?"; shut_up = 0},/turf/simulated/floor/wood,/area/maintenance/lowfloor1) +"abT" = (/obj/structure/table/steel,/obj/machinery/microwave,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/wood,/area/maintenance/lowfloor1) +"abU" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{dir = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 20},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; frequency = 1343; name = "Private Channel"; pixel_x = 0; pixel_y = -21},/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/ai) +"abV" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled/dark,/area/ai) +"abW" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; name = "AI Core"; req_access = list(16)},/turf/simulated/floor/tiled/dark,/area/ai) +"abX" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/machinery/turretid/stun{check_synth = 1; name = "AI Chamber turret control"; pixel_x = 30; pixel_y = -24},/obj/machinery/flasher{id = "AI"; pixel_x = -24; pixel_y = -25},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the AI core maintenance door."; id = "AICore"; name = "AI Maintenance Hatch"; pixel_x = 8; pixel_y = 25; req_access = list(16)},/obj/machinery/light/small{dir = 1},/obj/machinery/camera/xray/command{c_tag = "AI - Core"; dir = 2},/turf/simulated/floor/tiled/dark,/area/ai) +"abY" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/dark,/area/ai) +"abZ" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{dir = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 21},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1343; name = "Private Channel"; pixel_x = 0; pixel_y = -21},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/ai) +"aca" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"acb" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"acc" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"acd" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "chemcounter"; name = "Pharmacy Counter Shutters"; opacity = 0},/obj/structure/window/reinforced/full,/turf/simulated/floor/lino,/area/maintenance/blueserg) +"ace" = (/obj/structure/table/reinforced,/obj/machinery/door/blast/shutters{dir = 1; id = "maintbar"; layer = 3.1; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/maintenance/blueserg) +"acf" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"acg" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/maintenance/lowfloor1) +"ach" = (/obj/item/weapon/stool/padded,/obj/random/action_figure,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"aci" = (/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"acj" = (/obj/machinery/door/firedoor/glass,/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/maintenance/lowfloor1) +"ack" = (/obj/machinery/porta_turret/ai_defense,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled/dark,/area/ai) +"acl" = (/obj/machinery/power/apc/super/critical{dir = 4; is_critical = 1; name = "east bump"; pixel_x = 24; pixel_y = 0},/obj/structure/cable/cyan,/turf/simulated/floor/bluegrid,/area/ai) +"acm" = (/obj/effect/landmark/start{name = "AI"},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/obj/item/device/radio/intercom{dir = 8; listening = 0; name = "Custom Channel"; pixel_x = -21; pixel_y = -10},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; frequency = 1343; name = "Private Channel"; pixel_x = 21; pixel_y = -10},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 30; pixel_y = -32},/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = -32},/turf/simulated/floor/bluegrid,/area/ai) +"acn" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"aco" = (/obj/structure/table/steel,/obj/item/clothing/mask/balaclava,/obj/item/clothing/mask/bandana,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"acp" = (/obj/structure/table/steel,/obj/item/weapon/handcuffs/fuzzy,/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"acq" = (/obj/structure/bed,/obj/effect/decal/cleanable/blood,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"acr" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/mine/explored/lower_rock) +"acs" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"act" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"acu" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"acv" = (/obj/machinery/light/small{dir = 8},/obj/structure/plushie/carp{icon_state = "carpplushie"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"acw" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/teapot,/turf/simulated/floor/wood,/area/maintenance/lowfloor1) +"acx" = (/obj/structure/plushie/ian{dir = 8; icon_state = "ianplushie"; pixel_y = 6},/turf/simulated/floor/wood,/area/maintenance/lowfloor1) +"acy" = (/obj/structure/table/rack,/obj/item/clothing/under/color/black,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"acz" = (/obj/structure/table/steel,/obj/item/clothing/head/welding/demon,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"acA" = (/obj/structure/table/steel,/obj/item/clothing/glasses/sunglasses/blindfold,/turf/simulated/floor/plating,/area/maintenance/maintroom4) +"acB" = (/turf/simulated/wall,/area/maintenance/chapel) +"acC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"acD" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood/sif/broken,/area/maintenance/blueserg) +"acE" = (/obj/structure/plushie/drone{icon_state = "droneplushie"; dir = 1},/turf/simulated/floor/wood,/area/maintenance/lowfloor1) +"acF" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/dark,/area/ai) +"acG" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/ai) +"acH" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/turf/simulated/floor/bluegrid,/area/ai) +"acI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/bluegrid,/area/ai) +"acJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"acK" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/bluegrid,/area/ai) +"acL" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 9},/turf/simulated/floor/tiled/dark,/area/ai) +"acM" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/dark,/area/ai) +"acN" = (/turf/simulated/floor,/area/maintenance/chapel) +"acO" = (/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"acP" = (/obj/item/weapon/cane/fluff/tasald,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"acQ" = (/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/plating,/area/maintenance/blueserg/misc) +"acR" = (/obj/machinery/light,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"acS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"acT" = (/obj/machinery/porta_turret/ai_defense,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/ai) +"acU" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/ai) +"acV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"acW" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"acX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/bluegrid,/area/ai) +"acY" = (/obj/machinery/porta_turret/ai_defense,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/turf/simulated/floor/tiled/dark,/area/ai) +"acZ" = (/turf/simulated/floor,/area/mine/explored/lower_rock) +"ada" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor,/area/maintenance/chapel) +"adb" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/chapel) +"adc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/turf/simulated/floor,/area/maintenance/chapel) +"add" = (/obj/effect/floor_decal/rust,/obj/random/junk,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/chapel) +"ade" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/item/clothing/glasses/sunglasses/blindfold,/turf/simulated/floor,/area/maintenance/chapel) +"adf" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/chapel) +"adg" = (/obj/structure/foamedmetal,/turf/simulated/floor,/area/maintenance/chapel) +"adh" = (/obj/structure/fitness/punchingbag,/turf/simulated/floor,/area/maintenance/chapel) +"adi" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/chapel) +"adj" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"adk" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood/sif/broken,/area/maintenance/blueserg/misc) +"adl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"adm" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/maintenance/blueserg) +"adn" = (/obj/structure/simple_door/silver{name = "The Blue Sergal"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg) +"ado" = (/turf/simulated/wall/r_wall,/area/maintenance/lowfloor1) +"adp" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/lowfloor1) +"adq" = (/obj/structure/table/steel,/turf/simulated/floor,/area/maintenance/lowfloor1) +"adr" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/lowfloor1) +"ads" = (/obj/machinery/light,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled/dark,/area/ai) +"adt" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 9},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/ai) +"adu" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/bluegrid,/area/ai) +"adv" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/chapel) +"adw" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/chapel) +"adx" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/chapel) +"ady" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/chapel) +"adz" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/chapel) +"adA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/chapel) +"adB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/chapel) +"adC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/chapel) +"adD" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/chapel) +"adE" = (/obj/structure/sign/poster,/turf/simulated/wall/titanium,/area/maintenance/chapel) +"adF" = (/turf/simulated/wall,/area/space) +"adG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"adH" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/wood/sif,/area/maintenance/blueserg/misc) +"adI" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/maintenance/lowfloor3) +"adJ" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"adK" = (/turf/simulated/floor,/area/maintenance/lowfloor1) +"adL" = (/obj/structure/closet/crate,/turf/simulated/floor,/area/maintenance/lowfloor1) +"adM" = (/turf/simulated/wall/r_wall,/area/ai_server_room) +"adN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/ai) +"adO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/vault/bolted{name = "AI core"; req_access = list(16)},/obj/machinery/door/blast/regular{id = "AICore"; name = "AI core maintenance hatch"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/ai) +"adP" = (/turf/simulated/wall/r_wall,/area/ai_cyborg_station) +"adQ" = (/turf/simulated/wall,/area/chapel/main) +"adR" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/chapel/main) +"adS" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/chapel) +"adT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/chapel) +"adU" = (/obj/structure/mirror{pixel_y = 25},/turf/simulated/floor,/area/space) +"adV" = (/turf/simulated/floor,/area/space) +"adW" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/mime,/obj/item/weapon/pen/crayon/mime,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor,/area/space) +"adX" = (/turf/simulated/wall,/area/maintenance/lowfloor3) +"adY" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/wall,/area/mine/explored/lower_rock) +"adZ" = (/obj/structure/symbol/sa,/turf/simulated/wall{can_open = 1},/area/mine/explored/lower_rock) +"aea" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"aeb" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/lowfloor1) +"aec" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/lowfloor1) +"aed" = (/obj/machinery/message_server,/turf/simulated/floor/bluegrid,/area/ai_server_room) +"aee" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/ai_server_room) +"aef" = (/obj/machinery/light,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/ai) +"aeg" = (/obj/machinery/flasher{id = "AI"; pixel_x = -24; pixel_y = -25},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the AI core maintenance door."; id = "AICore"; name = "AI Maintenance Hatch"; pixel_x = 0; pixel_y = 0; req_access = list(16)},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/ai) +"aeh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled/dark,/area/ai_foyer) +"aei" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/kiddieplaque{pixel_y = 32},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/light_switch{dir = 8; pixel_x = 28},/mob/living/silicon/robot/ai_shell,/turf/simulated/floor/tiled/dark,/area/ai_foyer) +"aej" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/ai_server_room) +"aek" = (/obj/structure/table/standard,/obj/item/weapon/phone,/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"ael" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"aem" = (/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aen" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aeo" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aep" = (/obj/structure/table/steel,/turf/simulated/floor,/area/space) +"aeq" = (/turf/simulated/wall,/area/maintenance/starboard) +"aer" = (/obj/effect/floor_decal/techfloor{dir = 9},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/wardrobe/pjs,/obj/item/weapon/handcuffs/fuzzy,/obj/item/weapon/handcuffs/fuzzy,/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/weapon/handcuffs/fuzzy,/obj/item/clothing/mask/balaclava,/obj/item/clothing/under/fluff/latexmaid,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aes" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/small{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/fancy/candle_box,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aet" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/vending/sovietsoda,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aeu" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/vending/cigarette{name = "Cigarette machine"; prices = list(); products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aev" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aew" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/techfloor/hole/right{dir = 1},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/purple,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aex" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/newscaster{pixel_y = 32},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aey" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/mime,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aez" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aeA" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/red,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aeB" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aeC" = (/obj/effect/floor_decal/techfloor{dir = 5},/obj/effect/floor_decal/techfloor/hole/right{dir = 1},/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aeD" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/plating,/area/maintenance/blueserg/misc) +"aeE" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aeF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/lowfloor1) +"aeG" = (/obj/structure/table/steel,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/lowfloor1) +"aeH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/command{c_tag = "AI - Upload Foyer"; dir = 2},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/ai_foyer) +"aeI" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled/dark,/area/ai_cyborg_station) +"aeJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/ai_server_room) +"aeK" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/highsecurity{name = "Messaging Server"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/ai_server_room) +"aeL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/ai_foyer) +"aeM" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/ai_foyer) +"aeN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/ai_cyborg_station) +"aeO" = (/turf/simulated/wall/r_wall,/area/holodeck_control) +"aeP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall,/area/maintenance/lowfloor1) +"aeQ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aeR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aeS" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aeT" = (/obj/machinery/camera/network/civilian{c_tag = "Chapel Hall"; dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aeU" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aeV" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/space) +"aeW" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/space) +"aeX" = (/obj/item/clothing/head/soft/mime,/obj/item/clothing/mask/gas/mime,/obj/item/clothing/shoes/mime,/obj/item/clothing/under/mime,/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/space) +"aeY" = (/turf/simulated/floor,/area/maintenance/starboard) +"aeZ" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor/hole/right{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afa" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afb" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afc" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afd" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afe" = (/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aff" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"afg" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/lowfloor1) +"afh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"afi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"afj" = (/obj/structure/closet/wardrobe/grey,/obj/item/weapon/storage/backpack,/obj/item/weapon/storage/backpack,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"afk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall,/area/ai_server_room) +"afl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/flasher{id = "AIFoyer"; pixel_x = 22; pixel_y = -36},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/ai_foyer) +"afm" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/light{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/tiled/dark,/area/ai_foyer) +"afn" = (/obj/machinery/computer/message_monitor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/ai_server_room) +"afo" = (/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/ai_cyborg_station) +"afp" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/ai_cyborg_station) +"afq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/chapel) +"afr" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/chapel) +"afs" = (/obj/machinery/door/airlock/glass_external{icon_state = "door_locked"; locked = 1; name = "Escape Pod"},/turf/simulated/floor,/area/maintenance/chapel) +"aft" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/bed/chair/comfy/black{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afu" = (/obj/effect/floor_decal/corner_techfloor_grid,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afv" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afw" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole/right,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afx" = (/obj/effect/floor_decal/techfloor,/obj/effect/decal/cleanable/dirt,/obj/structure/table/steel,/obj/random/drinkbottle,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afy" = (/obj/effect/floor_decal/techfloor,/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afz" = (/obj/effect/floor_decal/techfloor,/obj/structure/table/steel,/obj/item/weapon/tape_roll,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afA" = (/obj/effect/floor_decal/techfloor,/obj/structure/table/steel,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/machinery/recharger,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afB" = (/obj/effect/floor_decal/techfloor,/obj/structure/table/steel,/obj/item/weapon/storage/firstaid/regular,/obj/random/medical/lite,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afC" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afD" = (/obj/structure/closet/wardrobe/suit,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"afE" = (/obj/structure/closet/wardrobe,/obj/item/clothing/head/fedora,/obj/item/clothing/head/flatcap,/obj/item/clothing/head/fedora/fluff/bowler,/obj/item/clothing/head/bowlerhat,/obj/item/clothing/head/that,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"afF" = (/obj/item/weapon/storage/fancy/cigar/havana,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"afG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/human,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"afH" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor/bluegrid,/area/ai_server_room) +"afI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/ai_server_room) +"afJ" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/oxygen,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/mask/breath,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"afK" = (/turf/simulated/wall/r_wall,/area/ai_foyer) +"afL" = (/obj/machinery/door/airlock/highsecurity{name = "AI Hub"; req_access = list(16)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/ai_foyer) +"afM" = (/obj/structure/closet/crate{name = "Camera Assembly Crate"},/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/ai_cyborg_station) +"afN" = (/obj/machinery/recharge_station,/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"afO" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"afP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/chapel) +"afQ" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afR" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"afS" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) +"afT" = (/obj/random/obstruction,/turf/simulated/floor,/area/maintenance/medical_lower) +"afU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/ai_cyborg_station) +"afV" = (/obj/machinery/camera,/turf/simulated/floor/tiled/dark,/area/ai_cyborg_station) +"afW" = (/turf/simulated/wall/r_wall,/area/chapel/main) +"afX" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor,/area/maintenance/starboard) +"afY" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/structure/closet,/obj/random/tool,/obj/random/toolbox,/obj/random/powercell,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/action_figure,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"afZ" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aga" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"agb" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"agc" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"agd" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/maintenance/medical_lower) +"age" = (/turf/simulated/wall,/area/maintenance/medical_lower) +"agf" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"agg" = (/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"agh" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/table/rack{dir = 1},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/obj/machinery/door/window/northleft,/obj/item/clothing/mask/gas,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"agi" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/table/rack{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/window/northright,/obj/item/clothing/mask/gas,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"agj" = (/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"agk" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = -32},/obj/machinery/space_heater,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"agl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"agm" = (/obj/machinery/camera/network/command{c_tag = "AI - Messaging Server"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/bluegrid,/area/ai_server_room) +"agn" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ago" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"agp" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"agq" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"agr" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/wall,/area/maintenance/lowfloor3) +"ags" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall,/area/maintenance/lowfloor3) +"agt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall,/area/maintenance/lowfloor3) +"agu" = (/obj/structure/symbol/sa,/turf/simulated/wall{can_open = 1},/area/maintenance/lowfloor3) +"agv" = (/obj/structure/sign/poster,/turf/simulated/wall,/area/maintenance/lowfloor3) +"agw" = (/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"agx" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"agy" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"agz" = (/obj/random/obstruction,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/lowfloor1) +"agA" = (/obj/random/obstruction,/turf/simulated/floor,/area/maintenance/lowfloor1) +"agB" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/outline/red,/obj/effect/floor_decal/industrial/outline/red,/obj/effect/floor_decal/industrial/outline/red,/obj/effect/floor_decal/industrial/outline/red,/obj/effect/floor_decal/industrial/outline/red,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/camera/network/civilian{c_tag = "CIV - Emergency EVA"; dir = 1},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"agC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/ai_server_room) +"agD" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"agE" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"agF" = (/obj/effect/floor_decal/chapel,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"agG" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; name = "Private AI Channel"; pixel_x = -12; pixel_y = -21},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/ai_foyer) +"agH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"agI" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"agJ" = (/obj/effect/floor_decal/chapel,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"agK" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Chapel Starboard"; dir = 8},/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"agL" = (/turf/unsimulated/wall/bronze,/area/chapel/office) +"agM" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/chapel) +"agN" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/lowfloor3) +"agO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/lowfloor3) +"agP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/maintenance/lowfloor3) +"agQ" = (/obj/random/obstruction,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/maintenance/lowfloor3) +"agR" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/lowfloor3) +"agS" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"agT" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"agU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"agV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"agW" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"agX" = (/turf/simulated/wall,/area/hallway/lower/fore) +"agY" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"agZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/chapel/main) +"aha" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ahb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ahc" = (/turf/simulated/wall,/area/chapel/office) +"ahd" = (/obj/structure/closet/cabinet,/turf/simulated/floor/bronze,/area/chapel/office) +"ahe" = (/turf/simulated/floor/bronze,/area/chapel/office) +"ahf" = (/obj/structure/showcase/yw/chaplain,/turf/simulated/floor/bronze,/area/chapel/office) +"ahg" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/door/airlock/multi_tile/glass,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"ahh" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/starboard) +"ahi" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/starboard) +"ahj" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/starboard) +"ahk" = (/obj/item/weapon/coilgun_assembly,/turf/simulated/floor,/area/maintenance/starboard) +"ahl" = (/obj/item/inflatable/door/torn,/obj/item/weapon/tool/screwdriver,/turf/simulated/floor,/area/maintenance/lowfloor3) +"ahm" = (/obj/structure/closet/crate,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/double,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"ahn" = (/turf/simulated/floor,/area/maintenance/lowfloor3) +"aho" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/lowfloor3) +"ahp" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"ahq" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ahr" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/drinkbottle,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ahs" = (/turf/simulated/wall,/area/maintenance/lowfloor2) +"aht" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"ahu" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"ahv" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"ahw" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ahx" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"ahy" = (/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/chapel/main) +"ahz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ahA" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ahB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"ahC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"ahD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"ahE" = (/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/chapel/main) +"ahF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ahG" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ahH" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ahI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ahJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ahK" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ahL" = (/obj/structure/table/woodentable,/obj/item/weapon/nullrod,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/turf/simulated/floor/lino,/area/chapel/main) +"ahM" = (/obj/machinery/door/morgue{dir = 2; name = "Religious equipment"; req_access = list(22)},/turf/simulated/floor/tiled/dark,/area/chapel/office) +"ahN" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/turf/simulated/floor/lino,/area/chapel/office) +"ahO" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/lino,/area/chapel/office) +"ahP" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "chapel"; name = "Chapel Office Shutters"; pixel_x = -24; pixel_y = 26},/turf/simulated/floor/lino,/area/chapel/office) +"ahQ" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/button/remote/blast_door{desc = "It seems to have a gear etched into it on the bottom."; id = "clock"; name = "Strange control pannel"; pixel_x = -15; pixel_y = 25; req_access = list(27)},/turf/simulated/floor/lino,/area/chapel/office) +"ahR" = (/obj/structure/flora/pottedplant{icon_state = "plant-06"; pixel_y = 8},/obj/structure/table/woodentable,/turf/simulated/floor/lino,/area/chapel/office) +"ahS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/starboard) +"ahT" = (/obj/structure/table/rack,/obj/item/weapon/extinguisher,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/mask/gas,/obj/random/maintenance/research,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"ahU" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ahV" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ahW" = (/obj/random/junk,/turf/simulated/floor,/area/maintenance/lowfloor2) +"ahX" = (/turf/simulated/floor,/area/maintenance/lowfloor2) +"ahY" = (/obj/random/junk,/obj/random/junk,/turf/simulated/floor,/area/maintenance/lowfloor2) +"ahZ" = (/obj/effect/decal/cleanable/blood,/obj/item/weapon/paperplane,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/lowfloor2) +"aia" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aib" = (/obj/effect/floor_decal/chapel,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aic" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 2; name = "Chapel"; sortType = "Chapel"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aid" = (/obj/structure/stairs/west,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/maintenance/lowfloor1) +"aie" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) +"aif" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/ai_foyer) +"aig" = (/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"aih" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"aii" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aij" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aik" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ail" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aim" = (/obj/effect/floor_decal/chapel,/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/dark,/area/chapel/main) +"ain" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aio" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"aip" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) +"aiq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor/lino,/area/chapel/office) +"air" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/lino,/area/chapel/office) +"ais" = (/turf/simulated/floor/carpet,/area/chapel/office) +"ait" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/carpet,/area/chapel/office) +"aiu" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random/drinkbottle,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aiv" = (/obj/machinery/space_heater,/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/lowfloor3) +"aiw" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/trash_pile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"aix" = (/obj/structure/table/rack,/obj/item/weapon/extinguisher,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/mask/gas,/mob/living/simple_mob/animal/passive/mouse,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aiy" = (/obj/item/weapon/paper,/turf/simulated/floor,/area/maintenance/lowfloor2) +"aiz" = (/obj/effect/decal/cleanable/blood,/obj/item/weapon/paper,/turf/simulated/floor,/area/maintenance/lowfloor2) +"aiA" = (/obj/item/weapon/paper,/obj/effect/rune,/obj/effect/decal/cleanable/blood,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/lowfloor2) +"aiB" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aiC" = (/obj/structure/closet/secure_closet/medical1,/obj/item/weapon/storage/box/pillbottles,/obj/effect/floor_decal/corner/beige/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aiD" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aiE" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aiF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aiG" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aiH" = (/obj/random/obstruction,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/medical_lower) +"aiI" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) +"aiJ" = (/obj/structure/closet/secure_closet/chemical,/obj/item/weapon/storage/box/pillbottles,/obj/item/weapon/storage/box/pillbottles,/obj/effect/floor_decal/corner/beige{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aiK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aiL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) +"aiM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aiN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aiO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aiP" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aiQ" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 0; pixel_y = 27},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aiR" = (/obj/machinery/door/morgue{dir = 2; name = "Confession Booth (Chaplain)"; req_access = list(22)},/turf/simulated/floor/tiled/dark,/area/chapel/office) +"aiS" = (/turf/simulated/floor/lino,/area/chapel/office) +"aiT" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp{pixel_y = 10},/turf/simulated/floor/lino,/area/chapel/office) +"aiU" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/crayons,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/chapel/office) +"aiV" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/obj/machinery/camera{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"aiW" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/carpet,/area/chapel/office) +"aiX" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/carpet,/area/chapel/office) +"aiY" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/carpet,/area/chapel/office) +"aiZ" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/carpet,/area/chapel/office) +"aja" = (/obj/structure/table/rack,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/starboard) +"ajb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/starboard) +"ajc" = (/obj/structure/table/rack,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"ajd" = (/obj/structure/closet/crate,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/assembly/prox_sensor,/obj/item/device/flashlight,/obj/item/weapon/storage/backpack,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aje" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajf" = (/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajg" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajh" = (/turf/simulated/mineral/cave,/area/maintenance/medical_lower) +"aji" = (/obj/effect/decal/cleanable/blood,/obj/item/weapon/reagent_containers/blood,/turf/simulated/floor,/area/maintenance/lowfloor2) +"ajj" = (/obj/item/weapon/paper_bin,/turf/simulated/floor,/area/maintenance/lowfloor2) +"ajk" = (/obj/item/weapon/reagent_containers/blood,/turf/simulated/floor,/area/maintenance/lowfloor2) +"ajl" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/medical_lower) +"ajn" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"ajo" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall,/area/medical/pyschwarde) +"ajp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/medical/pyschwarde) +"ajq" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajr" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajs" = (/obj/structure/closet/crate,/obj/item/weapon/tank/air,/obj/item/weapon/tank/air,/obj/item/weapon/tank/air,/obj/item/clothing/mask/gas,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/cargo,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Emergency Cold Apparel"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) +"aju" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajv" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/machinery/light{dir = 8},/obj/structure/cable/green,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"ajw" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajx" = (/obj/machinery/light{dir = 8},/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"ajy" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"ajz" = (/obj/machinery/camera/network/northern_star{c_tag = "Hall - Recreation Mid"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"ajA" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"ajB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/wildcard,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"ajC" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ajD" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 1},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ajE" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 4},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ajF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) +"ajG" = (/obj/item/weapon/stool/padded,/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ajH" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/plating,/area/chapel/main) +"ajI" = (/mob/living/simple_mob/clockwork/fluff/Ignis,/turf/simulated/floor/lino,/area/chapel/office) +"ajJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/chapel/office) +"ajK" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/machinery/light{dir = 4},/obj/item/weapon/storage/fancy/blackcandle_box,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/fancy/whitecandle_box,/turf/simulated/floor/lino,/area/chapel/office) +"ajL" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet,/area/chapel/office) +"ajM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/starboard) +"ajN" = (/obj/item/clothing/gloves/rainbow,/obj/item/clothing/head/soft/rainbow,/obj/item/clothing/shoes/rainbow,/obj/item/clothing/under/color/rainbow,/obj/item/weapon/bedsheet/rainbow,/obj/item/weapon/pen/crayon/rainbow,/turf/simulated/floor,/area/maintenance/starboard) +"ajO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"ajP" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor,/area/maintenance/lowfloor3) +"ajQ" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/medical_lower) +"ajR" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajS" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajT" = (/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajU" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajV" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajW" = (/obj/machinery/atm,/turf/simulated/wall,/area/maintenance/maintroom1) +"ajX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"ajY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ajZ" = (/obj/structure/closet,/obj/item/weapon/storage/backpack,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/firstaid,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aka" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"akb" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"akc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"akd" = (/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled/dark,/area/hallway/lower/fore) +"ake" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"akf" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"akg" = (/obj/effect/floor_decal/chapel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"akh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aki" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) +"akj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"akk" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"akl" = (/obj/effect/floor_decal/chapel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"akm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"akn" = (/obj/machinery/door/morgue{dir = 2; name = "Confession Booth"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ako" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 0; pixel_y = 27},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"akp" = (/obj/machinery/photocopier,/turf/simulated/floor/lino,/area/chapel/office) +"akq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/lino,/area/chapel/office) +"akr" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) +"aks" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"akt" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor,/area/maintenance/lowfloor3) +"aku" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/lowfloor3) +"akv" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"akw" = (/obj/item/inflatable/torn,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"akx" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aky" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"akz" = (/turf/simulated/wall,/area/medical/morgue) +"akA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical,/turf/simulated/floor,/area/medical/morgue) +"akB" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/grass,/area/hallway/lower/central) +"akC" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/medical/pyschwarde) +"akD" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/grass,/area/hallway/lower/central) +"akE" = (/obj/structure/table/rack{dir = 1},/obj/item/weapon/storage/toolbox/emergency,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"akF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"akG" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"akH" = (/obj/random/obstruction,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/medical_lower) +"akI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"akJ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"akK" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/lower/fore) +"akL" = (/obj/item/weapon/stool/padded,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"akM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "chapel"; name = "Chapel Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/chapel/office) +"akN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "chapel"; name = "Chapel Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/chapel/office) +"akO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Chapel Office"; req_access = list(27)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/chapel/office) +"akP" = (/obj/machinery/door/morgue{dir = 2; name = "Strange meeting room"},/turf/simulated/floor/carpet,/area/chapel/office) +"akQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/starboard) +"akR" = (/obj/structure/table/rack,/obj/item/clothing/mask/gas,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"akS" = (/obj/effect/decal/cleanable/generic,/obj/item/weapon/material/shard{icon_state = "medium"},/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"akT" = (/turf/simulated/mineral/cave,/area/maintenance/lowfloor3) +"akU" = (/turf/simulated/wall/r_wall,/area/medical/virology) +"akV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"akW" = (/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"akX" = (/obj/structure/morgue{icon_state = "morgue1"; dir = 8},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"akY" = (/obj/structure/morgue,/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"akZ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"ala" = (/turf/simulated/wall,/area/medical/pyschwarde) +"alb" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/medical/pyschwarde) +"alc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/medical/pyschwarde) +"ald" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/conveyor{id = "Psycheiso"},/turf/simulated/floor/plating,/area/medical/pyschwarde) +"ale" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/medical/pyschwarde) +"alf" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/door/airlock/multi_tile/glass,/turf/simulated/floor/tiled/steel_ridged,/area/hallway/lower/central) +"alg" = (/obj/structure/closet/wardrobe/medic_white,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"alh" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ali" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"alj" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"alk" = (/turf/simulated/wall,/area/ai_monitored/storage/emergency/eva) +"all" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"alm" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aln" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/autoname{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"alo" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"alp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"alq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"alr" = (/obj/structure/showcase/yw/chaplain2,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"als" = (/obj/structure/showcase/yw/chaplain2,/turf/simulated/floor/bronze,/area/chapel/office) +"alt" = (/obj/structure/sign/poster,/turf/simulated/wall,/area/maintenance/starboard) +"alu" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/table/standard,/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"alv" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Virology Isolation 1"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"alw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/medical/virology) +"alx" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Virology Isolation 2"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aly" = (/obj/structure/table/standard,/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"alz" = (/obj/structure/closet/crate/medical,/obj/item/weapon/reagent_containers/syringe,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/firstaid,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"alA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor1) +"alB" = (/obj/structure/table/steel,/obj/item/weapon/autopsy_scanner,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/cautery,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"alC" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"alD" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"alE" = (/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/structure/table/standard{name = "plastic table frame"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"alF" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/effect/floor_decal/corner/lime{dir = 9},/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"alG" = (/turf/simulated/floor/tiled/white,/area/medical/pyschwarde) +"alH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"alI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock{id_tag = "visitdoor"; name = "Visitation Area"; req_access = list(63)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/medical/pyschwarde) +"alJ" = (/obj/machinery/door/airlock/maintenance{req_access = list(12)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/holodeck_control) +"alK" = (/obj/machinery/floodlight,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"alL" = (/turf/simulated/wall,/area/medical/biostorage3) +"alM" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"alN" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"alO" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 9},/obj/machinery/door/window/southleft,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"alP" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 5},/obj/machinery/door/window/southright,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"alQ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/space_heater,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"alR" = (/obj/structure/table/rack,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light{dir = 4},/obj/item/weapon/shovel,/obj/item/weapon/shovel,/obj/item/weapon/soap,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva) +"alS" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/ai_monitored/storage/emergency/eva) +"alT" = (/obj/machinery/camera/network/civilian{c_tag = "Lower Primary Hall Fore"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"alU" = (/obj/effect/floor_decal/chapel{icon_state = "chapel"; dir = 8},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"alV" = (/obj/effect/floor_decal/chapel,/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"alW" = (/obj/item/weapon/stool/padded,/obj/machinery/light_switch{dir = 8; pixel_x = 28},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"alX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"alY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"alZ" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ama" = (/obj/structure/symbol/clock,/turf/simulated/wall{can_open = 1},/area/chapel/main) +"amb" = (/obj/machinery/door/blast/regular{id = "clock"},/turf/simulated/floor/carpet,/area/chapel/office) +"amc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/lowfloor3) +"amd" = (/obj/structure/bed/padded,/turf/simulated/floor/tiled/white,/area/medical/virology) +"ame" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"amf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"amg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/medical/virology) +"amh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"ami" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"amj" = (/obj/structure/table/rack,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/suit/storage/hazardvest,/obj/item/device/radio,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"amk" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aml" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/medical_lower) +"amm" = (/obj/machinery/optable,/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"amn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"amo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"amp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"amq" = (/obj/machinery/door/window,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"amr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"ams" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"amt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"amu" = (/obj/structure/morgue{icon_state = "morgue1"; dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"amv" = (/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1; id = "Psycheiso"},/turf/simulated/floor,/area/medical/pyschwarde) +"amw" = (/obj/effect/floor_decal/corner/lime{dir = 6},/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/conveyor_switch/oneway{id = "Psycheiso"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"amx" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/door/airlock/multi_tile/glass,/turf/simulated/floor/tiled/steel_ridged,/area/hallway/lower/central) +"amy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/medical/pyschwarde) +"amz" = (/obj/effect/floor_decal/corner/lime{dir = 9},/obj/structure/curtain/medical,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"amA" = (/obj/item/weapon/gun/launcher/syringe,/obj/item/weapon/storage/box/syringegun,/obj/structure/table/steel,/obj/machinery/light{dir = 8},/obj/random/medical,/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"amB" = (/obj/item/weapon/cane,/obj/item/weapon/cane{pixel_x = -3; pixel_y = 2},/obj/item/weapon/cane{pixel_x = -6; pixel_y = 4},/obj/structure/table/steel,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/rxglasses,/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"amC" = (/obj/machinery/iv_drip,/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"amD" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/closet/l3closet/medical,/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"amE" = (/obj/structure/closet/l3closet/medical,/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"amF" = (/obj/structure/closet/crate/trashcart,/turf/simulated/floor/tiled,/area/maintenance/maintroom1) +"amG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) +"amH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) +"amI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) +"amJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Emergency Cold Apparel"},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) +"amK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"amL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"amM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"amN" = (/obj/machinery/newscaster{pixel_x = -30},/obj/structure/table/glass,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"amO" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/chapel/main) +"amP" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/chapel/main) +"amQ" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/storage/fancy/candle_box,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"amR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"amS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"amT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"amU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Chapel Office"; req_access = list(27)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/chapel/main) +"amV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"amW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"amX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"amY" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"amZ" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/bronze,/area/chapel/office) +"ana" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"anb" = (/obj/random/obstruction,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/lowfloor3) +"anc" = (/obj/item/roller,/obj/effect/floor_decal/corner/lime{dir = 10},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/medical/virology) +"and" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"ane" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/space_heater,/turf/simulated/floor/tiled/white,/area/medical/virology) +"anf" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/medical/virology) +"ang" = (/obj/item/roller,/obj/effect/floor_decal/corner/lime{dir = 10},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/white,/area/medical/virology) +"anh" = (/obj/structure/closet/firecloset/full/double,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ani" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"anj" = (/obj/machinery/bodyscanner{dir = 8},/turf/simulated/floor/bluegrid,/area/medical/morgue) +"ank" = (/obj/machinery/body_scanconsole,/turf/simulated/floor/bluegrid,/area/medical/morgue) +"anl" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"anm" = (/obj/structure/filingcabinet/chestdrawer{desc = "A large drawer filled with autopsy reports."; name = "Autopsy Reports"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"ann" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"ano" = (/obj/structure/curtain/medical,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"anp" = (/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"anq" = (/obj/structure/dogbed,/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"anr" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/grass,/area/hallway/lower/central) +"ans" = (/obj/structure/trash_pile,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"ant" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/structure/table/steel,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"anu" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"anv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"anw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"anx" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"any" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"anz" = (/turf/simulated/wall,/area/crew_quarters/kitchen/lower) +"anA" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"anB" = (/obj/machinery/gibber,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"anC" = (/obj/structure/closet/crate/freezer,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"anD" = (/obj/machinery/icecream_vat,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"anE" = (/turf/simulated/wall/r_wall,/area/crew_quarters/kitchen/fish_farm) +"anF" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"anG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"anH" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Chapel Port"; dir = 4},/obj/structure/table/glass,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"anI" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"anJ" = (/turf/simulated/floor/carpet,/area/chapel/main) +"anK" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/carpet,/area/chapel/main) +"anL" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"anM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"anN" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/animal/passive/mouse,/turf/simulated/floor/plating,/area/maintenance/starboard) +"anO" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/starboard) +"anP" = (/obj/machinery/cooker/oven,/turf/simulated/floor,/area/maintenance/starboard) +"anQ" = (/obj/structure/closet/cabinet,/obj/item/clothing/head/chefhat,/obj/item/clothing/suit/chef/classic,/turf/simulated/floor,/area/maintenance/starboard) +"anR" = (/obj/effect/floor_decal/rust,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"anS" = (/turf/simulated/wall/r_wall,/area/maintenance/lowfloor3) +"anT" = (/obj/machinery/door/window/southright{dir = 1; name = "Virology Isolation Room Three"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"anU" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) +"anV" = (/turf/simulated/wall,/area/medical/virology) +"anW" = (/obj/machinery/door/window/southright{dir = 1; name = "Virology Isolation Room Four"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"anX" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_y = 0},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = -3},/obj/item/weapon/pen/blue{pixel_x = 3; pixel_y = -1},/obj/item/device/camera{name = "Autopsy Camera"; pixel_x = -2; pixel_y = 7},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"anY" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/box/bodybags{pixel_x = 4; pixel_y = 4},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"anZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"aoa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"aob" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aoc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aod" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/turf/simulated/floor/grass,/area/hallway/lower/central) +"aoe" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aof" = (/obj/structure/bookcase,/obj/structure/plushie/carp,/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aog" = (/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"aoh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"aoi" = (/obj/machinery/camera/network/medbay{c_tag = "Medbay Secondary Auxiliary Storage"; dir = 1},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"aoj" = (/obj/structure/table/rack,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/radio/intercom{broadcasting = 0; canhear_range = 5; dir = 2; frequency = 1487; icon_state = "intercom"; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -21},/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/defib_kit/loaded,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"aok" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/structure/table/steel,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"aol" = (/obj/item/weapon/storage/box/cdeathalarm_kit,/obj/item/bodybag/cryobag{pixel_x = -3},/obj/item/bodybag/cryobag{pixel_x = -3},/obj/structure/table/steel,/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"aom" = (/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"aon" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"aoo" = (/obj/structure/kitchenspike,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"aop" = (/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"aoq" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -26},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"aor" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"aos" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"aot" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/ai_foyer) +"aou" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/ai_cyborg_station) +"aov" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"aow" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"aox" = (/obj/structure/closet/coffin,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aoy" = (/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aoz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aoA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aoB" = (/obj/structure/morgue{icon_state = "morgue1"; dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aoC" = (/turf/simulated/wall,/area/chapel/chapel_morgue) +"aoD" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/starboard) +"aoE" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/starboard) +"aoF" = (/turf/simulated/wall/titanium,/area/maintenance/lowfloor3) +"aoG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aoH" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/fancy/vials,/obj/effect/floor_decal/corner/lime{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aoI" = (/obj/item/weapon/storage/box/syringes,/obj/structure/table/standard{name = "plastic table frame"},/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aoJ" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/lockbox/vials,/obj/effect/floor_decal/corner/lime{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aoK" = (/obj/item/roller,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aoL" = (/turf/simulated/wall,/area/medical/medbaylower) +"aoM" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor,/area/medical/medbaylower) +"aoN" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"aoO" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"aoP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"aoQ" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"aoR" = (/obj/structure/bookcase,/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aoS" = (/obj/effect/floor_decal/corner/beige,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aoT" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aoU" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aoV" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aoW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Secondary Storage"; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage3) +"aoX" = (/turf/simulated/wall,/area/medical/chemistry) +"aoY" = (/obj/item/device/radio/intercom/department/medbay,/turf/simulated/wall,/area/medical/chemistry) +"aoZ" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"apa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"apb" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"apc" = (/turf/simulated/mineral/cave,/area/chapel/chapel_morgue) +"apd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"ape" = (/turf/simulated/wall/r_wall,/area/maintenance/starboard) +"apf" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/starboard) +"apg" = (/obj/random/junk,/turf/simulated/floor,/area/maintenance/starboard) +"aph" = (/obj/structure/table/steel,/turf/simulated/floor,/area/maintenance/starboard) +"api" = (/obj/item/weapon/pickaxe/drill,/turf/simulated/floor,/area/maintenance/lowfloor3) +"apj" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/extinguisher,/obj/effect/floor_decal/corner/lime/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"apk" = (/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"apl" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"apm" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"apn" = (/obj/item/weapon/storage/box/syringes{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/beakers,/obj/item/weapon/reagent_containers/dropper,/obj/structure/table/glass,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/corner/lime/full{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"apo" = (/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"app" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"apq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"apr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aps" = (/obj/machinery/door/window/westright{name = "Virology Isolation Room Two"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"apt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"apu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"apv" = (/obj/structure/table/standard,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/lime{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology) +"apw" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner/blue,/area/borealis2/elevator/medbasement) +"apx" = (/turf/simulated/shuttle/wall/voidcraft/blue,/area/borealis2/elevator/medbasement) +"apy" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/medical/medbaylower) +"apz" = (/obj/machinery/requests_console/preset/medical,/turf/simulated/wall,/area/medical/morgue) +"apA" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/medical/morgue) +"apB" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access = list(6)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/morgue) +"apC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access = list(6)},/turf/simulated/floor/tiled/white,/area/medical/morgue) +"apD" = (/turf/simulated/wall,/area/crew_quarters/medbreak) +"apE" = (/turf/simulated/floor/grass,/area/hallway/lower/central) +"apF" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/grass,/area/hallway/lower/central) +"apG" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/crew_quarters/medbreak) +"apH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{name = "Staff Room"; req_access = list(5)},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"apI" = (/obj/machinery/vending/medical,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"apJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"apK" = (/obj/structure/flora/pottedplant/orientaltree,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"apL" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/medical/chemistry) +"apM" = (/obj/structure/table/reinforced,/obj/structure/sign/periodic{pixel_y = 32},/obj/effect/floor_decal/corner/beige{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"apN" = (/obj/machinery/chemical_dispenser/full,/obj/structure/table/reinforced,/obj/machinery/camera/network/medbay{c_tag = "Medbay Chemistry"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/beige{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"apO" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/device/radio/intercom{desc = "Talk... listen through this."; dir = 1; name = "Station Intercom (Brig Radio)"; pixel_x = 0; pixel_y = 21; wires = 7},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/beige{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"apP" = (/obj/structure/morgue{icon_state = "morgue1"; dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"apQ" = (/obj/structure/table/reinforced,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/floor_decal/corner/beige{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"apR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/beige{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"apS" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/obj/effect/floor_decal/corner/beige{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"apT" = (/obj/machinery/chemical_dispenser/full,/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/beige/full{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"apU" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "chemcounter"; name = "Pharmacy Counter Shutters"; opacity = 0},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/medical/chemistry) +"apV" = (/obj/effect/mist,/obj/structure/railing{dir = 2; flags = null},/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"apW" = (/obj/structure/railing{dir = 2; flags = null},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"apX" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"apY" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"apZ" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"aqa" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"aqb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"aqc" = (/obj/effect/mist,/obj/structure/railing{dir = 8},/turf/simulated/floor/water/hotspring,/area/chapel/chapel_morgue) +"aqd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/button/crematorium{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aqe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aqf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aqg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aqh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aqi" = (/obj/structure/extinguisher_cabinet{pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aqj" = (/obj/structure/table/rack,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/mask/gas,/obj/item/device/flashlight,/obj/item/clothing/glasses/meson,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/starboard) +"aqk" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/starboard) +"aql" = (/obj/structure/table/steel,/obj/machinery/microwave,/turf/simulated/floor,/area/maintenance/starboard) +"aqm" = (/obj/structure/table/steel,/obj/item/pizzabox/old,/turf/simulated/floor,/area/maintenance/starboard) +"aqn" = (/obj/random/contraband,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/lowfloor3) +"aqo" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular,/obj/random/medical/lite,/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aqp" = (/turf/simulated/floor/tiled/white,/area/medical/virology) +"aqq" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aqr" = (/obj/structure/table/glass,/obj/item/weapon/storage/lockbox/vials,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = 32},/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aqs" = (/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aqt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aqu" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/device/antibody_scanner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/corner/lime,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aqv" = (/obj/machinery/space_heater,/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aqw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aqx" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/camera/network/medbay{c_tag = "Virology Isolation 3"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aqy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aqz" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor/plating,/area/borealis2/elevator/medbasement) +"aqA" = (/turf/simulated/floor/plating,/area/borealis2/elevator/medbasement) +"aqB" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/flora/pottedplant/minitree,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqC" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/space_heater,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqD" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqE" = (/obj/effect/floor_decal/corner/lime{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqF" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqG" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqH" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqI" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/sink{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqJ" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqK" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqL" = (/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqM" = (/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/sortjunction/flipped{name = "Chemistry"; sortType = "Chemistry"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqP" = (/obj/effect/floor_decal/corner/lime{dir = 6},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/lime/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqR" = (/obj/machinery/alarm{pixel_y = 22},/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqS" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aqT" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southright{dir = 8; name = "Chemistry Desk"; req_access = list(33)},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/northright{dir = 4; name = "Chemistry Desk"},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aqU" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aqV" = (/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aqW" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aqX" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aqY" = (/obj/machinery/smartfridge/chemistry/chemvator/down,/turf/simulated/floor/plating,/area/medical/chemistry) +"aqZ" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/beakers,/obj/machinery/bunsen_burner,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"ara" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"arb" = (/obj/machinery/chem_master,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/corner/beige{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"arc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"ard" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"are" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"arf" = (/obj/structure/railing{dir = 2; flags = null},/obj/structure/railing{dir = 8},/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"arg" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/chapel/chapel_morgue) +"arh" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/water/hotspring,/area/chapel/chapel_morgue) +"ari" = (/obj/structure/morgue/crematorium,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"arj" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"ark" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"arl" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"arm" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Chapel Morgue"; dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"arn" = (/turf/simulated/wall/r_wall,/area/ai_upload) +"aro" = (/obj/structure/closet/crate,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/starboard) +"arp" = (/obj/item/weapon/caution/cone,/turf/simulated/floor,/area/maintenance/lowfloor3) +"arq" = (/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"arr" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/vials,/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"ars" = (/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"art" = (/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 1},/obj/machinery/sleeper{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aru" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/effect/floor_decal/corner/lime{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology) +"arv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/virology) +"arw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/medical/virology) +"arx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/medical/virology) +"ary" = (/turf/simulated/floor/tiled/white,/area/borealis2/elevator/medbasement) +"arz" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arF" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arG" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arJ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arQ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"arR" = (/obj/machinery/door/airlock/glass_medical{name = "Chemistry Laboratory"; req_access = list(33)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"arS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/beige{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"arT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"arU" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"arV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"arW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"arX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"arY" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southright{dir = 8; name = "Chemistry Desk"; req_access = list(33)},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/northright{dir = 4; name = "Chemistry Desk"},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "chemcounter"; name = "Pharmacy Counter Shutters"; opacity = 0},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"arZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"asa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"asb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"asc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"asd" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"ase" = (/turf/simulated/floor/water/hotspring,/area/chapel/chapel_morgue) +"asf" = (/turf/simulated/floor,/area/chapel/chapel_morgue) +"asg" = (/obj/item/device/radio/intercom/department/medbay,/turf/simulated/wall/r_wall,/area/medical/virology) +"ash" = (/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/camera/network/medbay{c_tag = "Virology lab"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"asi" = (/obj/machinery/bodyscanner,/turf/simulated/floor/tiled/white,/area/medical/virology) +"asj" = (/obj/effect/floor_decal/corner/lime{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"ask" = (/obj/effect/floor_decal/corner/lime{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"asl" = (/obj/machinery/body_scanconsole,/turf/simulated/floor/tiled/white,/area/medical/virology) +"asm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"asn" = (/obj/effect/floor_decal/corner/lime{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aso" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"asp" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/camera/network/medbay{c_tag = "Virology Isolation 4"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"asq" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"asr" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"ass" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"ast" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asv" = (/obj/effect/floor_decal/corner/beige{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"asw" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asx" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asy" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asz" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/structure/table/standard{name = "plastic table frame"},/obj/structure/bedsheetbin,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "Medbay Lower Hall Port"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asA" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asB" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asC" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asD" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/structure/flora/pottedplant/large,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asE" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asF" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/light,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asG" = (/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/vending/wallmed1{layer = 3.3; name = "Emergency NanoMed"; pixel_x = 28; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asH" = (/obj/effect/floor_decal/corner/lime{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asI" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asJ" = (/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asK" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Medbay Lower hallway Starboard"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"asM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/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/white,/area/medical/medbaylower) +"asN" = (/obj/effect/floor_decal/corner/beige/full,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"asO" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/reagentgrinder,/obj/effect/floor_decal/corner/beige{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"asP" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/beige{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"asQ" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/effect/floor_decal/corner/beige{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"asR" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/corner/beige/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"asS" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/hand_labeler,/obj/machinery/light,/obj/effect/floor_decal/corner/beige{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"asT" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/effect/floor_decal/corner/beige/full,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"asU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/beige{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"asV" = (/obj/machinery/status_display,/turf/simulated/wall,/area/medical/chemistry) +"asW" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"asX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"asY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"asZ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/fore) +"ata" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"atb" = (/obj/effect/mist,/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"atc" = (/turf/simulated/wall,/area/crew_quarters/recreation_area) +"atd" = (/obj/structure/sign/poster,/turf/simulated/wall,/area/crew_quarters/recreation_area) +"ate" = (/obj/machinery/porta_turret/stationary,/turf/simulated/floor/reinforced,/area/ai_upload) +"atf" = (/obj/machinery/computer/aiupload,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"atg" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/ai_upload) +"ath" = (/obj/machinery/computer/borgupload,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"ati" = (/obj/machinery/disease2/incubator,/obj/effect/floor_decal/corner/lime/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"atj" = (/obj/effect/floor_decal/corner/lime{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"atk" = (/obj/machinery/computer/centrifuge,/obj/effect/floor_decal/corner_techfloor_grid{dir = 9},/obj/effect/floor_decal/corner_techfloor_grid{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology) +"atl" = (/obj/machinery/disease2/diseaseanalyser,/obj/effect/floor_decal/corner_techfloor_grid{dir = 6},/obj/effect/floor_decal/corner_techfloor_grid{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology) +"atm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"atn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"ato" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"atp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"atq" = (/obj/machinery/door/window/westright{name = "Virology Isolation Room One"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"atr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"ats" = (/obj/structure/table/standard,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/lime{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology) +"att" = (/obj/turbolift_map_holder/lumber/medevator,/turf/simulated/floor/plating,/area/borealis2/elevator/medbasement) +"atu" = (/obj/effect/floor_decal/corner/lime/full{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"atv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"atw" = (/obj/machinery/door/window/northleft{req_one_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"atx" = (/obj/machinery/door/window/northright{req_one_access = list(5)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"aty" = (/obj/machinery/suit_cycler/medical,/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"atz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"atA" = (/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "Medbay Lower Annex"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"atB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{name = "Staff Room"; req_access = list(5)},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"atC" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"atD" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"atE" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"atF" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"atG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"atH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"atI" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"atJ" = (/obj/machinery/computer/crew,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"atK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"atL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical{req_access = list(33)},/turf/simulated/floor,/area/medical/chemistry) +"atM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/medical_lower) +"atN" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"atO" = (/obj/structure/railing{dir = 8},/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"atP" = (/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"atQ" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"atR" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"atS" = (/obj/machinery/computer/arcade,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"atT" = (/obj/structure/table/woodentable,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/recharger{pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"atU" = (/obj/structure/table/woodentable,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/item/device/paicard,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"atV" = (/obj/structure/table/woodentable,/obj/item/weapon/coin/silver,/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/camera/network/civilian{c_tag = "CIV - Recreation Area Fore"; dir = 2},/obj/item/clothing/glasses/threedglasses,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"atW" = (/obj/machinery/computer/arcade/orion_trail,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"atX" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"atY" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/oxygen,/obj/item/weapon/aiModule/oneHuman,/obj/item/weapon/aiModule/purge,/obj/item/weapon/aiModule/antimov,/obj/item/weapon/aiModule/teleporterOffline,/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/bluegrid,/area/ai_upload) +"atZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aua" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aub" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"auc" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aud" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aue" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/reset,/obj/effect/floor_decal/techfloor{dir = 5},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/bluegrid,/area/ai_upload) +"auf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/starboard) +"aug" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/structure/reagent_dispensers/virusfood{pixel_x = -30},/obj/item/weapon/reagent_containers/glass/beaker,/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology) +"auh" = (/obj/effect/floor_decal/corner/lime,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aui" = (/obj/machinery/camera/network/medbay{c_tag = "Surgery Wing Starboard"; dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; canhear_range = 5; dir = 2; frequency = 1487; icon_state = "intercom"; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -21},/obj/effect/floor_decal/corner/lime{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/virology) +"auj" = (/obj/effect/floor_decal/corner/lime{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"auk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aul" = (/obj/effect/floor_decal/corner/lime,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aum" = (/obj/machinery/disposal,/obj/effect/floor_decal/industrial/warning/full,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aun" = (/obj/item/roller,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology) +"auo" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aup" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"auq" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"aur" = (/obj/structure/table/rack,/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/item/device/multitool,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/radio{pixel_x = -4; pixel_y = 1},/obj/item/device/radio{pixel_x = 4; pixel_y = -1},/obj/item/device/defib_kit/compact/loaded,/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"aus" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit{pixel_y = -5},/obj/item/weapon/tank/oxygen{pixel_y = -4},/obj/item/device/suit_cooling_unit{pixel_y = -5},/obj/item/weapon/tank/oxygen{pixel_y = -4},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"aut" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/lime{dir = 9},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"auu" = (/obj/structure/bookcase/manuals/medical,/obj/item/weapon/book/manual/stasis,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"auv" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"auw" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"aux" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"auy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"auz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"auA" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"auB" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/flora/skeleton,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"auC" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"auD" = (/obj/structure/table/rack,/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/device/gps/medical,/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"auE" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical/emt,/obj/item/clothing/head/helmet/space/void/medical/emt,/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"auF" = (/obj/structure/closet/secure_closet/paramedic,/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"auG" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical/emt,/obj/item/clothing/head/helmet/space/void/medical/emt,/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"auH" = (/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"auI" = (/turf/simulated/floor/plating,/area/medical/chemistry) +"auJ" = (/obj/structure/cable{dir = 4; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"auK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"auL" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor/water/hotspring,/area/maintenance/medical_lower) +"auM" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"auN" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"auO" = (/obj/structure/railing{dir = 8},/obj/effect/mist,/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"auP" = (/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"auQ" = (/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"auR" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"auS" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"auT" = (/obj/structure/closet/lasertag/blue,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"auU" = (/turf/simulated/wall/r_wall,/area/ai_upload_foyer) +"auV" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/ai_upload_foyer) +"auW" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) +"auX" = (/turf/simulated/floor/bluegrid,/area/ai_upload) +"auY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"auZ" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/nanotrasen,/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) +"ava" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/starboard) +"avb" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/maintenance/lowfloor3) +"avc" = (/obj/item/inflatable/torn,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"avd" = (/obj/machinery/disease2/isolator,/obj/effect/floor_decal/corner/lime/full,/turf/simulated/floor/tiled/white,/area/medical/virology) +"ave" = (/obj/structure/bed/chair/office/light,/obj/effect/floor_decal/corner/lime,/turf/simulated/floor/tiled/white,/area/medical/virology) +"avf" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 8},/obj/item/device/radio{anchored = 1; broadcasting = 0; canhear_range = 7; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; listening = 1; name = "Virology Emergency Phone"; pixel_x = -6; pixel_y = 8},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/light,/obj/effect/floor_decal/corner/lime{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/virology) +"avg" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/hand_labeler,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -27},/obj/item/device/radio{pixel_x = -4},/obj/effect/floor_decal/corner/lime/full{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"avh" = (/obj/machinery/door/airlock/glass_medical{name = "Virology Laboratory"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/virology) +"avi" = (/obj/machinery/door/airlock/glass_medical{name = "Virology Laboratory"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) +"avj" = (/obj/machinery/oxygen_pump,/turf/simulated/wall,/area/medical/medbaylower) +"avk" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"avl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"avm" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/pizzabox,/obj/item/weapon/material/ashtray/plastic,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"avn" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/item/weapon/deck/cards,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"avo" = (/obj/structure/fireaxecabinet{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"avp" = (/obj/machinery/camera/network/medbay{c_tag = "Medbay Recovery Ward"; dir = 1},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"avq" = (/obj/machinery/vending/fitness,/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"avr" = (/obj/structure/closet/secure_closet/paramedic,/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"avs" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"avt" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"avu" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"avv" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"avw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Secondary Storage"; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"avx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"avy" = (/obj/structure/bed/chair/wheelchair,/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"avz" = (/turf/simulated/wall,/area/medical/biostorage2) +"avA" = (/turf/simulated/wall/r_wall,/area/medical/biostorage2) +"avB" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"avC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"avD" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/cups,/obj/machinery/light{dir = 8},/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"avE" = (/obj/structure/closet/lasertag/red,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"avF" = (/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"avG" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"avH" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/asimov,/obj/item/weapon/aiModule/freeformcore,/obj/item/weapon/aiModule/corp,/obj/item/weapon/aiModule/paladin,/obj/item/weapon/aiModule/robocop,/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/bluegrid,/area/ai_upload) +"avI" = (/obj/effect/floor_decal/techfloor{dir = 9},/obj/effect/floor_decal/techfloor/hole{dir = 1},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"avJ" = (/obj/effect/floor_decal/techfloor{dir = 5},/obj/effect/floor_decal/techfloor/hole/right{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"avK" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/freeform,/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/floor/bluegrid,/area/ai_upload) +"avL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor,/area/maintenance/starboard) +"avM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/starboard) +"avN" = (/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor,/area/maintenance/starboard) +"avO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 1},/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/starboard) +"avP" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/starboard) +"avQ" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/lowfloor3) +"avR" = (/obj/machinery/computer/med_data/laptop,/obj/structure/table/standard{name = "plastic table frame"},/obj/structure/window/phoronreinforced,/obj/effect/floor_decal/corner/lime/full,/turf/simulated/floor/tiled/white,/area/medical/virology) +"avS" = (/obj/machinery/smartfridge/chemistry/virology,/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/window/phoronbasic,/turf/simulated/wall/silver,/area/medical/virology) +"avT" = (/obj/machinery/computer/diseasesplicer{dir = 1},/obj/structure/window/phoronreinforced,/obj/effect/floor_decal/corner/lime/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"avU" = (/obj/effect/floor_decal/corner/lime{dir = 1},/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/virology) +"avV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) +"avW" = (/obj/effect/floor_decal/corner/lime{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"avX" = (/turf/simulated/wall/r_wall,/area/medical/virologyaccess) +"avY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical{req_one_access = list()},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/medical/medbaylower) +"avZ" = (/obj/machinery/newscaster,/turf/simulated/wall,/area/medical/medbaylower) +"awa" = (/obj/effect/floor_decal/corner/lime{dir = 6},/obj/structure/table/standard{name = "plastic table frame"},/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"awb" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"awc" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/food/drinks/britcup,/obj/item/weapon/reagent_containers/food/drinks/britcup,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"awd" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/recharger,/obj/item/device/defib_kit/loaded,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"awe" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"awf" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"awg" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"awh" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"awi" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"awj" = (/obj/machinery/requests_console/preset/medical,/turf/simulated/wall,/area/crew_quarters/medbreak) +"awk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"awl" = (/obj/structure/bedsheetbin,/obj/structure/table/standard,/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"awm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"awn" = (/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"awo" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"awp" = (/obj/item/clothing/suit/storage/fluff,/obj/item/clothing/glasses/hud/health/prescription,/obj/item/clothing/glasses/hud/health/prescription,/obj/item/clothing/glasses/hud/health/prescription,/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"awq" = (/obj/structure/closet/crate{icon_state = "crateopen"; name = "Grenade Crate"; opened = 1},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"awr" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"aws" = (/turf/simulated/wall,/area/maintenance/maintroom1) +"awt" = (/turf/simulated/wall,/area/hallway/lower/central) +"awu" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"awv" = (/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aww" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"awx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"awy" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"awz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"awA" = (/obj/machinery/door/airlock/glass{name = "Pool"},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/recreation_area) +"awB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"awC" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"awD" = (/obj/machinery/hologram/holopad,/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"awE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"awF" = (/obj/machinery/media/jukebox,/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"awG" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"awH" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"awI" = (/obj/machinery/turretid/stun{control_area = "\improper AI Upload Chamber"; name = "AI Upload turret control"; pixel_x = 0; pixel_y = 30},/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"awJ" = (/obj/machinery/camera/motion{dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) +"awK" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"awL" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"awM" = (/turf/simulated/mineral/cave,/area/maintenance/starboard) +"awN" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/starboard) +"awO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/starboard) +"awP" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor,/area/maintenance/starboard) +"awQ" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 8},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/starboard) +"awR" = (/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/mine/explored/lower_rock) +"awS" = (/obj/item/clothing/under/color/grey,/turf/simulated/floor,/area/mine/explored/lower_rock) +"awT" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/virusdish/random,/obj/item/weapon/virusdish/random,/obj/item/weapon/virusdish/random,/turf/simulated/floor/tiled/white,/area/medical/virology) +"awU" = (/obj/effect/mist,/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/water/hotspring,/area/hallway/lower/fore) +"awV" = (/obj/machinery/shower{pixel_y = 25},/turf/simulated/floor/tiled/white,/area/medical/virology) +"awW" = (/obj/machinery/door/airlock/glass_centcom{name = "Pathogen Deep Freeze"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"awX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"awY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/virology) +"awZ" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/box/gloves{pixel_x = 8; pixel_y = 5},/obj/item/weapon/storage/box/masks,/turf/simulated/floor/tiled/white,/area/medical/virology) +"axa" = (/obj/structure/closet/wardrobe/virology_white,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -28; pixel_y = -8; req_access = list(39)},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"axb" = (/obj/structure/closet/l3closet/virology,/obj/effect/floor_decal/industrial/warning,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"axc" = (/obj/structure/closet/l3closet/virology,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"axd" = (/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "virologyquar"; name = "Virology Emergency Quarantine Blast Doors"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/medical/virologyaccess) +"axe" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/medical/medbaylower) +"axf" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/medical/medbaylower) +"axg" = (/obj/structure/sign/biohazard,/turf/simulated/wall/r_wall,/area/medical/medbaylower) +"axh" = (/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"axi" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"axj" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/bed/roller,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"axk" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/flora/pottedplant/subterranean,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"axl" = (/obj/effect/floor_decal/corner/lime/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"axm" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"axn" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"axo" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "Medbay break room"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"axp" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"axq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical,/turf/simulated/floor,/area/maintenance/medical_lower) +"axr" = (/obj/structure/table/standard,/obj/item/device/defib_kit,/obj/item/device/defib_kit,/obj/item/device/defib_kit,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"axs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"axt" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "Medbay Auxiliury Storage"; dir = 8},/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"axu" = (/obj/structure/table/rack,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"axv" = (/obj/structure/closet/crate/radiation,/turf/simulated/floor/tiled/dark,/area/medical/biostorage2) +"axw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical,/turf/simulated/floor,/area/medical/medbaylower) +"axx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"axy" = (/obj/structure/coatrack,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"axz" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/maintenance/lowfloor1) +"axA" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"axB" = (/obj/structure/girder,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"axC" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"axD" = (/obj/structure/barricade,/obj/effect/decal/cleanable/blood/drip,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"axE" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights,/turf/simulated/floor/tiled,/area/maintenance/maintroom1) +"axF" = (/turf/simulated/floor/tiled,/area/maintenance/maintroom1) +"axG" = (/turf/simulated/floor/tiled/steel_ridged,/area/hallway/lower/central) +"axH" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"axI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"axJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/junction/yjunction{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"axK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"axL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/hallway/lower/central) +"axM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"axN" = (/obj/machinery/door/airlock/glass{name = "Pool"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/recreation_area) +"axO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"axP" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"axQ" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"axR" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"axS" = (/obj/structure/table/woodentable,/obj/machinery/recharger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"axT" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"axU" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"axV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/motion{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"axW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"axX" = (/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"axY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "AI Upload"; req_access = list(16); req_one_access = list()},/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"axZ" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/camera/motion,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aya" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "AI Upload"; req_access = list(16); req_one_access = list()},/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"ayb" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"ayc" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"ayd" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aye" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"ayf" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"ayg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/starboard) +"ayh" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/starboard) +"ayi" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/starboard) +"ayj" = (/obj/item/weapon/oldtwohanded/spear,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/mine/explored/lower_rock) +"ayk" = (/obj/item/weapon/oldtwohanded/spear,/turf/simulated/floor,/area/mine/explored/lower_rock) +"ayl" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/inflatable/door,/turf/simulated/floor,/area/maintenance/lowfloor3) +"aym" = (/obj/machinery/shower{dir = 1},/obj/machinery/button/remote/airlock{id = "virofreezer"; name = "Pathogen Deep Freeze Bolts"; pixel_y = -24; specialfunctions = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"ayn" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"ayo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"ayp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"ayq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "virology_airlock_control"; name = "Virology Airlock Controller"; pixel_x = 25; pixel_y = 32; tag_exterior_door = "virology_airlock_exterior"; tag_interior_door = "virology_airlock_interior"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"ayr" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access = list(39)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"ays" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"ayt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"ayu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"ayv" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access = list(39)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 0; pixel_y = 24; req_access = list(39)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/medical/virologyaccess) +"ayw" = (/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "virologyquar"; name = "Virology Emergency Quarantine Blast Doors"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/medical/virologyaccess) +"ayx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/medical/medbaylower) +"ayy" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/medical/medbaylower) +"ayz" = (/obj/machinery/door/airlock/medical{name = "Virology Access"; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/medical/medbaylower) +"ayA" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/sign/v,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"ayB" = (/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/white,/area/medical/medbaylower) +"ayC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"ayD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"ayE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"ayF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical,/turf/simulated/floor,/area/crew_quarters/medbreak) +"ayG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"ayH" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/maintenance/lowfloor1) +"ayI" = (/obj/structure/closet/crate/mimic/cointoss,/turf/simulated/floor/plating,/area/mine/explored/lower_rock) +"ayJ" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"ayK" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"ayL" = (/turf/simulated/wall,/area/hallway/lower/aft) +"ayM" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hallway/lower/central) +"ayN" = (/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"ayO" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/mine/explored/lower_rock) +"ayP" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/mine/explored/lower_rock) +"ayQ" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/oxygen,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/extinguisher,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/plating,/area/mine/explored/lower_rock) +"ayR" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/mine/explored/lower_rock) +"ayS" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/mine/explored/lower_rock) +"ayT" = (/obj/structure/kitchenspike,/obj/effect/gibspawner/human,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"ayU" = (/obj/structure/closet/crate/freezer{name = "freezer: Harvested organs"},/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"ayV" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer,/area/maintenance/maintroom1) +"ayW" = (/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"ayX" = (/obj/structure/barricade,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"ayY" = (/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor/tiled,/area/maintenance/maintroom1) +"ayZ" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access = list(26)},/turf/simulated/floor/tiled/steel_grid,/area/hallway/lower/central) +"aza" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"azb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"azc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"azd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aze" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"azf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/recreation_area) +"azg" = (/obj/machinery/vending/coffee,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"azh" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"azi" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"azj" = (/obj/structure/table/woodentable,/obj/item/device/instrument/guitar,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"azk" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"azl" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"azm" = (/obj/effect/floor_decal/corner_techfloor_grid,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"azn" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/effect/floor_decal/techfloor{dir = 6},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"azo" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/bluegrid,/area/ai_upload) +"azp" = (/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"azq" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"azr" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) +"azs" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/starboard) +"azt" = (/obj/item/clothing/under/color/grey,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/mine/explored/lower_rock) +"azu" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/tiled/white,/area/medical/virology) +"azv" = (/obj/structure/closet/crate/freezer,/obj/machinery/camera/network/medbay{c_tag = "Virology Viral Storage"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"azw" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/cable/green,/turf/simulated/floor/tiled/white,/area/medical/virology) +"azx" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/virology) +"azy" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "virologyq_airlock_control"; name = "Virology Quarantine Access Console"; pixel_x = 32; pixel_y = -25; tag_exterior_door = "virologyq_airlock_exterior"; tag_interior_door = "virologyq_airlock_interior"},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) +"azz" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/camera/network/medbay{c_tag = "Virology Entry"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"azA" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"azB" = (/obj/structure/table/steel,/obj/machinery/light_switch{pixel_x = 0; pixel_y = -26},/obj/machinery/camera/network/medbay{c_tag = "Medbay Exam room"; dir = 1},/obj/random/medical,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"azC" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/window/reinforced{dir = 8},/obj/machinery/shower{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/steel,/area/medical/virologyaccess) +"azD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/medical/medbaylower) +"azE" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/medical/medbaylower) +"azF" = (/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"azG" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"azH" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/obj/machinery/camera/network/medbay{c_tag = "Medbay Lower Annex Aft"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"azI" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/item/device/radio/intercom/department/medbay{pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"azJ" = (/obj/structure/sign/directions/cryo{icon_state = "direction_cry"; dir = 8},/turf/simulated/wall,/area/crew_quarters/sleep/cryo) +"azK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hallway/lower/central) +"azL" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/structure/coatrack,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"azM" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor,/area/mine/explored/lower_rock) +"azN" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/mine/explored/lower_rock) +"azO" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/mine/explored/lower_rock) +"azP" = (/obj/machinery/disposal,/turf/simulated/floor/tiled/dark,/area/hallway/lower/aft) +"azQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"azR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/curtain/medical,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"azS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"azT" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"azU" = (/obj/effect/decal/cleanable/blood/drip,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"azV" = (/obj/effect/decal/cleanable/blood/tracks/footprints,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"azW" = (/obj/effect/gibspawner/human,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"azX" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/maintenance/maintroom1) +"azY" = (/obj/machinery/light/small,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/tiled,/area/maintenance/maintroom1) +"azZ" = (/obj/machinery/computer/timeclock/premade/west,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aAa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aAb" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aAc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aAd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aAe" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/vending/fitness,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"aAf" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"aAg" = (/obj/effect/floor_decal/spline/plain,/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"aAh" = (/obj/effect/floor_decal/spline/plain,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"aAi" = (/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"aAj" = (/obj/structure/sign/poster,/turf/simulated/wall/r_wall,/area/crew_quarters/recreation_area) +"aAk" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aAl" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aAm" = (/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aAn" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aAo" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aAp" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/effect/floor_decal/techfloor/hole,/obj/machinery/camera/network/command{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aAq" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/inflatable/door,/turf/simulated/floor,/area/maintenance/lowfloor3) +"aAr" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virologyq_airlock_interior"; locked = 1; name = "Virology Quarantine Airlock"; req_access = list(39)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/access_button/airlock_interior{master_tag = "virologyq_airlock_control"; pixel_x = 30; pixel_y = -5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aAs" = (/turf/simulated/wall,/area/medical/toilet) +"aAt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Rest Room"; req_one_access = list()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/toilet) +"aAu" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/medical/medbaylower) +"aAv" = (/turf/simulated/wall/r_wall,/area/medical/medbay_emt_storage) +"aAw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/machinery/door/firedoor,/turf/simulated/floor,/area/hallway/primary/starboard) +"aAx" = (/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/dark,/area/hallway/lower/central) +"aAy" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aAz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aAA" = (/obj/structure/table/standard,/obj/item/weapon/material/knife/butch,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"aAB" = (/obj/machinery/optable,/obj/effect/decal/remains/unathi,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"aAC" = (/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/maintenance/maintroom1) +"aAD" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aAE" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aAF" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aAG" = (/obj/machinery/door/airlock/glass{name = "Pool"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/crew_quarters/recreation_area) +"aAH" = (/obj/machinery/newscaster,/turf/simulated/wall,/area/crew_quarters/recreation_area) +"aAI" = (/turf/simulated/wall,/area/crew_quarters/pool) +"aAJ" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aAK" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 8},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor/plating,/area/ai_upload_foyer) +"aAL" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/oxygen,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/extinguisher,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/starboard) +"aAM" = (/obj/machinery/washing_machine,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aAN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aAO" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/clothing/under/sterile,/obj/item/clothing/under/sterile,/obj/item/clothing/under/sterile,/obj/item/clothing/under/sterile,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aAP" = (/obj/structure/closet/crate,/obj/random/drinkbottle,/obj/random/drinkbottle,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/medical_lower) +"aAQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical{req_one_access = list()},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/medical/medbaylower) +"aAR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aAS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aAT" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aAU" = (/obj/structure/toilet,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/toilet) +"aAV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aAW" = (/turf/simulated/wall,/area/medical/medbay_emt_storage) +"aAX" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/lower/central) +"aAY" = (/obj/machinery/gear_painter,/turf/simulated/floor/tiled/dark,/area/hallway/lower/central) +"aAZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aBa" = (/obj/machinery/light_switch{dir = 1; pixel_x = 4; pixel_y = -24},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aBb" = (/obj/machinery/bookbinder,/turf/simulated/floor/wood,/area/library) +"aBc" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aBd" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aBe" = (/turf/simulated/wall,/area/crew_quarters/sleep/cryo) +"aBf" = (/obj/structure/stairs/north,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aBg" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aBh" = (/obj/structure/stairs/north,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aBi" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel,/area/hallway/lower/central) +"aBj" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aBk" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBl" = (/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBm" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBn" = (/obj/structure/table/glass,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBo" = (/obj/item/weapon/stool/padded,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBp" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBq" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/camera/network/civilian{c_tag = "CIV - Pool Fore"; dir = 2},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBr" = (/obj/item/weapon/stool/padded,/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBs" = (/obj/structure/table/glass,/obj/item/weapon/inflatable_duck,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBt" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBu" = (/obj/structure/table/glass,/obj/item/inflatable{pixel_x = 6; pixel_y = 6},/obj/item/inflatable{pixel_x = 2; pixel_y = 2},/obj/item/inflatable{pixel_x = -2; pixel_y = -3},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aBv" = (/turf/simulated/wall,/area/ai_upload_foyer) +"aBw" = (/obj/machinery/door/blast/shutters{dir = 4; id = "maintbar"; layer = 3.1; name = "Bar Shutters"},/obj/machinery/media/jukebox{hacked = 1},/turf/simulated/floor/lino,/area/maintenance/blueserg) +"aBx" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor,/area/maintenance/starboard) +"aBy" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aBz" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aBA" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aBB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aBC" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/clothing/gloves/sterile/latex,/obj/item/clothing/gloves/sterile/latex,/obj/item/clothing/gloves/sterile/latex,/obj/item/clothing/gloves/sterile/latex,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aBD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aBE" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/maintenance/medical_lower) +"aBF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aBG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aBH" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/obj/structure/cable/green,/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aBI" = (/obj/machinery/door/airlock{name = "Medical Restroom"},/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aBJ" = (/obj/structure/undies_wardrobe{pixel_y = -15},/turf/simulated/wall,/area/medical/toilet) +"aBK" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aBL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aBM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aBN" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aBO" = (/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_storage) +"aBP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aBQ" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aBR" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aBS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aBT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aBU" = (/obj/structure/cryofeed{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aBV" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aBW" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/requests_console{department = "Crew Quarters"; pixel_y = 30},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aBX" = (/obj/machinery/computer/cryopod{density = 0; pixel_y = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aBY" = (/obj/effect/landmark{name = "JoinLateCryo"},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aBZ" = (/obj/machinery/cryopod,/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aCa" = (/obj/structure/cryofeed,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aCb" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCc" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCg" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 10},/turf/simulated/floor/plating,/area/crew_quarters/pool) +"aCh" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aCi" = (/obj/structure/extinguisher_cabinet{pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aCj" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/starboard) +"aCk" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/starboard) +"aCl" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/maintenance/starboard) +"aCm" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/medical/virology) +"aCn" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virologyq_airlock_exterior"; locked = 1; name = "Virology Quarantine Airlock"; req_access = list(39)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "virologyq_airlock_control"; name = "Virology Quarantine Access Button"; pixel_x = 24; pixel_y = 0; req_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aCo" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/maintenance/medical_lower) +"aCp" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aCq" = (/turf/simulated/wall/r_wall,/area/medical/toilet) +"aCr" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aCs" = (/obj/effect/floor_decal/corner/beige{dir = 6},/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aCt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aCu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aCv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aCw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/medical/toilet) +"aCx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aCy" = (/obj/structure/closet/crate/mimic/cointoss,/turf/simulated/floor/plating,/area/mine/unexplored/lower_rock) +"aCz" = (/obj/structure/closet/crate/mimic/cointoss,/turf/simulated/floor/plating,/area/maintenance/maintroom5) +"aCA" = (/obj/machinery/cryopod{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aCB" = (/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aCC" = (/obj/machinery/cryopod,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aCD" = (/obj/machinery/lapvend,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aCE" = (/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aCF" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aCG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCN" = (/turf/simulated/floor/tiled/dark,/area/hallway/lower/central) +"aCO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aCR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aCS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aCT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aCU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aCV" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aCW" = (/turf/simulated/wall,/area/crew_quarters/recreation_area_restroom) +"aCX" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/starboard) +"aCY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/starboard) +"aCZ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/starboard) +"aDa" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/device/radio/headset,/obj/item/device/radio/headset,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDb" = (/obj/structure/closet/wardrobe/white,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDc" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDd" = (/obj/machinery/computer/arcade,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDe" = (/obj/machinery/vending/cola,/obj/item/trash/candy,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDf" = (/obj/machinery/vending/snack,/obj/machinery/camera/network/medbay{c_tag = "Virology Quarantine North"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDg" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDh" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDj" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDk" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDl" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/structure/window/reinforced/tinted,/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aDm" = (/obj/machinery/door/window/southleft,/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aDn" = (/obj/structure/window/reinforced/tinted,/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aDo" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aDp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aDq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aDr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aDs" = (/obj/machinery/camera/autoname,/turf/simulated/floor/tiled/steel_dirty,/area/hallway/lower/aft) +"aDt" = (/turf/simulated/floor/tiled/steel_dirty,/area/hallway/lower/aft) +"aDu" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aDv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aDw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aDx" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aDy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aDz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aDA" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aDB" = (/turf/simulated/floor/wood,/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/wood/broken,/area/vacant/vacant_site/private) +"aDC" = (/obj/structure/safe/floor{name = "Vault of Memories"},/obj/item/weapon/dnainjector/tourmut{name = "\improper DNA injector (???)"},/obj/item/weapon/dnainjector/hallucination{name = "\improper DNA injector (???)"},/obj/item/weapon/dnainjector/firemut{name = "\improper DNA injector (???)"},/obj/item/weapon/dnainjector/firemut{name = "\improper DNA injector (???)"},/obj/item/clothing/under/rank/geneticist{desc = "This strange uniform brings back a weird feeling of deja vu, and faint memories.."; name = "strange jumpsuit"},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aDD" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aDE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aDF" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/unsimulated/beach/sand,/area/crew_quarters/pool) +"aDG" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/unsimulated/beach/sand,/area/crew_quarters/pool) +"aDH" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/indoors,/area/crew_quarters/pool) +"aDI" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"aDJ" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"aDK" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aDL" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aDM" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aDN" = (/obj/machinery/shower{dir = 8; icon_state = "shower"; pixel_x = -5; pixel_y = 0},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aDO" = (/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/soap/nanotrasen,/obj/structure/table/standard,/obj/random/soap,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aDP" = (/obj/machinery/washing_machine,/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aDQ" = (/turf/simulated/wall,/area/vacant/vacant_site/private) +"aDR" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/vacant/vacant_site/private) +"aDS" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/starboard) +"aDT" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDV" = (/obj/machinery/light_switch{dir = 8; pixel_x = 28},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aDW" = (/obj/item/inflatable/torn,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aDX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aDY" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aDZ" = (/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aEa" = (/obj/structure/curtain/open/shower/medical,/obj/machinery/shower{dir = 8; icon_state = "shower"; pixel_x = -5; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aEb" = (/obj/structure/ladder/updown,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aEc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineeringatmos{name = "Pipe-Power Floor Transfer"},/turf/simulated/floor/tiled/white,/area/maintenance/medical_lower) +"aEd" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/trash_pile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/medical_lower) +"aEe" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aEf" = (/obj/effect/floor_decal/corner/lime{dir = 6},/obj/structure/curtain/medical,/turf/simulated/floor/tiled/white,/area/medical/medbaylower) +"aEg" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aEh" = (/obj/effect/floor_decal/industrial/warning/cee,/obj/machinery/sleep_console{dir = 1; pixel_y = 10},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aEi" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aEj" = (/obj/structure/sink/puddle,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hallway/lower/central) +"aEk" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aEl" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aEm" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/unsimulated/beach/sand,/area/crew_quarters/pool) +"aEn" = (/turf/unsimulated/beach/sand,/area/crew_quarters/pool) +"aEo" = (/turf/simulated/floor/water/indoors,/area/crew_quarters/pool) +"aEp" = (/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"aEq" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"aEr" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aEs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aEt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aEu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aEv" = (/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aEw" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aEx" = (/turf/simulated/floor,/turf/simulated/floor/wood/broken,/area/vacant/vacant_site/private) +"aEy" = (/turf/simulated/floor/wood,/area/vacant/vacant_site/private) +"aEz" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/holofloor/tiled/dark,/area/medical/morgue) +"aEA" = (/turf/simulated/mineral/cave,/area/vacant/vacant_site/private) +"aEB" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/lowfloor3) +"aEC" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/double,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aED" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aEE" = (/obj/machinery/door/window/westright{name = "Virology Isolation Room Two"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aEF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aEG" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/toy/plushie/farwa,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aEH" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/box/masks,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aEI" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aEJ" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aEK" = (/obj/machinery/vending/wallmed1,/turf/simulated/wall/r_wall,/area/medical/virology) +"aEL" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/medical/toilet) +"aEM" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aEN" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/random/trash_pile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/medical_lower) +"aEO" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/medical_lower) +"aEP" = (/obj/machinery/cryopod/robot,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aEQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aER" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aES" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aET" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aEU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aEV" = (/obj/machinery/cryopod/robot,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aEW" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aEX" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/sleep/cryo) +"aEY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/cryo) +"aEZ" = (/obj/machinery/door/airlock/multi_tile/glass{autoclose = 1; dir = 2; id_tag = null; name = "Laundry"; req_access = list()},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/turf/simulated/floor/tiled/monofloor,/area/crew_quarters/sleep/cryo) +"aFa" = (/obj/structure/flora/ausbushes/reedbush,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aFb" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aFc" = (/obj/structure/bed/chair{dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aFd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aFe" = (/obj/structure/flora/ausbushes/brflowers,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aFf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aFg" = (/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aFh" = (/obj/structure/closet{icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; icon_state = "cabinet_closed"; name = "Clothing Storage"},/turf/simulated/floor/tiled,/area/crew_quarters/recreation_area_restroom) +"aFi" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/wood,/area/vacant/vacant_site/private) +"aFj" = (/obj/structure/table/bench/standard,/turf/simulated/floor/lino,/area/vacant/vacant_site/private) +"aFk" = (/obj/structure/table/wooden_reinforced,/obj/item/device/flashlight/lamp,/turf/simulated/floor/lino,/area/vacant/vacant_site/private) +"aFl" = (/obj/structure/table/rack/shelf,/obj/item/device/taperecorder,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; pictures_left = 30; pixel_x = 2; pixel_y = 3},/turf/simulated/floor/wood,/area/vacant/vacant_site/private) +"aFm" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/starboard) +"aFn" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/starboard) +"aFo" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/starboard) +"aFp" = (/obj/structure/foamedmetal,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aFq" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aFr" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aFs" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aFt" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/toy/plushie/therapy/blue,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aFu" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/toy/plushie/kitten,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aFv" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aFw" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aFx" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/effect/floor_decal/corner/beige/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aFy" = (/obj/structure/disposalpipe/up,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aFz" = (/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aFA" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 1},/obj/random/trash_pile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/medical_lower) +"aFB" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aFC" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aFD" = (/obj/structure/showcase,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aFE" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light,/obj/structure/closet/emcloset,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aFF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aFG" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/emcloset,/obj/machinery/light,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -26},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) +"aFH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aFI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aFJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aFK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aFL" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aFM" = (/obj/machinery/door/airlock/glass{name = "Pool"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"aFN" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aFO" = (/obj/structure/table/glass,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aFP" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aFQ" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/starboard) +"aFR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aFS" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/folder,/turf/simulated/floor/lino,/area/vacant/vacant_site/private) +"aFT" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/security/range) +"aFU" = (/obj/structure/safe/floor,/obj/item/device/radio_jammer,/obj/item/weapon/storage/box/camerabug,/turf/simulated/floor/wood,/area/vacant/vacant_site/private) +"aFV" = (/obj/structure/disposalpipe/down{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aFW" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aFX" = (/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 4},/obj/structure/cable{icon_state = "16-0"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/broken{dir = 8},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aFY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aFZ" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"aGa" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aGb" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/medical_lower) +"aGc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aGd" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aGe" = (/obj/machinery/door/airlock/glass{frequency = null; id_tag = "cryostorage_shuttle_berth_hatch"; name = "Cryogenic Storage"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/sleep/cryo) +"aGf" = (/obj/machinery/door/airlock/glass{name = "Cryogenic Storage"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/crew_quarters/sleep/cryo) +"aGg" = (/obj/machinery/door/airlock/glass{name = "Cryogenic Storage"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/sleep/cryo) +"aGh" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aGi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aGj" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled/monofloor{dir = 1},/area/crew_quarters/sleep/cryo) +"aGk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aGl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aGm" = (/turf/simulated/floor,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/wood/broken,/area/vacant/vacant_site/private) +"aGn" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28; req_access = list(67)},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aGo" = (/obj/machinery/camera/autoname,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aGp" = (/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aGq" = (/obj/structure/window/reinforced{dir = 2; health = 1e+006},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aGr" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aGs" = (/obj/machinery/door/airlock/glass{name = "Pool"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"aGt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{icon_state = "map-scrubbers"; dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aGu" = (/obj/structure/table/glass,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/chemical_dispenser/bar_soft,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aGv" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aGw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aGx" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aGy" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aGz" = (/turf/simulated/floor/plating,/area/maintenance/starboard) +"aGA" = (/turf/simulated/floor/plating,/turf/simulated/floor/wood/broken,/area/vacant/vacant_site/private) +"aGB" = (/obj/structure/closet/cabinet,/obj/item/device/uv_light,/obj/item/weapon/storage/box/evidence,/turf/simulated/floor/wood,/area/vacant/vacant_site/private) +"aGC" = (/obj/item/trash/snack_bowl,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aGD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aGE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aGF" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aGG" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aGH" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aGI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fish) +"aGJ" = (/turf/simulated/floor/plating,/area/maintenance/fish) +"aGK" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aGL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aGM" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aGN" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aGO" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aGP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aGQ" = (/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aGR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aGS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; req_access = list()},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aGT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aGU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/animal/passive/dog/corgi/puppy/wiggle,/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aGV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aGW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aGX" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aGY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aGZ" = (/obj/machinery/status_display,/turf/simulated/wall,/area/medical/pyschwarde) +"aHa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aHb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/crew_quarters/pool) +"aHc" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aHd" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aHe" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aHf" = (/turf/simulated/wall,/area/maintenance/maintroom3) +"aHg" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aHh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "Virology Quarantine South"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aHi" = (/obj/structure/reagent_dispensers/water_cooler,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aHj" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/box/cups,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aHk" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/box/donkpockets,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aHl" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/microwave,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aHm" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/device/radio{anchored = 1; broadcasting = 0; canhear_range = 7; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; listening = 1; name = "Virology Emergency Phone"; pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aHn" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aHo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aHp" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aHq" = (/turf/simulated/wall/r_wall,/area/maintenance/medical_lower) +"aHr" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fish) +"aHs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fish) +"aHt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fish) +"aHu" = (/turf/simulated/wall/r_wall,/area/maintenance/fish) +"aHv" = (/turf/simulated/mineral/cave,/area/maintenance/fish) +"aHw" = (/turf/simulated/wall,/area/maintenance/fish) +"aHx" = (/obj/structure/closet/crate/mimic/cointoss,/turf/simulated/floor/plating,/area/maintenance/fish) +"aHy" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fish) +"aHz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fish) +"aHA" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fish) +"aHB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aHC" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fish) +"aHD" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "brigobs"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/tiled/white,/area/medical/pyschwarde) +"aHE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aHF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aHG" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Secure Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/northright{name = "Visitation"; req_access = list(2)},/turf/simulated/floor/tiled/white,/area/medical/pyschwarde) +"aHH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/medical/pyschwarde) +"aHI" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aHJ" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aHK" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aHL" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled,/area/maintenance/maintroom3) +"aHM" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/tiled,/area/maintenance/maintroom3) +"aHN" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/beakers,/obj/machinery/bunsen_burner,/obj/item/weapon/storage/pill_bottle/phenethylamine,/turf/simulated/floor/tiled,/area/maintenance/maintroom3) +"aHO" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aHP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/wall/r_wall,/area/medical/virology) +"aHQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/wall/r_wall,/area/medical/virology) +"aHR" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/oxygen,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/extinguisher,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aHS" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aHT" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aHU" = (/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fish) +"aHV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aHW" = (/obj/structure/sign/poster,/turf/simulated/wall,/area/crew_quarters/sleep/cryo) +"aHX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aHY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aHZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_medical{name = "Medical Secondary Entry"; req_one_access = list(5)},/turf/simulated/floor/tiled/white,/area/medical/pyschwarde) +"aIc" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/white,/area/medical/pyschwarde) +"aId" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/bed/chair{dir = 1},/obj/machinery/flasher{id = "IAflash"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/pyschwarde) +"aIe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aIf" = (/obj/machinery/camera/network/medbay{c_tag = "Medbay Psychiatric Isolation"; dir = 1},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aIg" = (/obj/machinery/door/airlock/glass_external/public{name = "Emergency Departures Access"},/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"aIh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/bed/chair,/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; frequency = 1475; icon_state = "intercom"; listening = 1; name = "Station Intercom (Security)"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aIi" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aIj" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/unsimulated/beach/sand,/area/crew_quarters/pool) +"aIk" = (/obj/effect/floor_decal/spline/plain,/turf/unsimulated/beach/sand,/area/crew_quarters/pool) +"aIl" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/indoors,/area/crew_quarters/pool) +"aIm" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"aIn" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"aIo" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aIp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aIq" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aIr" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aIs" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aIt" = (/obj/item/weapon/storage/pill_bottle/happy,/turf/simulated/floor/tiled,/area/maintenance/maintroom3) +"aIu" = (/obj/random/junk,/turf/simulated/floor/tiled,/area/maintenance/maintroom3) +"aIv" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/simulated/floor/tiled,/area/maintenance/maintroom3) +"aIw" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/maintenance/maintroom3) +"aIx" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aIy" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aIz" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aIA" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/towel,/obj/item/weapon/towel,/obj/item/weapon/towel,/obj/item/weapon/towel,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aIB" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aIC" = (/obj/structure/sink{pixel_y = 18},/obj/structure/mirror{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aID" = (/obj/structure/sink{pixel_y = 18},/obj/structure/mirror{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aIE" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aIF" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aIG" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"aIH" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aII" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fish) +"aIJ" = (/obj/machinery/door/airlock/glass_external/public{name = "Emergency Departures Access"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aIK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fish) +"aIL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fish) +"aIM" = (/obj/structure/closet/wardrobe/white,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIN" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIO" = (/obj/structure/closet/wardrobe/black,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIP" = (/obj/machinery/light,/obj/structure/flora/pottedplant{icon_state = "plant-01"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIQ" = (/obj/structure/closet/wardrobe/suit,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIR" = (/obj/structure/closet/wardrobe/xenos,/obj/item/clothing/suit/tajaran/furs,/obj/machinery/light_switch{dir = 1; pixel_x = 4; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIS" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIT" = (/obj/machinery/washing_machine,/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIU" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aIV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aIW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aIX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aIY" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aIZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aJa" = (/obj/machinery/light{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aJb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aJc" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aJd" = (/obj/item/weapon/storage/box/pillbottles,/obj/item/weapon/storage/pill_bottle/zoom,/turf/simulated/floor/tiled,/area/maintenance/maintroom3) +"aJe" = (/obj/random/junk,/obj/random/junk,/turf/simulated/floor/tiled,/area/maintenance/maintroom3) +"aJf" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/starboard) +"aJg" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aJh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aJi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aJj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aJk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aJl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aJm" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aJn" = (/obj/machinery/vending/fishing,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/fish_farm) +"aJo" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aJp" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/engineeringatmos{name = "Pipe-Power Floor Transfer"},/turf/simulated/floor/tiled/white,/area/maintenance/medical_lower) +"aJq" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aJr" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aJs" = (/turf/simulated/mineral/cave,/area/maintenance/maintroom2) +"aJt" = (/turf/simulated/wall,/area/maintenance/maintroom2) +"aJu" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fish) +"aJv" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fish) +"aJw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fish) +"aJx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fish) +"aJy" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/fish) +"aJz" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/fish) +"aJA" = (/turf/simulated/wall,/area/holodeck_control) +"aJB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aJC" = (/obj/effect/decal/cleanable/generic,/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aJD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aJE" = (/obj/structure/flora/ausbushes/brflowers,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aJF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aJG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aJH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aJI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aJJ" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aJK" = (/obj/item/weapon/storage/pill_bottle/zoom,/turf/simulated/floor/tiled,/area/maintenance/maintroom3) +"aJL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/starboard) +"aJM" = (/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aJN" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aJO" = (/obj/structure/closet/crate,/obj/item/clothing/mask/gas,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aJP" = (/obj/structure/table/standard,/obj/structure/plushie/drone,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aJQ" = (/obj/structure/table/standard,/obj/item/toy/plushie/octopus,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aJR" = (/turf/simulated/floor/wood,/area/maintenance/maintroom2) +"aJS" = (/obj/structure/table/standard,/obj/item/weapon/fluff/fidgetspinner,/obj/item/weapon/storage/backpack/chameleon,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aJT" = (/obj/structure/table/standard,/obj/item/toy/stickhorse,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aJU" = (/turf/simulated/floor,/area/maintenance/fish) +"aJV" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/maintenance/fish) +"aJW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/fish) +"aJX" = (/obj/random/maintenance/engineering,/obj/structure/table/rack{dir = 8; layer = 2.9},/turf/simulated/floor,/area/maintenance/fish) +"aJY" = (/obj/structure/sign/poster,/turf/simulated/wall,/area/maintenance/fish) +"aJZ" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/maintenance/fish) +"aKa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/fish) +"aKb" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/closet/crate,/obj/random/junk,/turf/simulated/floor,/area/maintenance/fish) +"aKc" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) +"aKd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 9},/turf/simulated/floor/plating,/area/holodeck_control) +"aKe" = (/turf/simulated/floor/grass,/area/hydroponics) +"aKf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"aKg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aKh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass,/area/hallway/lower/central) +"aKi" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 10},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/lower) +"aKj" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aKk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aKl" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aKm" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aKn" = (/obj/structure/table/glass,/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aKo" = (/obj/item/weapon/stool/padded,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aKp" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/camera/network/civilian{c_tag = "CIV - Pool Aft"; dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aKq" = (/obj/item/weapon/stool/padded,/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aKr" = (/obj/structure/table/glass,/obj/machinery/light,/obj/machinery/newscaster{layer = 3.3; pixel_x = 0; pixel_y = -27},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aKs" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"aKt" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/structure/cable/green,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aKu" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aKv" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aKw" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aKx" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/starboard) +"aKy" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower/medical,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/door/window/northright,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aKz" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower/medical,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/window/northright,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aKA" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower/medical,/obj/machinery/door/window/northright,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aKB" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aKC" = (/obj/machinery/atmospherics/pipe/tank/air,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aKD" = (/obj/structure/table/standard,/obj/structure/plushie/carp,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aKE" = (/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aKF" = (/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fish) +"aKG" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/turf/simulated/floor,/area/maintenance/fish) +"aKH" = (/obj/item/stack/material/glass/reinforced,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/fish) +"aKI" = (/obj/item/weapon/material/shard{icon_state = "medium"},/obj/item/stack/rods,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/fish) +"aKJ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/fish) +"aKK" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/holodeck_control) +"aKL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 9},/turf/simulated/floor/plating,/area/holodeck_control) +"aKM" = (/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aKN" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"aKO" = (/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"aKP" = (/obj/structure/stairs/south,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aKQ" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aKR" = (/obj/structure/stairs/south,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aKS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aKT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness Area"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/pool) +"aKU" = (/obj/structure/sign/poster,/turf/simulated/wall,/area/crew_quarters/pool) +"aKV" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/recreation_area_restroom) +"aKW" = (/obj/structure/ore_box,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aKX" = (/obj/structure/table/standard,/obj/item/toy/sword,/obj/item/toy/bouquet/fake,/turf/simulated/floor/wood,/area/maintenance/maintroom2) +"aKY" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/fish) +"aKZ" = (/obj/item/toy/figure/clown,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fish) +"aLa" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fish) +"aLb" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/fish) +"aLc" = (/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"aLd" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aLe" = (/turf/simulated/wall,/area/hydroponics) +"aLf" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 10},/turf/simulated/floor/plating,/area/hydroponics) +"aLg" = (/obj/structure/disposalpipe/segment,/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aLh" = (/turf/simulated/wall,/area/crew_quarters/fitness) +"aLi" = (/turf/simulated/floor/tiled,/area/crew_quarters/fitness) +"aLj" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLk" = (/obj/machinery/camera/network/civilian,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLl" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLm" = (/obj/structure/closet/athletic_mixed,/obj/item/clothing/shoes/boots/jackboots{armor = list("melee" = 69, "bullet" = 69, "laser" = 69, "energy" = 69, "bomb" = 69, "bio" = 69, "rad" = 69); desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom"; name = "Dhaeleena's Jackboots"},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLn" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLo" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLp" = (/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLr" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLs" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/crew_quarters/fitness) +"aLt" = (/obj/item/hoist_kit,/turf/simulated/floor/plating,/area/maintenance/lowfloor3) +"aLu" = (/obj/structure/closet/crate,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/medical_lower) +"aLv" = (/obj/structure/table/standard,/obj/item/toy/spinningtoy,/turf/simulated/floor/wood,/area/maintenance/maintroom2) +"aLw" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/maintenance/maintroom2) +"aLx" = (/obj/structure/table/standard,/obj/item/toy/nanotrasenballoon,/obj/item/toy/blink,/turf/simulated/floor/wood,/area/maintenance/maintroom2) +"aLy" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/fish) +"aLz" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/fish) +"aLA" = (/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/fish) +"aLB" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/civilian{c_tag = "CIV - Holodeck Control"; dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control) +"aLC" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/holodeck_control) +"aLD" = (/obj/machinery/door/airlock/glass{name = "Holodeck Control"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/holodeck_control) +"aLE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 9},/turf/simulated/floor/plating,/area/holodeck_control) +"aLF" = (/obj/structure/closet/secure_closet/hydroponics,/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aLG" = (/mob/living/simple_mob/animal/passive/chicken/clucky,/turf/simulated/floor/grass,/area/hydroponics) +"aLH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aLI" = (/obj/structure/sink/puddle,/turf/simulated/floor/grass,/area/hydroponics) +"aLJ" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/item/beehive_assembly,/obj/item/bee_smoker,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/bee_pack,/obj/item/weapon/tool/crowbar,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aLK" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass,/area/hydroponics) +"aLL" = (/obj/machinery/door/airlock{name = "Cyborg Unit"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"aLM" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 10},/turf/simulated/floor/plating,/area/crew_quarters/fitness) +"aLN" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLP" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLQ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aLR" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aLS" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aLT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aLU" = (/obj/structure/table/standard,/obj/item/toy/owl,/turf/simulated/floor/wood,/area/maintenance/maintroom2) +"aLV" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/turf/simulated/floor,/area/maintenance/fish) +"aLW" = (/obj/item/clothing/shoes/clown_shoes,/obj/item/clothing/mask/gas/clown_hat,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fish) +"aLX" = (/obj/random/obstruction,/turf/simulated/floor,/area/maintenance/fish) +"aLY" = (/obj/structure/closet/crate,/obj/random/drinkbottle,/obj/random/drinkbottle,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/fish) +"aLZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled,/area/holodeck_control) +"aMa" = (/obj/structure/table/standard,/obj/item/weapon/paper{desc = ""; info = "Brusies sustained in the holodeck can be healed simply by sleeping."; name = "Holodeck Disclaimer"},/turf/simulated/floor/tiled,/area/holodeck_control) +"aMb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 9},/turf/simulated/floor/plating,/area/holodeck_control) +"aMc" = (/obj/machinery/door/airlock/glass{name = "Holodeck"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/holodeck_control) +"aMd" = (/turf/simulated/floor/beach/sand/desert,/area/crew_quarters/kitchen/fish_farm) +"aMe" = (/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aMf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aMg" = (/obj/structure/closet/secure_closet/hydroponics,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aMh" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/green/full{dir = 8},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aMi" = (/turf/simulated/floor/tiled/white,/area/hydroponics) +"aMj" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/hydroponics) +"aMk" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/reagentgrinder,/obj/item/weapon/reagent_containers/spray/plantbgone,/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aMl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aMm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMo" = (/obj/machinery/fitness/punching_bag/clown,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMr" = (/obj/structure/table/woodentable,/obj/item/clothing/glasses/threedglasses,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMs" = (/obj/machinery/door/airlock{name = "Sauna Unit 1"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMt" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "sauna1"},/turf/simulated/floor/plating,/area/crew_quarters/fitness) +"aMu" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "sauna2"},/turf/simulated/floor/plating,/area/crew_quarters/fitness) +"aMv" = (/obj/machinery/door/airlock{name = "Sauna Unit 2"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMw" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/starboard) +"aMx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aMy" = (/obj/structure/table/standard,/obj/item/toy/crossbow,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aMz" = (/obj/structure/table/standard,/obj/item/toy/plushie/corgi,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aMA" = (/obj/item/clothing/under/rank/clown,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fish) +"aMB" = (/obj/item/clothing/gloves/boxing/blue,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/fish) +"aMC" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fish) +"aMD" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/fish) +"aME" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fish) +"aMF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aMG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aMH" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/holodeck_control) +"aMI" = (/obj/machinery/computer/HolodeckControl,/turf/simulated/floor/tiled,/area/holodeck_control) +"aMJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 9},/turf/simulated/floor/plating,/area/holodeck_control) +"aMK" = (/obj/effect/floor_decal/corner/green{dir = 5},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aML" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Kitchen"; req_access = list(28)},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/lower) +"aMM" = (/obj/effect/floor_decal/corner/green{dir = 5},/obj/effect/landmark/start{name = "Gardener"},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aMN" = (/obj/effect/floor_decal/corner/green{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aMO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/green{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aMP" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aMQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aMR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aMS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness Area"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/fitness) +"aMT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/fitness) +"aMU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMV" = (/obj/machinery/fitness/punching_bag/clown,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMX" = (/obj/structure/table/woodentable,/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMY" = (/obj/structure/table/bench/padded,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aMZ" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNa" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/starboard) +"aNb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/starboard) +"aNc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/starboard) +"aNd" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/starboard) +"aNe" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/starboard) +"aNf" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/starboard) +"aNg" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/maintenance/security_lower) +"aNh" = (/turf/simulated/wall,/area/maintenance/security_lower) +"aNi" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aNj" = (/obj/structure/table/standard,/obj/item/toy/plushie/face_hugger,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aNk" = (/obj/structure/table/standard,/obj/item/toy/cultsword,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aNl" = (/obj/structure/table/standard,/obj/item/toy/eight_ball,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aNm" = (/obj/structure/table/standard,/obj/structure/plushie/ian,/obj/item/toy/katana,/turf/simulated/floor/carpet,/area/maintenance/maintroom2) +"aNn" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating,/area/maintenance/fish) +"aNo" = (/obj/random/obstruction,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/fish) +"aNp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fish) +"aNq" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/maintenance/fish) +"aNr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fish) +"aNs" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/holodeck_control) +"aNt" = (/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/holodeck_control) +"aNu" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"aNv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aNw" = (/obj/structure/closet/chefcloset,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"aNx" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers,/turf/simulated/floor/tiled/white,/area/hydroponics) +"aNy" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -26},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"aNz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aNA" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aND" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNE" = (/obj/structure/table/bench/padded,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNF" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNG" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNH" = (/obj/structure/table/bench/padded,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNI" = (/obj/structure/dogbed,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/item/toy/plushie/lizard,/turf/simulated/floor/tiled/techfloor,/area/maintenance/starboard) +"aNJ" = (/obj/structure/frame{anchored = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/starboard) +"aNK" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) +"aNL" = (/obj/item/toy/plushie/kitten{desc = "An odd appearing, cryptic plush of a cat."; name = "Pablo"},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aNM" = (/obj/item/clothing/under/batter,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aNN" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aNO" = (/obj/item/taperoll/police,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aNP" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aNQ" = (/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aNR" = (/turf/simulated/floor/tiled,/area/maintenance/lowfloor1) +"aNS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"aNT" = (/obj/structure/closet/secure_closet/hydroponics,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aNU" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/crew_quarters/fitness) +"aNV" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNW" = (/obj/machinery/scale,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNX" = (/obj/machinery/scale,/obj/machinery/light_switch{dir = 1; pixel_x = 4; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNY" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aNZ" = (/obj/machinery/newscaster{layer = 3.3; pixel_x = 0; pixel_y = -27},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOb" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOc" = (/obj/structure/table/bench/padded,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOe" = (/obj/machinery/button/windowtint{id = "sauna1"; pixel_x = 24},/obj/machinery/space_heater,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOf" = (/obj/machinery/button/windowtint{id = "sauna2"; pixel_x = -24},/obj/machinery/space_heater,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOh" = (/obj/structure/table/bench/padded,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOi" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/starboard) +"aOj" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/starboard) +"aOk" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/starboard) +"aOl" = (/obj/structure/disposalpipe/up{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/starboard) +"aOm" = (/obj/item/clothing/shoes/boots/jackboots{desc = "Very old and worn baseball cleats."; name = "baseball cleats"},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aOn" = (/obj/item/clothing/head/soft/black{desc = "Its a dusty old cap, It hides most your eyes."},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aOo" = (/obj/random/obstruction,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/security_lower) +"aOp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aOq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aOr" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aOs" = (/turf/simulated/mineral/cave,/area/maintenance/security_lower) +"aOt" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/trash_pile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/security_lower) +"aOu" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aOv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aOw" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/fish) +"aOx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aOy" = (/obj/structure/catwalk,/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/kitchen/fish_farm) +"aOz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"aOA" = (/turf/simulated/floor/water/indoors,/area/crew_quarters/kitchen/fish_farm) +"aOB" = (/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"aOC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aOD" = (/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aOE" = (/obj/item/clothing/gloves/boxing/yellow,/turf/simulated/floor/plating,/area/maintenance/fish) +"aOF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aOG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness Area"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/fitness) +"aOH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOI" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/cups,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aOJ" = (/obj/structure/frame/computer,/turf/simulated/floor,/area/maintenance/starboard) +"aOK" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/corner_techfloor_grid{dir = 9},/obj/effect/floor_decal/corner_techfloor_grid{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/starboard) +"aOL" = (/obj/structure/frame{anchored = 1},/turf/simulated/floor,/area/maintenance/starboard) +"aOM" = (/turf/simulated/floor/tiled,/area/maintenance/starboard) +"aON" = (/turf/simulated/floor/tiled/steel_grid,/area/maintenance/starboard) +"aOO" = (/obj/item/weapon/material/twohanded/baseballbat{desc = "This bat looks very off."; health = 500},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aOP" = (/obj/structure/table/standard,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aOQ" = (/obj/structure/foamedmetal,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aOR" = (/turf/simulated/wall/r_wall,/area/security/prison) +"aOS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aOT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aOU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Hydroponics"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aOV" = (/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/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aOW" = (/obj/effect/floor_decal/corner/green{dir = 6},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aOX" = (/obj/machinery/camera/autoname{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aOY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aOZ" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/item/seeds/wheatseed,/obj/item/seeds/wheatseed,/turf/simulated/floor/grass,/area/hydroponics) +"aPa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aPb" = (/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPc" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPd" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPe" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPg" = (/obj/machinery/door/airlock{name = "Sauna Unit 1"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aPh" = (/obj/machinery/door/airlock{name = "Sauna Unit 2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"aPi" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/table/rack,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/starboard) +"aPj" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/newspaper,/turf/simulated/floor,/area/maintenance/starboard) +"aPk" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/cable/green{icon_state = "16-0"},/turf/simulated/floor/plating,/area/security/prison) +"aPl" = (/obj/structure/closet,/obj/item/clothing/glasses/welding,/obj/item/weapon/weldingtool,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aPm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aPn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aPo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aPp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aPq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/security_lower) +"aPr" = (/turf/simulated/floor,/area/maintenance/security_lower) +"aPs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/hydroponics) +"aPt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"aPu" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/corner/green/full,/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aPv" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/knife/machete/hatchet,/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aPw" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -26},/obj/machinery/vending/hydronutrients,/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aPx" = (/obj/machinery/door/airlock/freezer{name = "Kitchen cold room"; req_access = list(28)},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"aPy" = (/obj/machinery/door/airlock/glass{name = "Plant-Chemical Lab"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aPz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hydroponics) +"aPA" = (/obj/machinery/honey_extractor,/obj/machinery/camera/network/civilian{c_tag = "CIV - Hydroponics"; dir = 1},/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aPB" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/table/standard{name = "plastic table frame"},/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/plantspray/pests,/obj/item/weapon/material/minihoe,/turf/simulated/floor/grass,/area/hydroponics) +"aPC" = (/obj/structure/catwalk,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/kitchen/fish_farm) +"aPD" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/fish) +"aPE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/green{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aPF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aPG" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aPH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Fitness Room"; sortType = "Fitness Room"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/hallway/primary/starboard) +"aPL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aPM" = (/obj/machinery/light{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPO" = (/obj/machinery/door/firedoor/glass/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aPQ" = (/turf/simulated/wall,/area/hallway/primary/starboard) +"aPR" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/starboard) +"aPS" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/starboard) +"aPT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/starboard) +"aPU" = (/turf/simulated/wall/r_wall,/area/maintenance/security_lower) +"aPV" = (/obj/machinery/door/airlock/maintenance/sec{name = "Security Maintenance"; req_access = list(63); req_one_access = list(1)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel,/area/maintenance/security_lower) +"aPW" = (/turf/simulated/mineral/cave,/area/security/prison) +"aPX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/security/prison) +"aPY" = (/obj/structure/closet/crate,/obj/item/clothing/glasses/meson/prescription,/obj/item/weapon/storage/box/lights/mixed,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aPZ" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aQa" = (/obj/structure/closet/wardrobe/grey,/obj/item/weapon/storage/backpack,/obj/item/weapon/storage/backpack,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aQb" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/oxygen,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/mask/breath,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aQc" = (/obj/item/device/instrument/harmonica,/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aQd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aQe" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aQf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aQg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"aQh" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/cleanable/cobweb2,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/security_lower) +"aQi" = (/turf/simulated/wall,/area/vacant/vacant_site) +"aQj" = (/turf/simulated/floor,/area/vacant/vacant_site) +"aQk" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aQl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aQm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aQn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aQo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aQp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aQq" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/maintenance/fish) +"aQr" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aQs" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aQt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"aQu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aQv" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Hydroponics"; sortType = "Hydroponics"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aQw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aQx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aQy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/hallway/primary/starboard) +"aQz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aQA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aQB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aQC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aQD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aQE" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aQF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aQG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aQH" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aQI" = (/obj/structure/closet,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/starboard) +"aQJ" = (/turf/simulated/mineral/cave,/area/security/range) +"aQK" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/target_stake,/turf/simulated/floor/tiled/dark,/area/security/range) +"aQL" = (/turf/simulated/floor/tiled/dark,/area/security/range) +"aQM" = (/turf/simulated/floor/plating,/area/security/range) +"aQN" = (/turf/simulated/wall/r_wall,/area/security/range) +"aQO" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/security/prison) +"aQP" = (/obj/machinery/door/airlock/maintenance/sec{name = "Security Maintenance"; req_one_access = list(1,18)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel,/area/security/prison) +"aQQ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/security/prison) +"aQR" = (/obj/machinery/recharge_station,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/prison) +"aQS" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor,/area/security/prison) +"aQT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/obj/machinery/meter,/turf/simulated/floor,/area/security/prison) +"aQU" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/floor,/area/security/prison) +"aQV" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance/sec{name = "Security Maintenance"; req_access = list(1,12)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/prison) +"aQW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/security_lower) +"aQX" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/security_lower) +"aQY" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"aQZ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) +"aRa" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) +"aRb" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) +"aRc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"aRd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aRe" = (/turf/simulated/wall,/area/vacant/vacant_office) +"aRf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/vacant/vacant_office) +"aRg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aRh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aRi" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/starboard) +"aRj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/starboard) +"aRk" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/starboard) +"aRl" = (/turf/simulated/wall,/area/security/prison) +"aRm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison) +"aRn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/prison) +"aRo" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{icon_state = "n2o_map"; dir = 1},/turf/simulated/floor,/area/security/prison) +"aRp" = (/obj/machinery/atmospherics/valve/digital,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/security/prison) +"aRq" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/security/prison) +"aRr" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aRs" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/prison) +"aRt" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/prison) +"aRu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/security/sorting) +"aRv" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/security/sorting) +"aRw" = (/obj/machinery/conveyor{dir = 8; id = "prison"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/tiled,/area/security/sorting) +"aRx" = (/obj/machinery/conveyor{dir = 8; id = "prison"},/turf/simulated/floor/tiled,/area/security/sorting) +"aRy" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/turf/simulated/floor/tiled,/area/security/sorting) +"aRz" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/sorting) +"aRA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/security_lower) +"aRB" = (/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor,/area/vacant/vacant_site) +"aRC" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aRD" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) +"aRE" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) +"aRF" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) +"aRG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aRH" = (/obj/structure/table/glass,/obj/machinery/camera/network/northern_star{c_tag = "Hall - Central Primary Fore Port 1"; dir = 2},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/lower/central) +"aRI" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/hallway/lower/central) +"aRJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aRK" = (/obj/structure/table/glass,/obj/machinery/camera/network/northern_star{c_tag = "Hall - Port Primary 5"; dir = 8},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aRL" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aRM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aRN" = (/turf/simulated/wall,/area/vacant/vacant_shop) +"aRO" = (/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aRP" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aRQ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aRR" = (/obj/structure/table/gamblingtable,/obj/structure/safe/floor,/obj/item/weapon/storage/bag/cash,/obj/item/weapon/gun/projectile/pistol,/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aRS" = (/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aRT" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aRU" = (/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aRV" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aRW" = (/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aRX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aRY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aRZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aSa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aSb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aSc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aSd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aSe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aSf" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aSg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/closet/emcloset,/obj/machinery/light{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aSh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/starboard) +"aSi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aSj" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/range) +"aSk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/range) +"aSl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/range) +"aSm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/range) +"aSn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/range) +"aSo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aSp" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/security/prison) +"aSq" = (/obj/machinery/vending/food/prison,/turf/simulated/floor/tiled,/area/security/prison) +"aSr" = (/obj/machinery/vending/sovietsoda,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/prison) +"aSs" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/door/airlock/maintenance/sec{name = "Riot Control"; req_access = list(1)},/turf/simulated/floor,/area/security/prison) +"aSt" = (/turf/simulated/floor/tiled,/area/security/prison) +"aSu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/security/prison) +"aSv" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/security/prison) +"aSw" = (/turf/simulated/wall,/area/security/sorting) +"aSx" = (/turf/simulated/floor/tiled,/area/security/sorting) +"aSy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/sorting) +"aSz" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/sorting) +"aSA" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/kitchen/fish_farm) +"aSB" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/plating,/area/hallway/lower/central) +"aSC" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/hallway/lower/central) +"aSD" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) +"aSE" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing,/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) +"aSF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aSG" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aSH" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aSI" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aSJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aSK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aSL" = (/obj/structure/table/rack{dir = 4},/obj/item/weapon/storage/photo_album,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aSM" = (/obj/machinery/door/airlock/maintenance{req_one_access = list(11,24)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/vacant/vacant_shop) +"aSN" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aSO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aSP" = (/obj/structure/table/wooden_reinforced,/obj/item/device/flashlight/lamp/green,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aSQ" = (/obj/structure/table/wooden_reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aSR" = (/obj/structure/table/wooden_reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aSS" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aST" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/curtain/black,/obj/machinery/door/airlock{name = "Vacant Office"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/vacant/vacant_office) +"aSU" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aSV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aSW" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aSX" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aSY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aSZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aTa" = (/obj/structure/railing{dir = 2; flags = null},/obj/structure/railing{dir = 8},/turf/simulated/floor/water/hotspring,/area/hallway/primary/starboard) +"aTb" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/floor/water/hotspring,/area/hallway/primary/starboard) +"aTc" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aTd" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aTe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aTf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aTg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aTh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aTi" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aTj" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/security/range) +"aTk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/range) +"aTl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/range) +"aTm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/prison) +"aTn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/prison) +"aTo" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/prison) +"aTp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/prison) +"aTq" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled,/area/security/prison) +"aTr" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/security/prison) +"aTs" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/prison) +"aTt" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/turf/simulated/floor/tiled,/area/security/prison) +"aTu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/prison) +"aTv" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aTw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/prison) +"aTx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/floor/tiled,/area/security/prison) +"aTy" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/sorting) +"aTz" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/security/sorting) +"aTA" = (/obj/machinery/conveyor_switch/oneway{id = "prison"; req_access = list(1); req_one_access = list(1)},/turf/simulated/floor/tiled,/area/security/sorting) +"aTB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/sorting) +"aTC" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/prison{c_tag = "Prison Disposal Processing"; dir = 8},/turf/simulated/floor/tiled,/area/security/sorting) +"aTD" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/railing{dir = 2; flags = null},/obj/structure/railing{dir = 8},/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) +"aTE" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/hallway/lower/central) +"aTF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aTG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aTH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aTI" = (/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aTJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aTK" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aTL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aTM" = (/obj/structure/table/rack{dir = 4},/obj/item/frame/light,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aTN" = (/obj/item/weapon/tool/crowbar,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aTO" = (/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aTP" = (/obj/item/frame/light,/obj/structure/table/reinforced,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aTQ" = (/obj/structure/table/reinforced,/obj/machinery/cash_register/civilian{dir = 1},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aTR" = (/obj/structure/table/reinforced,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aTS" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aTT" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aTU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/bcarpet,/area/vacant/vacant_office) +"aTV" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aTW" = (/obj/machinery/disposal,/turf/simulated/floor/tiled/dark,/area/hallway/primary/starboard) +"aTX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aTY" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor/water/hotspring,/area/hallway/primary/starboard) +"aTZ" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/hotspring,/area/hallway/primary/starboard) +"aUa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aUb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"aUc" = (/obj/machinery/newscaster{layer = 3.3; pixel_x = 0; pixel_y = -27},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aUd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aUe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aUf" = (/obj/machinery/door/window/northright,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/security{c_tag = "Security Firing Range"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/range) +"aUg" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice,/obj/item/ammo_magazine/clip/c762/practice,/obj/item/ammo_magazine/clip/c762/practice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/ammo_magazine/clip/c762/practice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/range) +"aUh" = (/obj/machinery/door/window/northright,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/range) +"aUi" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/energy/laser/practice,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/range) +"aUj" = (/obj/machinery/door/window/northright,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/range) +"aUk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/prison) +"aUl" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/prison) +"aUm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/security/prison) +"aUn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/security{c_tag = "Security Lower Hall Port"},/turf/simulated/floor/tiled,/area/security/prison) +"aUo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aUp" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aUq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/prison) +"aUr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aUs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aUt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aUu" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aUv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/prison) +"aUw" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aUx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aUy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/camera/network/security{c_tag = "Security Lower Hall Starboard"; dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aUz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aUA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall,/area/security/sorting) +"aUB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/sorting) +"aUC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/sorting) +"aUD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/security/sorting) +"aUE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/security/sorting) +"aUF" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/security/sorting) +"aUG" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) +"aUH" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aUI" = (/obj/machinery/light,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) +"aUJ" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aUK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aUL" = (/obj/structure/table/rack{dir = 4},/obj/item/weapon/storage/toolbox/mechanical,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aUM" = (/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aUN" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aUO" = (/obj/structure/closet/cabinet,/obj/item/clothing/under/suit_jacket/really_black,/obj/item/clothing/head/fedora,/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aUP" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum{desc = "TASTE DEMOCRACY"; name = "Managed Democra-cider"},/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aUQ" = (/obj/structure/table/wooden_reinforced,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/item/weapon/reagent_containers/food/drinks/glass2/rocks,/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aUR" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aUS" = (/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/vacant/vacant_office) +"aUT" = (/turf/simulated/wall,/area/hallway/lower/dorms) +"aUU" = (/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/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/glass/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aUV" = (/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/obj/machinery/door/firedoor/glass/hidden,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aUW" = (/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_6) +"aUX" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/effect/mist,/turf/simulated/floor/water/hotspring,/area/crew_quarters/sleep/Dorm_6) +"aUY" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/hotspring,/area/crew_quarters/sleep/Dorm_6) +"aUZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/crew_quarters/sleep/Dorm_6) +"aVa" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/crew_quarters/sleep/Dorm_6) +"aVb" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/crew_quarters/sleep/Dorm_10) +"aVc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/crew_quarters/sleep/Dorm_10) +"aVd" = (/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_10) +"aVe" = (/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aVf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/hidden,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aVg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/range) +"aVh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/range) +"aVi" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/range) +"aVj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/range) +"aVk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_security{name = "Firing Range"; req_access = list(1)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/range) +"aVl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/prison) +"aVm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aVn" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aVo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aVp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) +"aVq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/prison) +"aVr" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/security/prison) +"aVs" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aVt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/prison) +"aVu" = (/obj/machinery/computer/area_atmos/tag{dir = 8; scrub_id = "prison"},/turf/simulated/floor/tiled,/area/security/prison) +"aVv" = (/turf/simulated/wall/r_wall,/area/security/perma/control) +"aVw" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "brigobs"; name = "Communal Brig Blast Door"; opacity = 0},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/perma) +"aVx" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "brigobs"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/perma) +"aVy" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "brigobs"; name = "Communal Brig Blast Door"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/perma) +"aVz" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "brigobs"; name = "Communal Brig Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/plating,/area/security/perma) +"aVA" = (/turf/simulated/wall/r_wall,/area/security/perma) +"aVB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/sorting) +"aVC" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/hallway/lower/central) +"aVD" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/plating,/area/hallway/lower/central) +"aVE" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/hallway/lower/central) +"aVF" = (/turf/simulated/wall,/area/library) +"aVG" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aVH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_dirty,/area/hallway/lower/aft) +"aVI" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aVJ" = (/obj/structure/flora/pottedplant{icon_state = "plant-01"},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aVK" = (/turf/simulated/mineral/cave,/area/hallway/lower/aft) +"aVL" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aVM" = (/obj/item/stack/material/steel{amount = 50},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aVN" = (/obj/machinery/door/airlock/maintenance{req_one_access = list(11,24)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/vacant/vacant_office) +"aVO" = (/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_7) +"aVP" = (/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aVQ" = (/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aVR" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_6) +"aVS" = (/obj/structure/toilet,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_6) +"aVT" = (/obj/structure/curtain/open/shower,/obj/machinery/door/window/southright{name = "Shower"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_6) +"aVU" = (/obj/structure/curtain/open/shower,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southright{name = "Shower"},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_10) +"aVV" = (/obj/structure/toilet,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_10) +"aVW" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_10) +"aVX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aVY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aVZ" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/turf/simulated/floor/tiled/dark,/area/security/range) +"aWa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/range) +"aWb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/range) +"aWc" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/security/range) +"aWd" = (/obj/structure/table/reinforced,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/obj/item/clothing/ears/earmuffs{pixel_x = 3; pixel_y = 3},/obj/item/clothing/ears/earmuffs,/turf/simulated/floor/tiled,/area/security/range) +"aWe" = (/turf/simulated/wall/r_wall,/area/security/brig/visitation) +"aWf" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "visit_blast"; name = "Privacy Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/security/brig/visitation) +"aWg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{id_tag = "visitdoor"; name = "Visitation Area"; req_access = list(63)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aWh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{id_tag = "prisonexit"; name = "Prison Exit"; req_access = list(2)},/turf/simulated/floor/tiled,/area/security/perma/control) +"aWi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{id_tag = "prisonexit"; name = "Prison Exit"; req_access = list(2)},/turf/simulated/floor/tiled,/area/security/perma/control) +"aWj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_security{name = "Prison Control"; req_access = list(1)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/perma/control) +"aWk" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/computer/arcade,/turf/simulated/floor/tiled,/area/security/perma) +"aWl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/perma) +"aWm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/perma) +"aWn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/washing_machine,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/perma) +"aWo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/perma) +"aWp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/security/perma) +"aWq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/computer/arcade/orion_trail,/obj/machinery/camera/network/prison{c_tag = "Prison Starboard"},/turf/simulated/floor/tiled,/area/security/perma) +"aWr" = (/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/perma) +"aWs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/security/perma) +"aWt" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/security/perma) +"aWu" = (/turf/simulated/floor/tiled,/area/security/perma) +"aWv" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/security_lower) +"aWw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aWx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{icon_state = "map-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aWy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aWz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aWA" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/simulated/floor/carpet,/area/library) +"aWB" = (/obj/structure/cult/tome,/turf/simulated/floor/carpet,/area/library) +"aWC" = (/obj/structure/closet,/turf/simulated/floor/carpet,/area/library) +"aWD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Emergency Departures Access"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_monitored/storage/emergency/eva) +"aWE" = (/obj/machinery/camera/network/northern_star{c_tag = "Hall - Central Primary Aft Starboard 3"; dir = 8},/obj/structure/table/glass,/obj/item/weapon/dice,/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aWF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"aWG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aWH" = (/obj/machinery/door/airlock/glass{name = "Construction Area"; req_access = list(32)},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aWI" = (/obj/random/tech_supply,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aWJ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aWK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aWL" = (/obj/item/frame/light,/obj/machinery/light_switch{dir = 8; pixel_x = 28},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aWM" = (/turf/simulated/floor/plating,/area/maintenance/dormitory) +"aWN" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/crew_quarters/sleep/Dorm_7/holo) +"aWO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/computer/HolodeckControl/holodorm/seven,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_7) +"aWP" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_7) +"aWQ" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_6) +"aWR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_6) +"aWS" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_6) +"aWT" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aWU" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aWV" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aWW" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aWX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_10) +"aWY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_10) +"aWZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/mirror{pixel_x = 28},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_10) +"aXa" = (/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aXb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/red{dir = 9},/obj/machinery/button/remote/blast_door{id = "visit_blast"; name = "Privacy Shutters"; pixel_x = -25; pixel_y = 0},/obj/machinery/button/flasher{id = "IAflash"; pixel_x = -25; pixel_y = 12},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aXc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aXd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/perma/control) +"aXe" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/security/perma/control) +"aXf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/perma/control) +"aXg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/flasher{id = "permentryflash"; name = "entry flash"; pixel_x = 0; pixel_y = -34; req_access = list(2)},/obj/machinery/button/remote/airlock{id = "prisonexit"; name = "Exit Doors"; pixel_x = 6; pixel_y = -26; req_access = list(2)},/obj/machinery/button/remote/airlock{id = "prisonentry"; name = "Entry Doors"; pixel_x = -6; pixel_y = -26; req_access = list(2)},/turf/simulated/floor/tiled,/area/security/perma/control) +"aXh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/computer/security/telescreen{desc = "Big Brother is watching."; layer = 3.4; name = "Brig Monitor"; network = list("Prison"); pixel_x = 32; pixel_y = -3},/obj/item/weapon/stool/padded,/obj/machinery/button/remote/blast_door{id = "brigobs"; name = "Observation Shutters"; pixel_x = 6; pixel_y = -26; req_access = list(2)},/obj/machinery/button/flasher{id = "permflash"; name = "Brig flashes"; pixel_x = -6; pixel_y = -36; req_access = list(2)},/obj/machinery/button/remote/blast_door{id = "Prison Gate"; name = "Prison Lockdown"; pixel_x = 6; pixel_y = -36; req_access = list(2)},/obj/machinery/light_switch{pixel_x = -8; pixel_y = 26},/obj/machinery/light{dir = 1},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/tiled,/area/security/perma/control) +"aXi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/perma/control) +"aXj" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/security/perma) +"aXk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/security/perma) +"aXl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/perma) +"aXm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/perma) +"aXn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/perma) +"aXo" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1443; icon_state = "on"; id = "air_in"; use_power = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/perma) +"aXp" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/perma) +"aXq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/perma) +"aXr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/security/perma) +"aXs" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge{scrub_id = "prison"},/turf/simulated/floor/tiled,/area/security/perma) +"aXt" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aXu" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"aXv" = (/obj/structure/bed/chair/comfy/brown,/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor/carpet,/area/library) +"aXw" = (/turf/simulated/floor/carpet,/area/library) +"aXx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/hallway/lower/aft) +"aXy" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_external/public{name = "Emergency Departures Access"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_monitored/storage/emergency/eva) +"aXz" = (/obj/item/frame/light,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aXA" = (/obj/item/stack/cable_coil/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aXB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_7) +"aXC" = (/obj/machinery/button/remote/airlock{id = "dorm7"; name = "Room 7 Lock"; pixel_x = 26; pixel_y = -4; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_7) +"aXD" = (/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aXE" = (/obj/effect/floor_decal/corner/white{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aXF" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_6) +"aXG" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aXH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aXI" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aXJ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aXK" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_10) +"aXL" = (/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aXM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aXN" = (/turf/simulated/wall,/area/maintenance/maintroom6) +"aXO" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/effect/floor_decal/corner/red/full,/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aXP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/bed/chair,/obj/effect/floor_decal/corner/red{dir = 10},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; frequency = 1475; icon_state = "intercom"; listening = 1; name = "Station Intercom (Security)"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aXQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/flasher{id = "permentryflash"; name = "Floor mounted flash"; pixel_x = 0},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/security/perma/control) +"aXR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/prison{c_tag = "SEC - Common Brig Enterance"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/security/perma/control) +"aXS" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/green,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/perma/control) +"aXT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/table/steel,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/radio/headset,/obj/item/device/radio/headset,/obj/item/device/radio/headset,/obj/item/device/radio/headset,/turf/simulated/floor/tiled,/area/security/perma/control) +"aXU" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/table/steel,/obj/machinery/camera/network/prison{c_tag = "SEC - Brig Observation"; dir = 1},/turf/simulated/floor/tiled,/area/security/perma/control) +"aXV" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/green,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/perma/control) +"aXW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/perma) +"aXX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/perma) +"aXY" = (/obj/machinery/flasher{id = "permflash"; name = "Floor mounted flash"; pixel_x = 0},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/security/perma) +"aXZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/security/perma) +"aYa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/perma) +"aYb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/security_lower) +"aYc" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monofloor{dir = 8},/area/library) +"aYd" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/monofloor{dir = 4},/area/library) +"aYe" = (/obj/structure/sign/coffee_shop_library,/turf/simulated/wall,/area/library) +"aYf" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/obj/item/clothing/under/suit_jacket/red,/obj/machinery/light,/obj/item/weapon/barcodescanner,/turf/simulated/floor/carpet,/area/library) +"aYg" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder{pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -28},/obj/item/device/retail_scanner/civilian{icon_state = "retail_idle"; dir = 1},/obj/item/device/camera,/obj/item/device/tape,/turf/simulated/floor/carpet,/area/library) +"aYh" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/table/woodentable,/obj/item/device/tvcamera,/turf/simulated/floor/carpet,/area/library) +"aYi" = (/obj/machinery/computer/arcade{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/lower/central) +"aYj" = (/obj/item/inflatable/torn,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aYk" = (/obj/effect/decal/cleanable/blood/oil{name = "oil"},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"aYl" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/lowfloor1) +"aYm" = (/obj/item/frame,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aYn" = (/turf/simulated/floor/tiled/steel_dirty,/area/vacant/vacant_shop) +"aYo" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/vacant/vacant_shop) +"aYp" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aYq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_7) +"aYr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_7) +"aYs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{id_tag = "dorm7"; name = "Room 7 (Holo)"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/Dorm_7) +"aYt" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aYu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aYv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{id_tag = "dorm6"; name = "Room 6"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aYw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/machinery/button/remote/airlock{id = "dorm6"; name = "Room 6 Lock"; pixel_x = -26; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aYx" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aYy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aYz" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aYA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aYB" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aYC" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aYD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aYE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aYF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aYG" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aYH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aYI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{id_tag = "dorm10"; name = "Room 10"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aYJ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aYK" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"aYL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"aYM" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet,/area/maintenance/maintroom6) +"aYN" = (/turf/simulated/mineral/cave,/area/maintenance/maintroom6) +"aYO" = (/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"aYP" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "brigobs"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/brig/visitation) +"aYQ" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Secure Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/northright{name = "Visitation"; req_access = list(2)},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aYR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{id_tag = "prisonentry"; name = "Prison Entry"; req_access = list(2)},/turf/simulated/floor/tiled,/area/security/perma/control) +"aYS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{id_tag = "prisonentry"; name = "Prison Entry"; req_access = list(2)},/turf/simulated/floor/tiled,/area/security/perma/control) +"aYT" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/green,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/perma/control) +"aYU" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/cable/green,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/perma/control) +"aYV" = (/turf/simulated/wall,/area/security/perma/control) +"aYW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/security/perma) +"aYX" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/security/perma) +"aYY" = (/obj/structure/table/steel,/obj/item/weapon/material/minihoe,/obj/item/device/analyzer/plant_analyzer,/obj/item/clothing/head/greenbandana,/turf/simulated/floor/tiled,/area/security/perma) +"aYZ" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/tiled,/area/security/perma) +"aZa" = (/obj/machinery/seed_storage/garden,/obj/machinery/camera/network/prison{c_tag = "SEC - Common Brig Fore"; dir = 1},/turf/simulated/floor/tiled,/area/security/perma) +"aZb" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled,/area/security/perma) +"aZc" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light,/turf/simulated/floor/tiled,/area/security/perma) +"aZd" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/tiled,/area/security/perma) +"aZe" = (/turf/simulated/wall/r_wall,/area/maintenance/atmos_control) +"aZf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/atmos_control) +"aZg" = (/obj/item/weapon/syringe_cartridge,/turf/simulated/floor,/area/maintenance/atmos_control) +"aZh" = (/turf/simulated/wall,/area/maintenance/atmos_control) +"aZi" = (/obj/random/trash_pile,/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"aZj" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/research,/obj/item/weapon/storage/trinketbox,/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"aZk" = (/obj/machinery/librarypubliccomp,/obj/structure/table/woodentable,/obj/machinery/camera/network/civilian{c_tag = "Library Fore"; dir = 2},/turf/simulated/floor/wood,/area/library) +"aZl" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/library) +"aZm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/library) +"aZn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/wood,/area/library) +"aZo" = (/obj/machinery/computer/timeclock/premade/east,/obj/machinery/lapvend,/turf/simulated/floor/wood,/area/library) +"aZp" = (/obj/machinery/door/morgue{dir = 2; name = "Private Study"; req_access = list(37)},/turf/simulated/floor/wood,/area/library) +"aZq" = (/turf/simulated/wall,/area/crew_quarters/coffee_shop) +"aZr" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized{dir = 2; id = "coffee"},/obj/structure/window/reinforced/polarized{dir = 8; id = "exam"},/obj/structure/window/reinforced/polarized{dir = 1; id = "coffee"},/turf/simulated/floor/plating,/area/crew_quarters/coffee_shop) +"aZs" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized{dir = 4; id = "coffee"},/obj/structure/window/reinforced/polarized{dir = 2; id = "coffee"},/obj/structure/window/reinforced/polarized{dir = 1; id = "coffee"},/turf/simulated/floor/plating,/area/crew_quarters/coffee_shop) +"aZt" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aZu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"aZv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aZw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aZx" = (/obj/machinery/door/airlock/glass{name = "Construction Area"; req_access = list(32)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"aZy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aZz" = (/obj/effect/floor_decal/corner/blue,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aZA" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aZB" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/disposalpipe/segment,/obj/machinery/light_switch{pixel_x = -12; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aZC" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aZD" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aZE" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aZF" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aZG" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_6) +"aZH" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aZI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = -32},/obj/structure/table/standard,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aZJ" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aZK" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aZL" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aZM" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/disposalpipe/segment,/obj/machinery/light_switch{pixel_x = -12; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aZN" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm10"; name = "Room 10 Lock"; pixel_x = 26; pixel_y = -4; specialfunctions = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_10) +"aZO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aZP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"aZQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"aZR" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"aZS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"aZT" = (/obj/structure/table/woodentable,/obj/item/stack/tile/carpet,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"aZU" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"aZV" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"aZW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "brigobs"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/brig/visitation) +"aZX" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/red/full{dir = 8},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aZY" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/red{dir = 5},/obj/machinery/flasher{id = "IAflash"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aZZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/perma) +"baa" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/security/perma) +"bab" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/device/radio/intercom{desc = "Talk... listen through this."; dir = 1; name = "Station Intercom (Brig Radio)"; pixel_x = 0; pixel_y = 21; wires = 7},/turf/simulated/floor/tiled,/area/security/perma) +"bac" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/computer/cryopod{density = 0; layer = 3.3; pixel_y = 32},/turf/simulated/floor/tiled,/area/security/perma) +"bad" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/security/perma) +"bae" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/security/perma) +"baf" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/security/perma) +"bag" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/security/perma) +"bah" = (/turf/simulated/wall,/area/security/perma/bathroom) +"bai" = (/obj/machinery/door/airlock{name = "Brig Restroom"},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/security/perma/bathroom) +"baj" = (/turf/simulated/wall/r_wall,/area/security/perma/bathroom) +"bak" = (/turf/simulated/mineral/cave,/area/maintenance/atmos_control) +"bal" = (/turf/simulated/floor,/area/maintenance/atmos_control) +"bam" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"ban" = (/obj/structure/bookcase{name = "bookcase (Adult)"},/turf/simulated/floor/wood,/area/library) +"bao" = (/obj/structure/bookcase{name = "bookcase (Adult)"},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/library) +"bap" = (/turf/simulated/floor/wood,/area/library) +"baq" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/library) +"bar" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/library) +"bas" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/wood,/area/library) +"bat" = (/obj/machinery/librarycomp{pixel_y = 0},/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/library) +"bau" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 12},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 12},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop) +"bav" = (/obj/structure/table/marble,/obj/item/weapon/hand_labeler,/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/obj/item/weapon/reagent_containers/food/drinks/britcup,/obj/item/weapon/reagent_containers/food/drinks/britcup,/obj/item/weapon/reagent_containers/food/drinks/teapot,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop) +"baw" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = 0; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = -8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = 8; pixel_y = 4},/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = 0; pixel_y = 4},/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = -8; pixel_y = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Cafe Back Room"; dir = 2},/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop) +"bax" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_coffee/full,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop) +"bay" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/button/remote/blast_door{id = "coffeeshop"; name = "Cafe Shutters"; pixel_x = 26; pixel_y = 0},/obj/machinery/light_switch{pixel_x = 34; pixel_y = 4},/obj/machinery/button/windowtint{id = "coffee"; pixel_x = 34; pixel_y = -4},/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop) +"baz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"baA" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lowfloor3) +"baB" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled,/area/maintenance/medical_lower) +"baC" = (/obj/structure/stairs/south,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/medical_lower) +"baD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/tealcarpet,/area/medical/pyschwarde) +"baE" = (/obj/structure/disposalpipe/segment,/obj/machinery/libraryscanner,/turf/simulated/floor/wood,/area/library) +"baF" = (/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_5) +"baG" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/crew_quarters/sleep/Dorm_5/holo) +"baH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/computer/HolodeckControl/holodorm/five,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_5) +"baI" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_5) +"baJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"baK" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_6) +"baL" = (/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_9) +"baM" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_9) +"baN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"baO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/item/weapon/flame/lighter/zippo,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"baP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"baQ" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/maintroom6) +"baR" = (/turf/simulated/wall/durasteel/blueserg,/area/mine/explored/lower_rock) +"baS" = (/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"baT" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"baU" = (/obj/structure/table/woodentable,/obj/item/stack/tile/carpet,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"baV" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/green,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "brigobs"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/brig/visitation) +"baW" = (/obj/effect/floor_decal/corner/red/full,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/security/brig/visitation) +"baX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/camera/network/prison{c_tag = "Prison Visitation"; dir = 1},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"baY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock{id_tag = "visitdoor"; name = "Visitation Area"; req_access = list(63)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/security/brig/visitation) +"baZ" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled,/area/security/perma) +"bba" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/perma) +"bbb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/perma) +"bbc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/flasher{id = "permflash"; name = "Floor mounted flash"; pixel_x = 0},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/security/perma) +"bbd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/perma) +"bbe" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/security/perma) +"bbf" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled,/area/security/perma) +"bbg" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/storage/fancy/cigarettes,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/perma) +"bbh" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/weapon/bedsheet/orange,/obj/structure/bed/padded,/turf/simulated/floor/tiled,/area/security/perma) +"bbi" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/random/tech_supply,/obj/item/clothing/head/flatcap,/turf/simulated/floor/tiled,/area/security/perma) +"bbj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/security/perma/bathroom) +"bbk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer,/area/security/perma/bathroom) +"bbl" = (/obj/structure/mirror{pixel_x = 30},/obj/item/weapon/soap/nanotrasen,/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/security/perma/bathroom) +"bbm" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/atmos_control) +"bbn" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; name = "Atmospherics"; sortType = "Atmospherics"},/turf/simulated/floor,/area/maintenance/atmos_control) +"bbo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/atmos_control) +"bbp" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_one_access = list(12,37)},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/library) +"bbq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/library) +"bbr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Library"; sortType = "Library"},/turf/simulated/floor/wood,/area/library) +"bbs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{icon_state = "map-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/wood,/area/library) +"bbt" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/wood,/area/library) +"bbu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/library) +"bbv" = (/obj/machinery/door/window/northright{dir = 8; name = "Library Desk Door"; req_access = list(37)},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/library) +"bbw" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/library) +"bbx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/library) +"bby" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; name = "Coffee Shop"; sortType = "Coffee Shop"},/turf/simulated/floor/wood,/area/library) +"bbz" = (/obj/machinery/door/airlock/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bbA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bbB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bbC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bbD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bbE" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Coffee Shop"; req_one_access = list(25,28)},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/coffee_shop) +"bbF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass,/area/hallway/lower/central) +"bbG" = (/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/structure/flora/ausbushes/ppflowers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass,/area/hallway/lower/central) +"bbH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/cryo) +"bbI" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass,/area/hallway/lower/central) +"bbJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bbK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/fish) +"bbL" = (/obj/structure/closet/crate/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/dormitory) +"bbM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_5) +"bbN" = (/obj/machinery/button/remote/airlock{id = "dorm5"; name = "Room 5 Lock"; pixel_x = 26; pixel_y = -4; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_5) +"bbO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bbP" = (/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bbQ" = (/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_4) +"bbR" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_4) +"bbS" = (/obj/structure/toilet,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_4) +"bbT" = (/obj/structure/curtain/open/shower,/obj/machinery/door/window/southright{name = "Shower"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_4) +"bbU" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bbV" = (/obj/structure/table/standard,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bbW" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bbX" = (/obj/structure/table/standard,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bbY" = (/obj/structure/curtain/open/shower,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southright{name = "Shower"},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_9) +"bbZ" = (/obj/structure/toilet,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_9) +"bca" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_9) +"bcb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bcc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bcd" = (/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bce" = (/obj/item/weapon/caution/cone,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bcf" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bcg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bch" = (/obj/random/junk,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bci" = (/turf/simulated/floor/plating,/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) +"bcj" = (/turf/simulated/wall/r_wall,/area/security/perma/court) +"bck" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/perma) +"bcl" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/security/perma) +"bcm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/security/perma) +"bcn" = (/obj/machinery/door/airlock/glass{name = "Prison Dormitories"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/perma) +"bco" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/perma) +"bcp" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/security/perma) +"bcq" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/security/perma/bathroom) +"bcr" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled/freezer,/area/security/perma/bathroom) +"bcs" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/security/perma/bathroom) +"bct" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/atmos_control) +"bcu" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/simulated/floor/wood,/area/library) +"bcv" = (/obj/structure/table/woodentable,/obj/item/device/camera_film,/obj/item/device/camera_film,/turf/simulated/floor/wood,/area/library) +"bcw" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/library) +"bcx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop) +"bcy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/table/marble,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bcz" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bcA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bcB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bcC" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized{dir = 2; id = "coffee"},/obj/structure/window/reinforced/polarized{dir = 4; id = "coffee"},/obj/structure/window/reinforced/polarized{dir = 8; id = "exam"},/obj/structure/window/reinforced/polarized{dir = 1; id = "coffee"},/turf/simulated/floor/plating,/area/crew_quarters/coffee_shop) +"bcD" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"bcE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/fore) +"bcF" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; name = "Construction Site"},/turf/simulated/floor,/area/vacant/vacant_site) +"bcG" = (/turf/simulated/floor,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/wood/broken,/area/vacant/vacant_site/private) +"bcH" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/central) +"bcI" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/metal/mait{name = "Construction Site"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/dormitory) +"bcJ" = (/turf/simulated/wall,/area/maintenance/dormitory) +"bcK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_5) +"bcL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_5) +"bcM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{id_tag = "dorm5"; name = "Room 5 (Holo)"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/Dorm_5) +"bcN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bcO" = (/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/obj/machinery/camera/network/civilian{c_tag = "CIV - Visitor Room Hall FP"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bcP" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/mirror{pixel_x = -28},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_4) +"bcQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_4) +"bcR" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_4) +"bcS" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bcT" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bcU" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bcV" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bcW" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_9) +"bcX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_9) +"bcY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/mirror{pixel_x = 28},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_9) +"bcZ" = (/obj/structure/closet,/obj/random/maintenance/research,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bda" = (/obj/structure/bed/chair/comfy/beige,/obj/item/stack/tile/carpet,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bdb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bdc" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bdd" = (/obj/item/stack/tile/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bde" = (/obj/structure/bed/chair/comfy/beige,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/maintroom6) +"bdf" = (/obj/structure/table/woodentable,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bdg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/security/perma/court) +"bdh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/security/perma/court) +"bdi" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/security/perma/court) +"bdj" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/security/perma/court) +"bdk" = (/obj/machinery/door/airlock/security{name = "The Hole"; req_access = list(2)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/perma/court) +"bdl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/perma) +"bdm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/security/perma) +"bdn" = (/obj/structure/table/steel,/obj/machinery/microwave,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/perma) +"bdo" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets{pixel_x = -3; pixel_y = -3},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/security/perma) +"bdp" = (/obj/structure/table/steel,/obj/item/weapon/dice,/obj/machinery/camera/network/prison{c_tag = "Prison Port"; dir = 1},/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled,/area/security/perma) +"bdq" = (/obj/structure/table/steel,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/turf/simulated/floor/tiled,/area/security/perma) +"bdr" = (/obj/structure/table/steel,/obj/item/weapon/newspaper,/obj/machinery/light,/turf/simulated/floor/tiled,/area/security/perma) +"bds" = (/obj/machinery/cryopod,/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/white,/area/security/perma) +"bdt" = (/obj/structure/cryofeed,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/security/perma) +"bdu" = (/obj/item/weapon/bedsheet/orange,/obj/structure/bed/padded,/turf/simulated/floor/tiled,/area/security/perma) +"bdv" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/clothing/head/soft/orange,/obj/item/clothing/shoes/sandal,/turf/simulated/floor/tiled,/area/security/perma) +"bdw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/weapon/bedsheet/orange,/obj/structure/bed/padded,/obj/machinery/camera/network/prison{c_tag = "Prison Dormitories"; dir = 1},/turf/simulated/floor/tiled,/area/security/perma) +"bdx" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,/obj/item/clothing/suit/storage/apron/overalls,/obj/machinery/camera/network/prison{c_tag = "SEC - Brig Bedroom"; dir = 8},/turf/simulated/floor/tiled,/area/security/perma) +"bdy" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/simulated/floor/tiled/freezer,/area/security/perma/bathroom) +"bdz" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/atmos_control) +"bdA" = (/obj/random/obstruction,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/atmos_control) +"bdB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/library) +"bdC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/library) +"bdD" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/library) +"bdE" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/library) +"bdF" = (/obj/structure/bed/chair/comfy/black{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) +"bdG" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor/wood,/area/library) +"bdH" = (/obj/structure/table/woodentable,/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/wood,/area/library) +"bdI" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder,/turf/simulated/floor/wood,/area/library) +"bdJ" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/library) +"bdK" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 2; id = "coffeeshop"; layer = 3.1; name = "Cafe Shutters"},/obj/machinery/cash_register/civilian{icon_state = "register_idle"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bdL" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 2; id = "coffeeshop"; layer = 3.1; name = "Cafe Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bdM" = (/obj/machinery/door/window/southright{name = "Coffee Shop"; req_one_access = list(25,28)},/obj/machinery/door/blast/shutters{dir = 2; id = "coffeeshop"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bdN" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/effect/floor_decal/corner/brown/full{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bdO" = (/obj/effect/floor_decal/corner/brown/full{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bdP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/coffee_shop) +"bdQ" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"bdR" = (/turf/simulated/floor/plating,/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 1},/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) +"bdS" = (/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos) +"bdT" = (/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bdU" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_4) +"bdV" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_4) +"bdW" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bdX" = (/obj/machinery/newscaster{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bdY" = (/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bdZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bea" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_9) +"beb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bec" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bed" = (/obj/structure/table,/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 8},/turf/simulated/floor/carpet,/area/maintenance/maintroom6) +"bee" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bef" = (/obj/structure/table,/turf/simulated/floor/carpet,/area/maintenance/maintroom6) +"beg" = (/obj/structure/table/woodentable,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/pen,/obj/random/tool,/turf/simulated/floor/carpet,/area/maintenance/maintroom6) +"beh" = (/obj/structure/table/woodentable,/obj/item/weapon/book/codex/lore/news,/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 4},/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bei" = (/obj/effect/decal/cleanable/dirt,/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bej" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bek" = (/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bel" = (/obj/effect/floor_decal/corner/white/border{icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bem" = (/obj/effect/decal/cleanable/dirt,/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"ben" = (/obj/effect/decal/cleanable/dirt,/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"beo" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/vending/wallmed1{pixel_y = -32},/turf/simulated/floor/tiled,/area/security/perma) +"bep" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/security/perma/bathroom) +"beq" = (/obj/structure/closet/crate,/obj/item/clothing/glasses/meson/prescription,/obj/item/weapon/storage/box/lights/mixed,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"ber" = (/obj/item/weapon/toolbox_tiles,/turf/simulated/floor,/area/maintenance/atmos_control) +"bes" = (/obj/structure/table/woodentable,/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/item/weapon/book/codex/lore/vir,/turf/simulated/floor/carpet,/area/library) +"bet" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/library) +"beu" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) +"bev" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bew" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bex" = (/obj/effect/floor_decal/corner/brown{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bey" = (/obj/effect/floor_decal/corner/brown{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bez" = (/obj/effect/floor_decal/corner/brown{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"beA" = (/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"beB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"beC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"beD" = (/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"beE" = (/obj/effect/floor_decal/corner/brown/full{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"beF" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos) +"beG" = (/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos) +"beH" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos) +"beI" = (/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_3) +"beJ" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/crew_quarters/sleep/Dorm_3/holo) +"beK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/computer/HolodeckControl/holodorm/three,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_3) +"beL" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_3) +"beM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"beN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"beO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{id_tag = "dorm4"; name = "Room 4"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"beP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/button/remote/airlock{id = "dorm4"; name = "Room 4 Lock"; pixel_x = -26; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"beQ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"beR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"beS" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"beT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"beU" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"beV" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"beW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"beX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"beY" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"beZ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bfa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bfb" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"bfc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bfd" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bfe" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/item/stack/cable_coil/random,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bff" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bfg" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bfh" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bfi" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/turf/simulated/floor/carpet,/area/maintenance/maintroom6) +"bfj" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bfk" = (/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/holohoop{icon_state = "hoop"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bfl" = (/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bfm" = (/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/item/weapon/paper/crumpled{name = "basketball"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bfn" = (/obj/effect/floor_decal/corner/white/border{icon_state = "bordercolor"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bfo" = (/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/corner/white/border,/obj/structure/holohoop{icon_state = "hoop"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bfp" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/maintenance/atmos_control) +"bfq" = (/obj/structure/table/rack,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/belt/utility,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"bfr" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/atmos_control) +"bfs" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/library) +"bft" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet,/area/library) +"bfu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/carpet,/area/library) +"bfv" = (/obj/structure/bed/chair/comfy/green{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) +"bfw" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/library) +"bfx" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bfy" = (/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bfz" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bfA" = (/obj/effect/floor_decal/corner/brown,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bfB" = (/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bfC" = (/obj/effect/floor_decal/corner/brown{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bfD" = (/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bfE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bfF" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bfG" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bfH" = (/turf/simulated/floor/reinforced/n20,/area/engineering/atmos) +"bfI" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/reinforced/n20,/area/engineering/atmos) +"bfJ" = (/obj/machinery/light/small,/obj/machinery/camera/network/engineering{c_tag = "Atmospherics Tank - Carbon Dioxide"; dir = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos) +"bfK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bfL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_3) +"bfM" = (/obj/machinery/button/remote/airlock{id = "dorm3"; name = "Room 3 Lock"; pixel_x = 26; pixel_y = -4; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_3) +"bfN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bfO" = (/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bfP" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bfQ" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/disposalpipe/segment,/obj/machinery/light_switch{pixel_x = -12; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bfR" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bfS" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bfT" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bfU" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bfV" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_4) +"bfW" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bfX" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bfY" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bfZ" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bga" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bgb" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/disposalpipe/segment,/obj/machinery/light_switch{pixel_x = -12; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bgc" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm9"; name = "Room 9 Lock"; pixel_x = 26; pixel_y = -4; specialfunctions = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bgd" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "virofreezer"; locked = 1; name = "Pathogen Deep-Freeze"; req_access = list(39)},/turf/simulated/floor/tiled/white,/area/medical/virology) +"bge" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bgf" = (/obj/effect/floor_decal/spline/plain,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bgg" = (/obj/effect/floor_decal/corner/white/border{icon_state = "bordercolor"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/security{c_tag = "Prison Court"; dir = 1},/turf/simulated/floor/tiled/monotile,/area/security/perma/court) +"bgh" = (/obj/structure/closet/crate,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/atmos_control) +"bgi" = (/obj/item/weapon/storage/rollingpapers,/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/turf/simulated/floor,/area/maintenance/atmos_control) +"bgj" = (/obj/structure/frame,/turf/simulated/floor,/area/maintenance/atmos_control) +"bgk" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/simulated/floor/wood,/area/library) +"bgl" = (/obj/structure/bed/chair/wood{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgm" = (/obj/structure/table/woodentable,/obj/item/weapon/book/codex/lore/vir,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgn" = (/obj/structure/bed/chair/wood{dir = 8},/obj/effect/floor_decal/corner/brown{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgo" = (/obj/structure/bed/chair/wood{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgp" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgq" = (/obj/structure/bed/chair/wood{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{icon_state = "map-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgs" = (/obj/machinery/light/small,/obj/machinery/camera/network/engineering{c_tag = "Atmospherics Tank - Phoron"; dir = 1},/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos) +"bgt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_3) +"bgu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_3) +"bgv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{id_tag = "dorm3"; name = "Room 3 (Holo)"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/Dorm_3) +"bgw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bgx" = (/obj/structure/table/woodentable,/obj/item/stack/material/wood{amount = 10},/obj/item/stack/tile/carpet,/obj/random/drinkbottle,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bgy" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bgz" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bgA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bgB" = (/obj/structure/table,/turf/simulated/floor/wood,/area/maintenance/maintroom6) +"bgC" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"bgD" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor,/area/maintenance/atmos_control) +"bgE" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/maintenance/atmos_control) +"bgF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/atmos_control) +"bgG" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/atmos_control) +"bgH" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/engineering,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"bgI" = (/turf/simulated/wall,/area/crew_quarters/sleep/engi_wash) +"bgJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/library) +"bgK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/library) +"bgL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/wood,/area/library) +"bgM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/library) +"bgN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/wood,/area/library) +"bgO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/library) +"bgP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/library) +"bgQ" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgR" = (/obj/structure/bed/chair/wood{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgS" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgT" = (/obj/structure/bed/chair/wood{dir = 8},/obj/effect/floor_decal/corner/brown{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgU" = (/obj/structure/bed/chair/wood{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgV" = (/obj/structure/bed/chair/wood{dir = 8},/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bgW" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/dormitory) +"bgX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bgY" = (/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bgZ" = (/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_2) +"bha" = (/obj/structure/table/standard,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_2) +"bhb" = (/obj/structure/toilet,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_2) +"bhc" = (/obj/structure/curtain/open/shower,/obj/machinery/door/window/southright{name = "Shower"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_2) +"bhd" = (/turf/simulated/mineral/cave,/area/crew_quarters/sleep/Dorm_2) +"bhe" = (/turf/simulated/mineral/cave,/area/crew_quarters/sleep/Dorm_8) +"bhf" = (/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_8) +"bhg" = (/obj/structure/curtain/open/shower,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southright{name = "Shower"},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_8) +"bhh" = (/obj/structure/toilet,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_8) +"bhi" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_8) +"bhj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bhk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bhl" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bhm" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bhn" = (/obj/structure/table/woodentable,/obj/random/junk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bho" = (/obj/item/stack/tile/wood{amount = 10},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bhp" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/maintroom6) +"bhq" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/atmos_control) +"bhr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/atmos_control) +"bhs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/atmos_control) +"bht" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor,/area/maintenance/atmos_control) +"bhu" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/atmos_control) +"bhv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/maintenance/atmos_control) +"bhw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/atmos_control) +"bhx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor,/area/maintenance/atmos_control) +"bhy" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/atmos_control) +"bhz" = (/obj/machinery/recharge_station,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bhA" = (/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/random/soap,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bhB" = (/turf/simulated/wall/r_wall,/area/library) +"bhC" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/simulated/floor/wood,/area/library) +"bhD" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/wood,/area/library) +"bhE" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Public Office"},/obj/machinery/light_switch{dir = 1; pixel_x = 4; pixel_y = -24},/turf/simulated/floor/wood,/area/library) +"bhF" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/machinery/camera/network/civilian{c_tag = "Library Aft"; dir = 1},/turf/simulated/floor/carpet,/area/library) +"bhG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"bhH" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet,/area/library) +"bhI" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bhJ" = (/obj/effect/floor_decal/corner/brown{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bhK" = (/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bhL" = (/obj/effect/floor_decal/corner/brown{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bhM" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bhN" = (/obj/machinery/light/small,/obj/machinery/camera/network/engineering{c_tag = "Atmospherics Tank - Nitrous Oxide"; dir = 1},/turf/simulated/floor/reinforced/n20,/area/engineering/atmos) +"bhO" = (/turf/simulated/floor/plating,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) +"bhP" = (/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_1) +"bhQ" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/crew_quarters/sleep/Dorm_1/holo) +"bhR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/computer/HolodeckControl/holodorm/one,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_1) +"bhS" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_1) +"bhT" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/mirror{pixel_x = -28},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_2) +"bhU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_2) +"bhV" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_2) +"bhW" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_8) +"bhX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_8) +"bhY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/mirror{pixel_x = 28},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_8) +"bhZ" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/security_lower) +"bia" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/atmos_control) +"bib" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/atmos_control) +"bic" = (/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/atmos_control) +"bid" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/atmos_control) +"bie" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/atmos_control) +"bif" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/atmos_control) +"big" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bih" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bii" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bij" = (/obj/structure/mirror{dir = 4; pixel_x = 32; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bik" = (/obj/machinery/door/morgue{dir = 2; name = "Reading Rooms"; req_access = null},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/library) +"bil" = (/obj/structure/noticeboard/library,/turf/simulated/wall,/area/library) +"bim" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bin" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bio" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bip" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"biq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bir" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bis" = (/obj/effect/floor_decal/corner/brown{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bit" = (/turf/simulated/wall,/area/maintenance/substation/civilian_lower) +"biu" = (/obj/machinery/door/airlock/engineering{name = "Civilian Lower Substation"; req_one_access = list(11,24)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/civilian_lower) +"biv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"biw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_1) +"bix" = (/obj/machinery/button/remote/airlock{id = "dorm1"; name = "Room 1 Lock"; pixel_x = 26; pixel_y = -4; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_1) +"biy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{c_tag = "CIV - Visitor Room Hall AP"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"biz" = (/obj/effect/floor_decal/corner/white{dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"biA" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/crew_quarters/sleep/Dorm_2) +"biB" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_2) +"biC" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"biD" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/brown,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"biE" = (/obj/structure/table/standard,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"biF" = (/obj/structure/table/standard,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"biG" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/brown,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"biH" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"biI" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_8) +"biJ" = (/obj/structure/sign/directions/evac{dir = 8},/turf/simulated/wall,/area/maintenance/maintroom6) +"biK" = (/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/atmos_control) +"biL" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/drinkbottle,/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"biM" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/maintenance/atmos_control) +"biN" = (/obj/structure/firedoor_assembly,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor,/area/maintenance/atmos_control) +"biO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"biP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/mirror{dir = 4; pixel_x = 32; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"biQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/standard,/obj/random/soap,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"biR" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"biS" = (/obj/structure/bed/chair/comfy/black,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/carpet,/area/library) +"biT" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/carpet,/area/library) +"biU" = (/obj/structure/curtain/bed{name = "privacy curtain"},/turf/simulated/floor/wood,/area/library) +"biV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/library) +"biW" = (/obj/structure/bed/chair/comfy/black,/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet,/area/library) +"biX" = (/obj/machinery/media/jukebox,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"biY" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"biZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bja" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bjb" = (/obj/structure/bed/chair/wood{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bjc" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/computer/security/telescreen/entertainment,/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bjd" = (/obj/structure/bed/chair/wood{dir = 8},/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/camera/network/civilian{c_tag = "Cafe"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bje" = (/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bjf" = (/obj/structure/bed/chair/wood{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bjg" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/corner/brown{dir = 10},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bjh" = (/obj/structure/bed/chair/wood{dir = 8},/obj/effect/floor_decal/corner/brown/full{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) +"bji" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/civilian_lower) +"bjj" = (/obj/machinery/door/airlock/atmos,/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"bjk" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Civilian Lower"; name_tag = "Lower Civilian Subgrid"},/obj/structure/cable/green,/turf/simulated/floor,/area/maintenance/substation/civilian_lower) +"bjl" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Lower Civilian Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/civilian_lower) +"bjm" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/substation/civilian_lower) +"bjn" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/dormitory) +"bjo" = (/turf/simulated/floor/wood,/obj/item/stack/material/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) +"bjp" = (/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bjq" = (/turf/simulated/mineral/cave,/area/maintenance/dormitory) +"bjr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_1) +"bjs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_1) +"bjt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{id_tag = "dorm1"; name = "Room 1 (Holo)"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/Dorm_1) +"bju" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bjv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{id_tag = "dorm2"; name = "Room 2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bjw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/button/remote/airlock{id = "dorm2"; name = "Room 2 Lock"; pixel_x = -26; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bjx" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bjy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bjz" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bjA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bjB" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bjC" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bjD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bjE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bjF" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bjG" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bjH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bjI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{id_tag = "dorm8"; name = "Room 8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bjJ" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/atmos_control) +"bjK" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"bjL" = (/obj/structure/girder,/turf/simulated/floor,/area/maintenance/atmos_control) +"bjM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/maintenance/atmos_control) +"bjN" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor,/area/maintenance/atmos_control) +"bjO" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bjP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bjQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bjR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Unisex Showers"},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bjS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bjT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bjU" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/carpet,/area/library) +"bjV" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/library) +"bjW" = (/obj/structure/curtain/open/bed{name = "privacy curtain"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/library) +"bjX" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/wood,/area/library) +"bjY" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/carpet,/area/library) +"bjZ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Library Meeting Room"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/coffee_shop) +"bka" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Library Meeting Room"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/coffee_shop) +"bkb" = (/turf/simulated/floor/plating,/area/maintenance/substation/civilian_lower) +"bkc" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/terminal{dir = 1},/turf/simulated/floor,/area/maintenance/substation/civilian_lower) +"bkd" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/civilian_lower) +"bke" = (/obj/machinery/door/airlock/engineering{name = "Civilian Lower Substation"; req_one_access = list(11,24)},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/civilian_lower) +"bkf" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bkg" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bkh" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bki" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bkj" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bkk" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bkl" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bkm" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_2) +"bkn" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bko" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bkp" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bkq" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bkr" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bks" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bkt" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm8"; name = "Room 8 Lock"; pixel_x = 26; pixel_y = -4; specialfunctions = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_8) +"bku" = (/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"bkv" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"bkw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/atmos_control) +"bkx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bky" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/washing_machine,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bkz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/northleft{name = "Shower"; req_access = list()},/obj/structure/curtain/open/shower/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/engi_wash) +"bkA" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/window/northleft{name = "Shower"; req_access = list()},/obj/structure/curtain/open/shower/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/engi_wash) +"bkB" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet,/area/library) +"bkC" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/carpet,/area/library) +"bkD" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet,/area/library) +"bkE" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 0},/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/library_conference_room) +"bkF" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/library_conference_room) +"bkG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/library_conference_room) +"bkH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/library_conference_room) +"bkI" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/turf/simulated/floor/wood,/area/library_conference_room) +"bkJ" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/packageWrap,/turf/simulated/floor/wood,/area/library_conference_room) +"bkK" = (/turf/simulated/wall,/area/library_conference_room) +"bkL" = (/obj/machinery/atmospherics/pipe/tank/air,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/maintenance/dormitory) +"bkM" = (/obj/machinery/atmospherics/pipe/tank/air,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/maintenance/dormitory) +"bkN" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bkO" = (/turf/simulated/wall,/area/maintenance/aft) +"bkP" = (/obj/item/clothing/gloves/rainbow,/obj/item/clothing/head/soft/rainbow,/obj/item/clothing/shoes/rainbow,/obj/item/clothing/under/color/rainbow,/obj/item/weapon/bedsheet/rainbow,/obj/item/weapon/pen/crayon/rainbow,/turf/simulated/floor,/area/hallway/lower/dorms) +"bkQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/techfloor,/area/maintenance/atmos_control) +"bkR" = (/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/atmos_control) +"bkS" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/atmos_control) +"bkT" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/mine/unexplored/lower_rock) +"bkU" = (/turf/simulated/floor,/area/mine/unexplored/lower_rock) +"bkV" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/atmos_control) +"bkW" = (/obj/machinery/door/airlock/maintenance/engi{name = "Atmospherics Access"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/hallway_lower) +"bkX" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bkY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Washroom"; req_one_access = list(10)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"bkZ" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/engi_wash) +"bla" = (/turf/simulated/floor/wood,/area/library_conference_room) +"blb" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"blc" = (/obj/structure/bed/chair/office/dark,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bld" = (/obj/structure/bed/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"ble" = (/obj/structure/bed/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"blf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"blg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/library_conference_room) +"blh" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/library_conference_room) +"bli" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor,/area/maintenance/dormitory) +"blj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/meter,/turf/simulated/floor,/area/maintenance/dormitory) +"blk" = (/obj/machinery/atmospherics/valve{dir = 4},/obj/effect/decal/cleanable/spiderling_remains,/turf/simulated/floor,/area/maintenance/dormitory) +"bll" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"blm" = (/turf/simulated/floor/plating,/obj/machinery/light_construct,/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) +"bln" = (/turf/simulated/wall,/area/maintenance/dorm) +"blo" = (/obj/machinery/light/small{dir = 8},/obj/structure/disposalconstruct,/turf/simulated/floor,/area/maintenance/dorm) +"blp" = (/turf/simulated/floor,/area/maintenance/dorm) +"blq" = (/turf/simulated/floor/wood,/area/maintenance/dorm) +"blr" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/turf/simulated/floor/wood,/area/maintenance/dorm) +"bls" = (/turf/simulated/floor/plating,/area/maintenance/aft) +"blt" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/aft) +"blu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"blv" = (/obj/machinery/door/firedoor/glass/hidden,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"blw" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/corner/white/diagonal{icon_state = "corner_white_diagonal"; dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"blx" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bly" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"blz" = (/obj/machinery/vending/cigarette,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "CIV - Visitor's Dinning"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"blA" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"blB" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/cups,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"blC" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"blD" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"blE" = (/turf/simulated/wall,/area/engineering/hallway_lower) +"blF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"blG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"blH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"blI" = (/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"blJ" = (/obj/structure/closet/hydrant{pixel_y = 32},/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/machinery/camera/network/engineering{c_tag = "Atmospherics Hallway Fore"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"blK" = (/obj/structure/closet/hydrant{pixel_y = 32},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"blL" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"blM" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"blN" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"blO" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"blP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/wood,/area/library_conference_room) +"blQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/library_conference_room) +"blR" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"blS" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"blT" = (/obj/machinery/newscaster{pixel_x = 28; pixel_y = 0},/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/pipe_dispenser,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"blU" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"blV" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"blW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/library_conference_room) +"blX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 26},/turf/simulated/floor/wood,/area/library_conference_room) +"blY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fish) +"blZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bma" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/maintenance/dorm) +"bmb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/maintenance/dorm) +"bmc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/wood,/area/maintenance/dorm) +"bmd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/wood,/area/maintenance/dorm) +"bme" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/wood,/area/maintenance/dorm) +"bmf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/dorm) +"bmg" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bmh" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmj" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bml" = (/obj/structure/closet/emcloset,/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/loadout,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/loadout/overwear,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/loadout/loadout_misc,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/autoname{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bmq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/loadout/costume,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmr" = (/obj/machinery/computer/timeclock/premade/north,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/loadout/clothing,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bms" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/loadout/accessory,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmx" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bmy" = (/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled/steel,/area/engineering/hallway_lower) +"bmz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bmA" = (/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bmB" = (/obj/effect/decal/cleanable/blood/oil{name = "oil"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bmC" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bmD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bmE" = (/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bmF" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bmG" = (/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/powered/scrubber,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/hallway_lower) +"bmH" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/wood,/area/library_conference_room) +"bmI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/library_conference_room) +"bmJ" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bmK" = (/obj/structure/table/woodentable,/obj/item/weapon/dice/d20,/obj/item/weapon/dice,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bmL" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 36; pixel_y = 0},/obj/structure/table/standard{name = "plastic table frame"},/obj/item/device/pipe_painter,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bmM" = (/obj/structure/table/woodentable,/obj/item/weapon/deck/cards,/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bmN" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bmO" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/wood,/area/library_conference_room) +"bmP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/maintenance/dorm) +"bmQ" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt/cigarbutt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/dorm) +"bmR" = (/obj/structure/table/gamblingtable,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/maintenance/dorm) +"bmS" = (/obj/structure/table/gamblingtable,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/toy,/turf/simulated/floor/wood,/area/maintenance/dorm) +"bmT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor,/area/maintenance/dorm) +"bmU" = (/obj/structure/bed/chair/comfy/brown,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/dorm) +"bmV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/barricade,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/dorm) +"bmW" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bmX" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/hallway/lower/dorms) +"bmY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bmZ" = (/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bna" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bne" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnf" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bng" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/atmos_control) +"bnh" = (/turf/simulated/mineral/cave,/area/engineering/atmos) +"bni" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area/engineering/atmos) +"bnj" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/atmospheric) +"bnk" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/wall,/area/maintenance/substation/atmospheric) +"bnl" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall,/area/maintenance/substation/atmospheric) +"bnm" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access = list(24)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"bnn" = (/turf/simulated/wall/r_wall,/area/engineering/hallway_lower) +"bno" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/floor/tiled/techfloor,/area/engineering/hallway_lower) +"bnp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bnq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bnr" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 8},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bns" = (/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/hallway_lower) +"bnt" = (/obj/structure/filingcabinet,/turf/simulated/floor/wood,/area/library_conference_room) +"bnu" = (/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bnv" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bnw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/dormitory) +"bnx" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/dorm) +"bny" = (/obj/structure/table/gamblingtable,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/wood,/area/maintenance/dorm) +"bnz" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/wood,/area/maintenance/dorm) +"bnA" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/table/gamblingtable,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/deck/cards,/turf/simulated/floor,/area/maintenance/dorm) +"bnB" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/newscaster{pixel_x = -27; pixel_y = 1},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light_switch{pixel_x = -12; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnE" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnF" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnG" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnH" = (/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnN" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bnP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance Access"; req_access = newlist(); req_one_access = list(10)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/atmos_control) +"bnQ" = (/turf/simulated/floor/reinforced/airless,/area/engineering/atmos) +"bnR" = (/obj/machinery/power/smes/buildable{charge = 2e+006; RCon_tag = "Substation - Atmospherics"},/obj/structure/cable/cyan,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"bnS" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"bnT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"bnU" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"bnV" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/monitoring) +"bnW" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/structure/window/reinforced/full,/turf/simulated/floor,/area/engineering/atmos/monitoring) +"bnX" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/glasses/pint,/obj/machinery/requests_console/preset/engineering{pixel_x = -30},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bnY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bnZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"boa" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bob" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/simulated/floor/wood,/area/library_conference_room) +"boc" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/library_conference_room) +"bod" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/wood,/area/library_conference_room) +"boe" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Meeting Room"; dir = 1},/turf/simulated/floor/wood,/area/library_conference_room) +"bof" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/library_conference_room) +"bog" = (/obj/machinery/light_switch{pixel_x = 26; pixel_y = -26},/turf/simulated/floor/wood,/area/library_conference_room) +"boh" = (/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/library_conference_room) +"boi" = (/turf/simulated/wall/r_wall,/area/maintenance/dormitory) +"boj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green,/turf/simulated/floor/wood,/area/maintenance/dorm) +"bok" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/dorm) +"bol" = (/obj/machinery/door/airlock/maintenance{req_access = list(12)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bom" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner/green,/area/borealis2/elevator/dorms) +"bon" = (/turf/simulated/shuttle/wall/voidcraft/green,/area/borealis2/elevator/dorms) +"boo" = (/turf/simulated/floor/holofloor/tiled/dark,/area/borealis2/elevator/dorms) +"bop" = (/obj/structure/sign/deck/second,/turf/simulated/shuttle/wall/voidcraft/green,/area/borealis2/elevator/dorms) +"boq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bor" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/hallway/lower/dorms) +"bos" = (/turf/simulated/wall,/area/vacant/vacant_site/locker) +"bot" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/nosmoking_1{pixel_x = -32},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/atmos_control) +"bou" = (/obj/structure/closet/crate,/obj/item/weapon/deck/tarot,/obj/item/weapon/coin/gold,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/obj/item/weapon/flame/lighter/zippo,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor,/area/maintenance/atmos_control) +"bov" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 2; frequency = 1441; icon_state = "map_injector"; id = "waste_in"; pixel_y = 1; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/engineering/atmos) +"bow" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "waste_sensor"; output = 63},/turf/simulated/floor/reinforced/airless,/area/engineering/atmos) +"box" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 2; external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "waste_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/engineering/atmos) +"boy" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"boz" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Atmospherics Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"boA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"boB" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Atmospherics Subgrid"; name_tag = "Atmospherics Subgrid"},/obj/structure/cable/cyan,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"boC" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Engine Waste")},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"boD" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 0; pixel_y = 24; req_access = newlist(); req_one_access = list(10,24)},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"boE" = (/obj/machinery/computer/atmoscontrol,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"boF" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"boG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"boH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{icon_state = "map-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"boI" = (/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"boJ" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"boK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_y = 0},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"boL" = (/turf/simulated/wall/r_wall,/area/library_conference_room) +"boM" = (/turf/simulated/wall/r_wall,/area/tcomfoyer) +"boN" = (/turf/simulated/wall/r_wall,/area/tcommsat/computer) +"boO" = (/turf/simulated/wall/r_wall,/area/maintenance/dorm) +"boP" = (/obj/structure/sign/poster,/turf/simulated/wall/r_wall,/area/maintenance/dorm) +"boQ" = (/turf/simulated/floor,/area/maintenance/aft) +"boR" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) +"boS" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/cargo,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/borealis2/elevator/dorms) +"boT" = (/turf/simulated/open,/area/borealis2/elevator/dorms) +"boU" = (/turf/simulated/floor,/area/vacant/vacant_site/locker) +"boV" = (/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"boW" = (/obj/machinery/alarm{pixel_y = 23},/obj/item/weapon/camera_assembly,/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"boX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"boY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"boZ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bpa" = (/obj/structure/closet/crate,/obj/item/stack/material/steel{amount = 50},/obj/item/stack/rods,/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bpb" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bpc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/atmos_control) +"bpd" = (/obj/item/weapon/stool/padded,/turf/simulated/floor,/area/maintenance/atmos_control) +"bpe" = (/obj/structure/grille,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/wall/r_wall,/area/engineering/atmos) +"bpf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/regular/open{id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/atmos) +"bpg" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/meter,/turf/simulated/wall/r_wall,/area/engineering/atmos) +"bph" = (/turf/simulated/wall/r_wall,/area/engineering/atmos) +"bpi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access = list(24)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"bpj" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access = list(24)},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/atmospheric) +"bpk" = (/obj/machinery/computer/general_air_control{frequency = 1441; name = "Tank Monitor"; sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank")},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bpl" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bpn" = (/obj/structure/table/glass,/obj/machinery/microwave,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bpo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bpp" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bpq" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bpr" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/hallway_lower) +"bps" = (/turf/simulated/wall/r_wall,/area/tcommsat/entrance) +"bpt" = (/turf/simulated/floor/reinforced,/area/tcomfoyer) +"bpu" = (/obj/machinery/porta_turret/stationary,/turf/simulated/floor/reinforced,/area/tcomfoyer) +"bpv" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/tcomfoyer) +"bpw" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bpx" = (/obj/structure/filingcabinet,/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bpy" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/machinery/light{dir = 1},/obj/machinery/camera/network/telecom{c_tag = "Telecoms Main Computer Room"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bpz" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blue{pixel_x = -3; pixel_y = 2},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bpA" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bpB" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"bpC" = (/turf/simulated/wall,/area/tcommsat/computer) +"bpD" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/aft) +"bpE" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/aft) +"bpF" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/borealis2/elevator/dorms) +"bpG" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bpH" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site/locker) +"bpI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bpJ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bpK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bpL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bpM" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bpN" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/plating,/area/vacant/vacant_site/locker) +"bpO" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/atmos_control) +"bpP" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/atmos_control) +"bpQ" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/lattice,/turf/simulated/floor/plating,/area/engineering/atmos) +"bpR" = (/turf/simulated/floor/plating,/area/engineering/atmos) +"bpS" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/structure/lattice,/turf/simulated/floor/plating,/area/engineering/atmos) +"bpT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/table/standard,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 3; name = "Atmos RC"; pixel_x = 0; pixel_y = 28},/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/device/radio/headset/headset_eng,/obj/item/weapon/cartridge/atmos,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/item/weapon/cartridge/atmos,/obj/item/device/pipe_painter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bpU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/weapon/tool/wrench,/obj/structure/fireaxecabinet{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bpV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/standard,/obj/machinery/newscaster{pixel_y = 30},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/belt/utility/atmostech,/obj/item/weapon/storage/belt/utility/atmostech,/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore Starboard"; dir = 2},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bpW" = (/obj/effect/decal/warning_stripes,/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/visible/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/engineering/atmos) +"bpX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bpY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring Room"; req_access = list(24)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bpZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bqa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bqc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bqd" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bqe" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/camera/network/engineering{c_tag = "Atmospherics Hallway"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/hallway_lower) +"bqf" = (/turf/simulated/wall,/area/tcommsat/entrance) +"bqg" = (/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"bqh" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"bqi" = (/obj/machinery/light{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"bqj" = (/obj/machinery/porta_turret{dir = 6},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bqk" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/tcommsat/entrance) +"bql" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/reinforced,/area/tcomfoyer) +"bqm" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/tcommsat/computer) +"bqn" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bqo" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4; icon_state = "intact"},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bqp" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4; icon_state = "intact"},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bqq" = (/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bqr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bqs" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/obj/item/device/radio/intercom{name = "General Listening Channel"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"bqt" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/borealis2/elevator/dorms) +"bqu" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bqv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bqw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bqx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bqy" = (/obj/structure/table/standard,/obj/item/clothing/head/soft/grey{pixel_x = -2; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bqz" = (/obj/structure/table/standard,/obj/structure/disposalpipe/segment,/obj/item/frame,/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bqA" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bqB" = (/obj/item/stack/tile/floor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bqC" = (/obj/structure/closet/crate/hydroponics/prespawned,/turf/simulated/floor/tiled/dark,/area/hydroponics) +"bqD" = (/obj/item/weapon/caution/cone,/turf/simulated/floor,/area/maintenance/atmos_control) +"bqE" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bqF" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bqG" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bqH" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bqI" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bqJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/standard,/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/item/clothing/glasses/welding,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bqK" = (/turf/simulated/floor/tiled,/area/engineering/atmos) +"bqL" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bqM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bqN" = (/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bqO" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bqP" = (/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring Room"; req_access = list(24)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bqQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bqR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bqS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{icon_state = "map-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bqT" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bqU" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bqV" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/obj/machinery/recharge_station,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bqW" = (/obj/machinery/turretid/stun{ailock = 1; check_synth = 1; control_area = "\improper Telecoms Foyer"; desc = "A firewall prevents AIs from interacting with this device."; name = "Telecoms Foyer turret control"; pixel_y = 29; req_access = list(61)},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/motion,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bqX" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"bqY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"bqZ" = (/obj/structure/window/reinforced,/turf/simulated/floor/reinforced,/area/tcomfoyer) +"bra" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"brb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"brc" = (/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"brd" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bre" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"brf" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/aft) +"brg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/aft) +"brh" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bri" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) +"brj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) +"brk" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/borealis2/elevator/dorms) +"brl" = (/obj/item/stack/tile/floor,/turf/simulated/floor,/area/vacant/vacant_site/locker) +"brm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"brn" = (/obj/item/weapon/stool/padded,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bro" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"brp" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/weldingtool,/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"brq" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"brr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"brs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/atmos_control) +"brt" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bru" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled,/area/engineering/atmos) +"brv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/lime/full{dir = 8},/obj/machinery/atmospherics/binary/pump{dir = 1; name = "Mixing to Mix Tank"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"brw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "waste_in"; name = "Gas Mix Tank Control"; output_tag = "waste_out"; sensors = list("waste_sensor" = "Tank")},/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"brx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Mix Tank to Connector"},/obj/effect/floor_decal/corner/lime/full{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore Port"; dir = 2},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bry" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Mix Tank to Port"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"brz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"brA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/turf/simulated/floor/tiled,/area/engineering/atmos) +"brB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"brC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"brD" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"brE" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/manifold/visible/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"brF" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"brG" = (/obj/machinery/computer/atmos_alert,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"brH" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"brI" = (/obj/structure/sign/atmosplaque{pixel_x = 32; pixel_y = 0},/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Monitoring"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"brJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"brK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"brL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"brM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"brN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"brO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"brP" = (/obj/machinery/door/airlock/hatch{name = "Telecoms Satellite"; req_access = list(61)},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"brQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"brR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"brS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"brT" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"brU" = (/obj/structure/catwalk,/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/plating,/area/hallway/lower/central) +"brV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"brW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"brX" = (/obj/machinery/door/airlock/hatch{name = "Telecoms East Wing"; req_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"brY" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcomfoyer) +"brZ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/tcomfoyer) +"bsa" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tcomfoyer) +"bsb" = (/obj/machinery/door/airlock/hatch{name = "Telecoms Control Room"; req_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"bsc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bsd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bse" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bsf" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bsg" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/structure/cable{icon_state = "32-1"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/down{dir = 1},/turf/simulated/open,/area/borealis2/elevator/dorms) +"bsh" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bsi" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bsj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bsk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bsl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bsm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor,/area/maintenance/atmos_control) +"bsn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access = list(24)},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/engineering/atmos) +"bso" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bsp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bsq" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bsr" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bss" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bst" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bsu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bsv" = (/obj/machinery/hologram/holopad,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bsw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bsx" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bsy" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/meter{frequency = 1443; id = "wloop_atm_meter"; name = "Waste Loop"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bsz" = (/obj/machinery/meter{frequency = 1443; id = "dloop_atm_meter"; name = "Distribution Loop"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bsA" = (/obj/machinery/computer/security/engineering,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bsB" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bsC" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bsD" = (/obj/structure/table/standard,/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bsE" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bsF" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bsG" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bsH" = (/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bsI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bsJ" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"bsK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"bsL" = (/obj/machinery/turretid/lethal{ailock = 1; check_synth = 1; control_area = "Telecoms Satellite"; desc = "A firewall prevents AIs from interacting with this device."; name = "Telecoms lethal turret control"; pixel_x = 29; pixel_y = 0; req_access = list(61)},/obj/machinery/camera/network/telecom{c_tag = "Telecoms Foyer"; dir = 8},/turf/simulated/floor/tiled/dark,/area/tcomfoyer) +"bsM" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/reinforced,/area/tcomfoyer) +"bsN" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/tcomfoyer) +"bsO" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bsP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bsQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bsR" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bsS" = (/turf/simulated/mineral/cave,/area/maintenance/aft) +"bsT" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bsU" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bsV" = (/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bsW" = (/obj/machinery/light,/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bsY" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bsZ" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled,/area/vacant/vacant_site/locker) +"bta" = (/obj/structure/table/standard,/obj/machinery/recharger,/turf/simulated/floor/plating,/area/maintenance/aft) +"btb" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/maintenance/aft) +"btc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/atmos) +"btd" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bte" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btf" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/green,/turf/simulated/floor/tiled,/area/engineering/atmos) +"btg" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bth" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bti" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos) +"btj" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btk" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btl" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled,/area/engineering/atmos) +"btm" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btn" = (/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring Room"; req_access = list(24)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"bto" = (/obj/structure/table/standard,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"btp" = (/obj/machinery/power/thermoregulator,/turf/simulated/floor,/area/engineering/hallway_lower) +"btq" = (/obj/structure/closet/crate,/obj/item/clothing/glasses/night,/obj/machinery/light/small,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"btr" = (/obj/structure/closet/crate,/obj/item/device/aicard,/obj/item/device/multitool,/obj/machinery/camera/network/telecom{c_tag = "Telecoms Entrance South"; dir = 1},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bts" = (/obj/machinery/porta_turret{dir = 10},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"btt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/tcomfoyer) +"btu" = (/obj/machinery/light{dir = 8},/obj/structure/table/standard,/obj/item/device/multitool,/obj/structure/sign/electricshock{pixel_x = -32},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"btv" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer_1"; set_temperature = 73; use_power = 1},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"btw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"btx" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/obj/machinery/airlock_sensor/airlock_exterior{frequency = 1381; id_tag = "server_access_ex_sensor"; master_tag = "server_access_airlock"; pixel_x = 25; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bty" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1381; icon_state = "door_locked"; id_tag = "server_access_outer"; locked = 1; name = "Telecoms Server Access"; req_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"btz" = (/obj/machinery/airlock_sensor{frequency = 1381; id_tag = "server_access_sensor"; pixel_x = 12; pixel_y = 25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1381; id_tag = "server_access_pump"},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{frequency = 1381; id_tag = "server_access_airlock"; name = "Server Access Airlock"; pixel_x = 0; pixel_y = 25; tag_airpump = "server_access_pump"; tag_chamber_sensor = "server_access_sensor"; tag_exterior_door = "server_access_outer"; tag_exterior_sensor = "server_access_ex_sensor"; tag_interior_door = "server_access_inner"; tag_interior_sensor = "server_access_in_sensor"; tag_secure = 1},/turf/simulated/floor/plating,/area/tcommsat/computer) +"btA" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/tcommsat/computer) +"btB" = (/turf/simulated/floor/plating,/area/borealis2/elevator/dorms) +"btC" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/engineering,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/borealis2/elevator/dorms) +"btD" = (/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/tool,/obj/random/maintenance/security,/obj/random/maintenance/engineering,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/borealis2/elevator/dorms) +"btE" = (/turf/simulated/wall,/area/maintenance/maintroom5) +"btF" = (/obj/structure/grille,/turf/simulated/floor,/area/vacant/vacant_site/locker) +"btG" = (/obj/structure/grille/broken,/turf/simulated/floor,/area/vacant/vacant_site/locker) +"btH" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) +"btI" = (/obj/structure/table/standard,/turf/simulated/floor/plating,/area/maintenance/aft) +"btJ" = (/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos) +"btK" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1443; icon_state = "map_injector"; id = "air_in"; use_power = 1},/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos) +"btL" = (/obj/structure/grille,/obj/machinery/meter{frequency = 1443; id = "mair_in_meter"; name = "Mixed Air Tank In"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/turf/simulated/wall/r_wall,/area/engineering/atmos) +"btM" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/structure/lattice,/turf/simulated/floor,/area/engineering/atmos) +"btN" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"btO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/valve/digital/open{dir = 4; name = "Mixed Air Inlet Valve"},/obj/effect/floor_decal/corner/white{icon_state = "corner_white"; dir = 1},/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btP" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos) +"btQ" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btR" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled,/area/engineering/atmos) +"btS" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos) +"btT" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled,/area/engineering/atmos) +"btU" = (/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Transit to Waste"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btV" = (/obj/machinery/atmospherics/binary/pump/on{name = "Scrubber to Waste"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btW" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Air to Supply"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btX" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btY" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"btZ" = (/obj/machinery/pipedispenser,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bua" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/structure/window/reinforced/full,/turf/simulated/floor,/area/engineering/atmos) +"bub" = (/obj/structure/table/standard,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"buc" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/engineering/hallway_lower) +"bud" = (/turf/simulated/wall/r_wall,/area/tcommsat/powercontrol) +"bue" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"buf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bug" = (/obj/machinery/light,/turf/simulated/floor/reinforced,/area/tcomfoyer) +"buh" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/reinforced,/area/tcomfoyer) +"bui" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/plating,/area/tcommsat/computer) +"buj" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/black,/turf/simulated/floor/plating,/area/tcommsat/computer) +"buk" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 4},/turf/simulated/floor/plating,/area/tcommsat/computer) +"bul" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/tcommsat/computer) +"bum" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/tcommsat/computer) +"bun" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1381; icon_state = "door_locked"; id_tag = "server_access_inner"; locked = 1; name = "Telecoms Server Access"; req_access = list(61)},/turf/simulated/floor/plating,/area/tcommsat/computer) +"buo" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/aft) +"bup" = (/obj/random/trash,/turf/simulated/floor,/area/maintenance/aft) +"buq" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/aft) +"bur" = (/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/aft) +"bus" = (/obj/structure/table/steel,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/screwdriver,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/maintroom5) +"but" = (/obj/machinery/optable{name = "Robotics Operating Table"},/obj/item/weapon/bone/ribs,/obj/item/weapon/handcuffs/legcuffs,/obj/item/weapon/handcuffs,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/maintroom5) +"buu" = (/obj/structure/table/steel,/obj/machinery/vending/wallmed1{emagged = 1; pixel_y = 32; shut_up = 0},/obj/item/weapon/tool/wirecutters,/obj/item/weapon/tool/wrench,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/maintroom5) +"buv" = (/obj/random/obstruction,/turf/simulated/floor,/area/vacant/vacant_site/locker) +"buw" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bux" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) +"buy" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera/network/engineering{c_tag = "Atmos Tank - Air"; dir = 4},/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos) +"buz" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos) +"buA" = (/obj/machinery/air_sensor{frequency = 1443; id_tag = "air_sensor"; output = 7},/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos) +"buB" = (/turf/simulated/floor,/area/engineering/atmos) +"buC" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"buD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1443; input_tag = "air_in"; name = "Mixed Air Supply Control"; output_tag = "air_out"; pressure_setting = 2000; sensors = list("air_sensor" = "Tank")},/obj/effect/floor_decal/corner/white{icon_state = "corner_white"; dir = 1},/obj/effect/floor_decal/corner/blue{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buE" = (/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Air Tank Bypass Pump"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buF" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos) +"buG" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buH" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled,/area/engineering/atmos) +"buI" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buJ" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buK" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buL" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buM" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 1},/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/tiled,/area/engineering/atmos) +"buN" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos) +"buO" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4; initialize_directions = 11},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buP" = (/obj/effect/decal/cleanable/blood/oil{name = "oil"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buQ" = (/obj/machinery/pipedispenser/disposal,/obj/structure/window/reinforced,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buR" = (/obj/structure/table/standard,/obj/item/clothing/glasses/welding,/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"buS" = (/obj/effect/decal/cleanable/liquid_fuel,/obj/effect/decal/cleanable/blood/oil{name = "oil"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"buT" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor,/area/engineering/hallway_lower) +"buU" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/powercontrol) +"buV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/powercontrol) +"buW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/powercontrol) +"buX" = (/obj/machinery/door/airlock/maintenance/engi{name = "Telecomms Substation"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/tcommsat/powercontrol) +"buY" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"buZ" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bva" = (/turf/simulated/wall/r_wall,/area/tcommsat/chamber) +"bvb" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvc" = (/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvd" = (/obj/machinery/light{dir = 1},/obj/machinery/camera/network/telecom{c_tag = "Telecoms Central Compartment North"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bve" = (/obj/machinery/airlock_sensor/airlock_interior{frequency = 1381; id_tag = "server_access_in_sensor"; master_tag = "server_access_airlock"; name = "interior sensor"; pixel_x = 8; pixel_y = 25},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvf" = (/obj/machinery/airlock_sensor/airlock_interior{frequency = 1381; id_tag = "server_access_in_sensor"; name = "interior sensor"; pixel_y = 25},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 32},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvg" = (/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvh" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/aft) +"bvi" = (/obj/structure/table/steel,/obj/item/weapon/tape_roll,/obj/item/stack/medical/bruise_pack,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/maintroom5) +"bvj" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/maintroom5) +"bvk" = (/obj/structure/table/steel,/obj/item/stack/medical/splint/ghetto,/obj/random/technology_scanner,/turf/simulated/floor/tiled/techfloor,/area/maintenance/maintroom5) +"bvl" = (/turf/simulated/mineral/cave,/area/vacant/vacant_site/locker) +"bvm" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/maintenance/aft) +"bvn" = (/obj/structure/stairs/east,/turf/simulated/floor/plating,/area/maintenance/aft) +"bvo" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1443; icon_state = "map_vent_in"; id_tag = "air_out"; internal_pressure_bound = 2000; internal_pressure_bound_default = 2000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos) +"bvp" = (/obj/structure/grille,/obj/machinery/meter{frequency = 1443; id = "mair_out_meter"; name = "Mixed Air Tank Out"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/turf/simulated/wall/r_wall,/area/engineering/atmos) +"bvq" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bvr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/valve/digital/open{dir = 4; name = "Mixed Air Outlet Valve"},/obj/effect/floor_decal/corner/white/diagonal,/obj/effect/floor_decal/corner/blue{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvs" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvt" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvu" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvv" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvw" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvx" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvy" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvz" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvA" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvB" = (/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvC" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvD" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 36; pixel_y = 0},/obj/machinery/power/apc/super{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bvE" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/hallway_lower) +"bvF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/tcommsat/powercontrol) +"bvG" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/tcommsat/powercontrol) +"bvH" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/tcommsat/powercontrol) +"bvI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall,/area/tcommsat/powercontrol) +"bvJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall,/area/tcommsat/entrance) +"bvK" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/tcommsat/entrance) +"bvL" = (/obj/machinery/door/airlock/glass{name = "Telecomms Storage"; req_access = list(61); req_one_access = newlist()},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bvM" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 32},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvN" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvQ" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/crew_quarters/fitness) +"bvR" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvS" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bvT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bvU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bvV" = (/obj/structure/table/steel,/obj/random/medical/pillbottle,/obj/machinery/light/small{dir = 8},/obj/random/tech_supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/maintroom5) +"bvW" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/maintroom5) +"bvY" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom5) +"bvZ" = (/obj/structure/table/steel,/obj/random/medical/lite,/turf/simulated/floor/tiled/techfloor,/area/maintenance/maintroom5) +"bwa" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/remains/robot,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site/locker) +"bwb" = (/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/soap,/obj/random/drinkbottle,/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bwc" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/aft) +"bwd" = (/obj/structure/lattice,/turf/simulated/floor,/area/engineering/atmos) +"bwe" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 5},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bwf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Air Mix to Connector"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwg" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwh" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 8},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwi" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwj" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwk" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwl" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwm" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwn" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwo" = (/obj/machinery/atmospherics/binary/pump/on{dir = 4; name = "Air to Ports"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwp" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bws" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bwt" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4; icon_state = "intact"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bwu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4; icon_state = "intact"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bwv" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 9},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bww" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/hallway_lower) +"bwx" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/techmaint,/area/engineering/hallway_lower) +"bwy" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Telecomms Substation Bypass"},/turf/simulated/floor/plating,/area/tcommsat/powercontrol) +"bwz" = (/obj/machinery/power/smes/buildable{charge = 100000; RCon_tag = "Substation - Telecomms"},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/plating,/area/tcommsat/powercontrol) +"bwA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tcommsat/powercontrol) +"bwB" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/turf/simulated/floor,/area/tcomstorage) +"bwC" = (/obj/machinery/camera/network/telecom{c_tag = "Telecoms Storage"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/tcomstorage) +"bwD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/tcomstorage) +"bwE" = (/obj/structure/table/rack,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/receiver,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/broadcaster,/obj/item/weapon/circuitboard/telecomms/exonet_node,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/tcomstorage) +"bwF" = (/turf/simulated/wall/r_wall,/area/tcomstorage) +"bwG" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bwH" = (/turf/simulated/wall/r_wall,/area/maintenance/aft) +"bwI" = (/obj/machinery/pros_fabricator{desc = "A machine used for construction of legit prosthetics. You weren't sure if cardboard was considered an engineering material until now."; dir = 4; emagged = 0; mat_efficiency = 0.9; name = "Legitimate Prosthetics Fabricator"; res_max_amount = 150000; speed = 0.2},/turf/simulated/floor/plating,/area/maintenance/maintroom5) +"bwJ" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/maintenance/maintroom5) +"bwK" = (/obj/structure/closet/crate/freezer,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintroom5) +"bwL" = (/obj/structure/table/steel,/obj/item/device/nif/bad,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/maintroom5) +"bwM" = (/obj/machinery/vending/assist,/turf/simulated/floor/plating,/area/maintenance/maintroom5) +"bwN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bwO" = (/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos) +"bwP" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; icon_state = "map_injector"; id = "o2_in"; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos) +"bwQ" = (/obj/structure/grille,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/engineering/atmos) +"bwR" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/structure/lattice,/turf/simulated/floor,/area/engineering/atmos) +"bwS" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bwT" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/blue/full{dir = 8},/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Port"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwU" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwV" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 0; tag_north = 2; tag_south = 1; tag_west = 3; use_power = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwW" = (/obj/structure/dispenser,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwX" = (/turf/simulated/wall,/area/engineering/atmos) +"bwY" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bwZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxa" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxb" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Ports to Waste"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxc" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxd" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxf" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bxg" = (/obj/structure/catwalk,/obj/machinery/camera/autoname{dir = 4},/turf/simulated/floor/plating,/area/hallway/lower/central) +"bxh" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bxi" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bxj" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/engineering/hallway_lower) +"bxk" = (/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/techmaint,/area/engineering/hallway_lower) +"bxl" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Telecomms Subgrid"; name_tag = "Telecomms Subgrid"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/tcommsat/powercontrol) +"bxm" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/tcommsat/powercontrol) +"bxn" = (/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,/area/tcomstorage) +"bxo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/tcomstorage) +"bxp" = (/turf/simulated/floor,/area/tcomstorage) +"bxq" = (/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,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor,/area/tcomstorage) +"bxr" = (/obj/machinery/telecomms/server/presets/supply,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bxs" = (/obj/machinery/telecomms/server/presets/service/cryogaia,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bxt" = (/obj/machinery/telecomms/server/presets/unused,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bxu" = (/obj/machinery/telecomms/relay/preset/cryogaia/basement_2,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bxv" = (/obj/machinery/telecomms/server/presets/common,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bxw" = (/obj/machinery/telecomms/server/presets/engineering,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bxx" = (/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bxy" = (/obj/structure/janitorialcart,/turf/simulated/floor/tiled/dark,/area/maintenance/aft) +"bxz" = (/turf/simulated/floor/tiled/dark,/area/maintenance/aft) +"bxA" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/aft) +"bxB" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bxC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bxD" = (/obj/structure/table/standard,/obj/item/device/binoculars/spyglass,/turf/simulated/floor/plating,/area/maintenance/aft) +"bxE" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera/network/engineering{c_tag = "Atmos Tank - Oxygen"; dir = 4},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos) +"bxF" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos) +"bxG" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "o2_sensor"},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos) +"bxH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "o2_in"; name = "Oxygen Supply Control"; output_tag = "o2_out"; sensors = list("o2_sensor" = "Tank")},/obj/effect/floor_decal/corner/blue{dir = 9},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxI" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxJ" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxK" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/binary/pump{dir = 4; name = "O2 to Mixing"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxL" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxM" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxN" = (/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxO" = (/obj/structure/frame,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxP" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxQ" = (/obj/machinery/atmospherics/binary/pump{dir = 1; name = "Port to Waste"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxR" = (/obj/structure/window/reinforced,/obj/structure/closet/firecloset,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxS" = (/obj/structure/window/reinforced,/obj/structure/closet/firecloset,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bxT" = (/obj/machinery/door/airlock/maintenance/engi{name = "Atmospherics Access"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/engineering/hallway_lower) +"bxU" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/tcommsat/powercontrol) +"bxV" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/tcomstorage) +"bxW" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/tcomstorage) +"bxX" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29; pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/tcomstorage) +"bxY" = (/obj/machinery/exonet_node{anchored = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bxZ" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/maintenance/aft) +"bya" = (/obj/random/maintenance/clean,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/aft) +"byb" = (/obj/structure/table/rack,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/aft) +"byc" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft) +"byd" = (/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bye" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "o2_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos) +"byf" = (/obj/structure/grille,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/engineering/atmos) +"byg" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 4},/obj/structure/lattice,/turf/simulated/floor,/area/engineering/atmos) +"byh" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"byi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/valve/digital/open{dir = 4; name = "Oxygen Outlet Valve"},/obj/effect/floor_decal/corner/blue/full,/turf/simulated/floor/tiled,/area/engineering/atmos) +"byj" = (/obj/machinery/atmospherics/pipe/manifold/visible/green,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"byk" = (/obj/machinery/atmospherics/omni/mixer{active_power_usage = 7500; tag_east = 0; tag_east_con = null; tag_north = 2; tag_north_con = null; tag_south = 1; tag_south_con = 0.79; tag_west = 1; tag_west_con = 0.21; use_power = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byl" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bym" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos) +"byn" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"byo" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{icon_state = "map"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byp" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos) +"byq" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byr" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bys" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byt" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byu" = (/turf/simulated/wall/r_wall,/area/mine/explored/lower_rock) +"byv" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/maintenance/aft) +"byw" = (/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor,/area/tcomstorage) +"byx" = (/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,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/tcomstorage) +"byy" = (/obj/structure/sign/nosmoking_2{pixel_x = -32; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byz" = (/obj/machinery/telecomms/processor/preset_two,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byA" = (/obj/machinery/telecomms/bus/preset_two/cryogaia,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byB" = (/obj/machinery/telecomms/relay/preset/telecomms,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byC" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byD" = (/obj/machinery/telecomms/hub/preset/cryogaia,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byE" = (/obj/machinery/telecomms/receiver/preset_right/cryogaia,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byF" = (/obj/machinery/telecomms/relay/preset/cryogaia/main,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byG" = (/obj/machinery/telecomms/bus/preset_four,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byH" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byI" = (/obj/structure/sign/nosmoking_2{pixel_x = 32; pixel_y = 0},/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byJ" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/engineering,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/aft) +"byK" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5; icon_state = "intact"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"byL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/binary/pump{dir = 4; name = "O2 to Connector"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byM" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byN" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/binary/pump{dir = 4; name = "N2 to Mixing"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byO" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byP" = (/obj/machinery/atmospherics/tvalve/digital/mirrored{name = "Waste to Space"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byQ" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 10},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"byR" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos) +"byS" = (/obj/machinery/atmospherics/valve/digital,/turf/simulated/floor/tiled,/area/engineering/atmos) +"byT" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byU" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/camera/network/engineering{c_tag = "Medical substation"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos) +"byV" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/turf/simulated/floor,/area/tcomstorage) +"byW" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/turf/simulated/floor,/area/tcomstorage) +"byX" = (/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,/area/tcomstorage) +"byY" = (/obj/machinery/telecomms/bus/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"byZ" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bza" = (/obj/machinery/telecomms/relay/preset/cryogaia/basement_1,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzb" = (/obj/machinery/telecomms/processor/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzc" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzd" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/maintenance/aft) +"bze" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/aft) +"bzf" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/aft) +"bzg" = (/obj/effect/floor_decal/rust,/obj/random/junk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bzh" = (/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos) +"bzi" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; icon_state = "map_injector"; id = "n2_in"; use_power = 1},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos) +"bzj" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/red/full{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzk" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzl" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 1; tag_north = 2; tag_south = 5; tag_west = 4; use_power = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzm" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzn" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzo" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzp" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzq" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzr" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 1},/turf/simulated/wall/r_wall,/area/engineering/atmos) +"bzs" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/aft) +"bzt" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/aft) +"bzu" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/plushie/beepsky,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/aft) +"bzv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/aft) +"bzw" = (/obj/item/tape/atmos,/obj/machinery/door/airlock/maintenance{req_access = list(12)},/turf/simulated/floor,/area/maintenance/aft) +"bzx" = (/obj/random/obstruction,/turf/simulated/floor,/area/maintenance/aft) +"bzy" = (/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/turf/simulated/floor,/area/maintenance/aft) +"bzz" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor,/area/maintenance/aft) +"bzA" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera/network/engineering{c_tag = "Atmos Tank - Nitrogen"; dir = 4},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos) +"bzB" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos) +"bzC" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2_sensor"},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos) +"bzD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "n2_in"; name = "Nitrogen Supply Control"; output_tag = "n2_out"; sensors = list("n2_sensor" = "Tank")},/obj/effect/floor_decal/corner/red{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzE" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzF" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 1; tag_north = 0; tag_south = 6; tag_west = 2; use_power = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzG" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 0; tag_north = 1; tag_south = 7; tag_west = 2; use_power = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzH" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzI" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bzJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5; icon_state = "intact"},/turf/simulated/wall/r_wall,/area/engineering/atmos) +"bzK" = (/obj/machinery/telecomms/server/presets/science,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzL" = (/obj/machinery/telecomms/server/presets/medical,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzM" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzN" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzO" = (/obj/machinery/pda_multicaster/prebuilt,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzP" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzR" = (/obj/machinery/telecomms/server/presets/command,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzS" = (/obj/machinery/telecomms/server/presets/security,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bzT" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/aft) +"bzU" = (/obj/effect/decal/cleanable/blood/oil,/obj/item/trash/tastybread,/turf/simulated/floor/plating,/area/maintenance/aft) +"bzV" = (/obj/item/seeds/poppyseed,/obj/item/seeds/poppyseed,/obj/item/seeds/poppyseed,/turf/simulated/floor,/area/maintenance/aft) +"bzW" = (/obj/item/weapon/plantspray/pests,/turf/simulated/floor,/area/maintenance/aft) +"bzX" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/aft) +"bzY" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "n2_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos) +"bzZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/valve/digital/open{dir = 4; name = "Nitrogen Outlet Valve"},/obj/effect/floor_decal/corner/red/full,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAa" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9; icon_state = "intact"},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAb" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAc" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAd" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 10; icon_state = "intact"},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAe" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAf" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAg" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; use_power = 1; pressure_checks = 0; pressure_checks_default = 0},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bAh" = (/obj/machinery/light,/obj/machinery/camera/network/telecom{c_tag = "Telecoms Central Compartment South"; dir = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bAi" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; use_power = 1; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bAj" = (/obj/structure/sign/poster,/turf/simulated/wall,/area/maintenance/aft) +"bAk" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/aft) +"bAl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/aft) +"bAm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/aft) +"bAn" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor,/area/maintenance/aft) +"bAo" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/aft) +"bAp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/binary/pump{dir = 4; name = "N2 to Connector"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAq" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAr" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/atmos,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAt" = (/obj/machinery/portable_atmospherics/canister/empty/phoron,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"bAu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor,/area/maintenance/aft) +"bAv" = (/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bAw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bAx" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAz" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 10},/obj/effect/floor_decal/corner/black/full,/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Aft Port"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAA" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "co2_in"; name = "Carbon Dioxide Supply Control"; output_tag = "co2_out"; sensors = list("co2_sensor" = "Tank")},/obj/effect/floor_decal/corner/black{dir = 10},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAB" = (/obj/effect/floor_decal/corner/black/full{dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 1; name = "CO2 to Mixing"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAC" = (/obj/machinery/atmospherics/binary/pump{dir = 1; name = "CO2 to Connector"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAD" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/floor_decal/corner/orange/full,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAE" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "tox_in"; name = "Phoron Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor" = "Tank")},/obj/effect/floor_decal/corner/orange{dir = 10},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAF" = (/obj/effect/floor_decal/corner/orange/full{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAG" = (/obj/machinery/atmospherics/binary/pump{dir = 1; name = "Phoron to Connector"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAH" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/red/diagonal,/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Aft Starboard"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAI" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank")},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/red,/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAJ" = (/obj/effect/floor_decal/corner/white/diagonal{icon_state = "corner_white_diagonal"; dir = 4},/obj/effect/floor_decal/corner/red,/obj/machinery/atmospherics/binary/pump{dir = 1; name = "N2O to Transit"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAK" = (/obj/machinery/atmospherics/binary/pump{dir = 1; name = "N2O to Connector"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAL" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bAN" = (/obj/effect/floor_decal/rust,/obj/random/junk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/aft) +"bAO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/aft) +"bAP" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/aft) +"bAQ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/aft) +"bAR" = (/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bAS" = (/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bAT" = (/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bAU" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bAV" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bAW" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9; icon_state = "intact"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bAX" = (/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 6},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bAY" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9; icon_state = "intact"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos) +"bAZ" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/aft) +"bBa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/maintenance/aft) +"bBb" = (/obj/structure/sign/poster,/turf/simulated/wall/r_wall,/area/maintenance/aft) +"bBc" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/aft) +"bBd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/aft) +"bBf" = (/obj/machinery/door/airlock/maintenance{req_access = list(12)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/maintenance/aft) +"bBg" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/structure/lattice,/turf/simulated/floor,/area/engineering/atmos) +"bBh" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) +"bBi" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/lattice,/turf/simulated/floor,/area/engineering/atmos) +"bBj" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 9},/turf/simulated/floor,/area/engineering/atmos) +"bBk" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/lattice,/turf/simulated/floor,/area/engineering/atmos) +"bBl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/aft) +"bBm" = (/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/aft) +"bBn" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/aft) +"bBo" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/aft) +"bBp" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/aft) +"bBq" = (/obj/structure/grille,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/wall/r_wall,/area/engineering/atmos) +"bBr" = (/turf/simulated/wall,/area/rnd/storage) +"bBs" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/rnd/storage) +"bBt" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/aft) +"bBu" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1441; icon_state = "map_injector"; id = "co2_in"; use_power = 1; pixel_y = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos) +"bBv" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "co2_sensor"},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos) +"bBw" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "co2_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; use_power = 1; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos) +"bBx" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1441; icon_state = "map_injector"; id = "tox_in"; use_power = 1; pixel_y = 1},/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos) +"bBy" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "tox_sensor"},/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos) +"bBz" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "tox_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; use_power = 1; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0},/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos) +"bBA" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1441; icon_state = "map_injector"; id = "n2o_in"; use_power = 1; pixel_y = 1},/turf/simulated/floor/reinforced/n20,/area/engineering/atmos) +"bBB" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2o_sensor"},/turf/simulated/floor/reinforced/n20,/area/engineering/atmos) +"bBC" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "n2o_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; use_power = 1; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0},/turf/simulated/floor/reinforced/n20,/area/engineering/atmos) +"bBD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bBE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/rust,/obj/machinery/light_switch{pixel_y = 25},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bBF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/closet/firecloset,/obj/item/weapon/handcuffs,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bBG" = (/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bBH" = (/turf/simulated/mineral/cave,/area/rnd/lab) +"bBI" = (/turf/simulated/wall/r_wall,/area/rnd/lab) +"bBJ" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled,/area/rnd/lab) +"bBK" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/rnd/lab) +"bBL" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/rnd/lab) +"bBT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bBU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bBV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bBW" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bBX" = (/turf/simulated/floor/tiled,/area/rnd/lab) +"bBY" = (/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bBZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCd" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCf" = (/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCg" = (/obj/structure/table/steel,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCh" = (/obj/structure/frame,/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCi" = (/turf/simulated/wall,/area/rnd/lab) +"bCj" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCk" = (/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCl" = (/obj/structure/coatrack,/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCm" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCn" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCo" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCp" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCq" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCr" = (/obj/structure/table/steel,/obj/item/weapon/locator,/obj/effect/floor_decal/rust,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCs" = (/obj/structure/table/standard,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bCt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/lab) +"bCu" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCv" = (/obj/effect/floor_decal/rust,/obj/structure/closet/wardrobe/robotics_black,/obj/random/maintenance/research,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCw" = (/obj/effect/floor_decal/rust,/obj/structure/bed,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCx" = (/obj/effect/floor_decal/rust,/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCy" = (/obj/structure/table/steel,/obj/item/weapon/implantcase/chem,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/storage) +"bCz" = (/obj/structure/table/standard,/obj/structure/table/standard,/obj/item/stack/cable_coil,/obj/item/device/multitool,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/reinforced,/area/rnd/lab) +"bCA" = (/obj/structure/table/standard,/obj/item/device/assembly/igniter,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bCB" = (/obj/machinery/door/airlock/glass_science{name = "Nanite Laboratory"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCC" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCE" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCF" = (/obj/machinery/door/airlock/glass_science{name = "Nanite Laboratory"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCG" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCH" = (/obj/structure/bookcase,/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCI" = (/obj/structure/bookcase/manuals/research_and_development,/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCJ" = (/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 5},/obj/effect/floor_decal/corner/purple{dir = 9},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCK" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/table/reinforced,/obj/item/clothing/mask/gas,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCL" = (/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 10},/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCN" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/wrench,/obj/effect/floor_decal/industrial/outline/red,/obj/item/clothing/glasses/science,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCO" = (/obj/structure/table/reinforced,/obj/machinery/button/ignition{id = "Xenobio"; pixel_x = -6; pixel_y = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCP" = (/obj/machinery/computer/security/telescreen{desc = "Used to monitor the proceedings inside the test chamber."; name = "Test Chamber Monitor"; network = list("Miscellaneous Reseach"); pixel_x = 32; pixel_y = 0},/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/purple,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCQ" = (/obj/structure/closet/toolcloset,/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCR" = (/obj/machinery/shieldwallgen{anchored = 1; req_access = list(47)},/obj/effect/floor_decal/corner/purple/full,/obj/structure/cable/green,/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCS" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/rnd/lab) +"bCT" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/rnd/lab) +"bCU" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/machinery/door/window/southleft{dir = 1; name = "Test Chamber"; req_one_access = list(7,29)},/obj/machinery/door/window/southleft{name = "Test Chamber"; req_one_access = list(7,29)},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCV" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/machinery/door/window/southright{dir = 1; name = "Test Chamber"; req_one_access = list(7,29)},/obj/machinery/door/window/southright{name = "Test Chamber"; req_one_access = list(7,29)},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCW" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable,/turf/simulated/floor/plating,/area/rnd/lab) +"bCX" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/rnd/lab) +"bCY" = (/obj/machinery/shieldwallgen{anchored = 1; req_access = list(47)},/obj/effect/floor_decal/corner/purple/full{dir = 4},/obj/structure/cable,/turf/simulated/floor/tiled/white,/area/rnd/lab) +"bCZ" = (/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDa" = (/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDb" = (/obj/structure/frame,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDc" = (/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDd" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1441; icon_state = "map_injector"; id = "n2_in"; use_power = 1},/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDe" = (/obj/machinery/light,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDf" = (/obj/item/device/radio/intercom{layer = 4; name = "Station Intercom (General)"; pixel_y = -27},/obj/machinery/camera/network/research{c_tag = "Research - Miscellaneous Test Chamber"; dir = 1; network = list("Research","Miscellaneous Reseach")},/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDg" = (/obj/machinery/door/airlock/highsecurity{name = "High Security-Grey Tempest"},/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDh" = (/obj/structure/particle_accelerator/end_cap,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDi" = (/obj/structure/particle_accelerator/fuel_chamber,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDj" = (/obj/structure/particle_accelerator/power_box,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDk" = (/obj/structure/particle_accelerator/particle_emitter/left,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDl" = (/obj/structure/particle_accelerator/particle_emitter/center,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDm" = (/obj/structure/particle_accelerator/particle_emitter/right,/turf/simulated/floor/reinforced,/area/rnd/lab) +"bDn" = (/turf/simulated/mineral/floor,/area/mine/explored/lower_rock) +"bDo" = (/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_l"},/turf/simulated/mineral/floor,/area/mine/explored/lower_rock) +"bDp" = (/turf/simulated/shuttle/wall,/area/mine/explored/lower_rock) +"bDq" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "large_escape_pod_1_hatch"; locked = 1; name = "Large Escape Pod Hatch 1"; req_access = list(13)},/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDr" = (/obj/structure/sign/redcross,/turf/simulated/shuttle/wall,/area/mine/explored/lower_rock) +"bDs" = (/obj/effect/decal/cleanable/blood/drip,/turf/simulated/mineral/floor,/area/mine/explored/lower_rock) +"bDt" = (/obj/structure/shuttle/engine/heater{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/airless,/area/mine/explored/lower_rock) +"bDu" = (/obj/machinery/atmospherics/unary/cryo_cell{layer = 3.3},/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/cleanable/cobweb,/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDv" = (/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDw" = (/obj/structure/bed/roller,/obj/effect/decal/cleanable/blood/oil,/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDx" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "large_escape_pod_1"; pixel_x = -26; pixel_y = 26; tag_door = "large_escape_pod_1_hatch"},/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDy" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDz" = (/obj/structure/bed/chair,/obj/machinery/vending/wallmed1{layer = 3.3; name = "Emergency NanoMed"; pixel_x = 28; pixel_y = 0},/obj/structure/closet/walllocker/emerglocker{pixel_x = 0; pixel_y = 32},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDA" = (/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/mineral/floor,/area/mine/explored/lower_rock) +"bDB" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDC" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDD" = (/obj/structure/grille/broken,/turf/simulated/shuttle/plating,/area/mine/explored/lower_rock) +"bDE" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDF" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4; pixel_y = 0},/obj/item/weapon/tool/wrench,/obj/random/medical/lite,/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDG" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular{pixel_x = -2; pixel_y = 4},/obj/item/weapon/storage/firstaid/regular{pixel_x = -2; pixel_y = 4},/obj/item/bodybag/cryobag{pixel_x = 5},/obj/item/bodybag/cryobag{pixel_x = 5},/obj/item/weapon/storage/firstaid/o2{layer = 2.8; pixel_x = 4; pixel_y = 6},/obj/item/weapon/storage/box/masks{pixel_x = 0; pixel_y = 0},/obj/item/weapon/storage/box/gloves{pixel_x = 3; pixel_y = 4},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/fire{layer = 2.9; pixel_x = 2; pixel_y = 3},/obj/item/weapon/storage/firstaid/adv{pixel_x = -2},/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = -32},/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDH" = (/obj/machinery/sleeper{dir = 8},/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDI" = (/obj/machinery/sleep_console,/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDJ" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/light,/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDK" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/shuttle/floor,/area/mine/explored/lower_rock) +"bDL" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/mineral/floor,/area/mine/explored/lower_rock) +"bDM" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/mineral/floor,/area/mine/explored/lower_rock) +"bDN" = (/obj/effect/decal/cleanable/blood/drip,/obj/effect/decal/remains,/turf/simulated/mineral/floor,/area/mine/explored/lower_rock) +"bDO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"bDP" = (/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access = list(28)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/grass,/area/hydroponics) +"bDQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bDR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/computer/guestpass{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bDS" = (/obj/machinery/ntnet_relay,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bDT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/hallway_lower) +"bDU" = (/obj/machinery/camera/motion{dir = 4},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"bDV" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bDW" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/entrance) +"bDX" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) +"bDY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/loadout/gadget,/obj/machinery/camera/network/civilian{c_tag = "Sublevel 1 Elevator"; dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bDZ" = (/obj/structure/catwalk,/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"bEa" = (/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bEb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) +"bEc" = (/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) +"bEe" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/maintenance/medical_lower) +"bEg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{id_tag = "dorm9"; name = "Room 9"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/Dorm_9) +"bEh" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/simulated/floor/plating,/area/mine/explored/lower_rock) +"bEi" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Lower Civilian"},/turf/simulated/floor,/area/maintenance/substation/civilian_lower) +"bEj" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/camera/network/engineering{c_tag = "Toxins Substation"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bEk" = (/obj/structure/sign/coffee_shop_library,/turf/simulated/wall,/area/crew_quarters/coffee_shop) +"bEl" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/newscaster{layer = 3.3; pixel_x = 0; pixel_y = -27},/turf/simulated/floor/carpet,/area/library) +"bEm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/atmos_control) +"bEn" = (/obj/machinery/telecomms/relay/preset/cryogaia/residential,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bEo" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bEp" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bEq" = (/obj/structure/closet/crate,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/maintenance/clean,/obj/random/toy,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/maintenance/dormitory) +"bEr" = (/obj/structure/table/woodentable,/obj/item/weapon/tape_roll,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bEs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bEt" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bEu" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bEv" = (/obj/structure/table/woodentable,/obj/item/weapon/book/codex/lore/vir,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bEw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bEx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bEy" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/dormitory) +"bEz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/dormitory) +"bEA" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bEB" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bEC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/library_conference_room) +"bED" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_one_access = list(12,37)},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/library_conference_room) +"bEE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable,/obj/structure/cable{icon_state = "16-0"},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 8},/turf/simulated/floor,/area/maintenance/atmos_control) +"bEF" = (/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/atmos_control) +"bEG" = (/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/atmos_control) +"bEH" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/machinery/light,/turf/simulated/floor/grass,/area/hydroponics) +"bEI" = (/obj/machinery/smartfridge/plantvator/down,/turf/simulated/floor/tiled/white,/area/hydroponics) +"bEJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/hydroponics) +"bEK" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bEL" = (/mob/living/simple_mob/animal/passive/fish/bass,/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bEM" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/machinery/camera/network/civilian,/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bEN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/hydroponics) +"bEO" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"bEP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/hydroponics) +"bEQ" = (/obj/structure/table/rack,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/fish_farm) +"bER" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"bES" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bET" = (/obj/structure/railing,/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bEU" = (/obj/structure/railing,/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bEV" = (/obj/structure/table/rack,/obj/item/stack/cable_coil/pink,/obj/item/stack/cable_coil/pink,/obj/item/stack/cable_coil/pink,/obj/item/stack/cable_coil/pink,/obj/item/stack/cable_coil/pink,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/fish_farm) +"bEW" = (/turf/simulated/mineral/cave,/area/crew_quarters/kitchen/fish_farm) +"bEX" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bEY" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bEZ" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bFa" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"bFb" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"bFc" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"bFd" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/mob/living/simple_mob/animal/passive/fish/salmon,/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bFe" = (/turf/simulated/wall,/area/crew_quarters/kitchen/fish_farm) +"bFf" = (/mob/living/simple_mob/animal/passive/fish/salmon,/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bFg" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/machinery/camera/network/civilian{icon_state = "camera"; dir = 10},/turf/simulated/floor/water/deep/indoors,/area/crew_quarters/kitchen/fish_farm) +"bFh" = (/obj/machinery/floodlight,/turf/simulated/floor/beach/sand/desert,/area/crew_quarters/kitchen/fish_farm) +"bFi" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled/white,/area/hydroponics) +"bFj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"bFk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"bFl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"bFm" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/corner/green/full{dir = 8},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFn" = (/obj/machinery/biogenerator,/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFo" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFp" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/green{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFq" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/hydroponics) +"bFr" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/turf/simulated/floor,/area/vacant/vacant_site/locker) +"bFs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/aft) +"bFt" = (/obj/structure/table/rack,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/fish_farm) +"bFu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/fish_farm) +"bFv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFw" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"bFy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"bFz" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/fish_farm) +"bFA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/medical_lower) +"bFB" = (/obj/effect/floor_decal/corner/green{dir = 8},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFC" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/green/full,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFD" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light,/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFE" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/light,/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/fish_farm) +"bFG" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_y = 0},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/fish_farm) +"bFH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFI" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFL" = (/obj/effect/landmark/start{name = "Gardener"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFM" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/fish_farm) +"bFN" = (/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access = list(28)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"bFO" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFR" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/solution_tray,/obj/item/weapon/reagent_containers/glass/solution_tray,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/hydroponics) +"bFS" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass{name = "Plant-Chemical Lab"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFW" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/plating,/area/crew_quarters/kitchen/fish_farm) +"bFX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bFY" = (/turf/simulated/floor,/area/crew_quarters/kitchen/fish_farm) +"bFZ" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/green/full{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bGa" = (/obj/item/seeds/tomatoseed,/turf/simulated/floor/grass,/area/hydroponics) +"bGb" = (/obj/structure/table/standard,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/westright{req_one_access = list(35,28)},/turf/simulated/floor/tiled,/area/hydroponics) +"bGh" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/green{dir = 6},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bGi" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/papershredder,/turf/simulated/floor/tiled/white,/area/hydroponics) +"bGj" = (/obj/structure/stairs/west,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"bGk" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen/lower) +"bGl" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light_switch{dir = 1; pixel_x = 4; pixel_y = -24},/turf/simulated/floor/tiled/hydro,/area/hydroponics) +"bGm" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{dir = 1; pixel_x = 4; pixel_y = -24},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/fish_farm) +"bGn" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen/lower) +"bGo" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"bGp" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway_lower) +"gTr" = (/obj/effect/floor_decal/corner/beige{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"mbM" = (/obj/structure/table/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/fore) (1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -aac -bDo -aac -bDA -bDA -aac -bDn -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDp -bDt -bDt -bDt -bDp -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDp -bDu -bDB -bDE -bDL -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -bDv -bDv -bDF -bDn -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDp -bDw -bDv -bDG -bDp -aac -bDn -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -bDq -bDx -bDv -bDH -bDp -aac -bDn -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -bDq -bDv -bDv -bDI -bDp -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -bDr -bDy -bDv -bDJ -bDr -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -bDv -bDv -bDK -bDp -bDn -bDn -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDp -bDz -bDv -bDv -bDM -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDs -bDp -bDC -bDp -bDp -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDp -bDD -bDp -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -aac -bDn -aac -bDs -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -bDn -bDs -aac -aac -bDn -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -aac -bDn -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -bDn -aac -aac -bDs -bDn -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDn -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -bDN -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(72,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(73,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(75,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -adX -adI -adX -ajc -adI -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(76,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -adX -adX -adX -ahn -adI -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(77,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -ahl -afe -afe -afe -adI -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(78,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -adX -adX -afe -afe -aiu -adX -adX -adX -aan -aan -aan -aan -aan -adI -adI -adI -adI -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(79,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aae -aac -aac -adX -afe -afe -afe -afe -afe -afe -adX -aan -aan -aan -aan -aan -aoF -adI -adX -adX -adX -adX -adX -adX -adX -adI -adI -adI -adI -adI -adI -adI -adI -adI -adI -adI -adI -adI -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(80,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -adX -adX -adX -afe -afe -adX -afe -adX -aan -aan -aan -aan -aan -adI -api -aqn -arp -ahn -ahn -ahn -avb -adX -adX -adX -adX -adX -adX -adX -adX -adX -adX -adX -adI -adI -adI -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(81,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -agr -agN -adX -afe -aiv -adX -afe -adX -aan -aan -aan -aan -aan -adI -adX -adX -adX -adX -ahn -ahn -ahn -avQ -ahn -ayl -ahn -aAq -arp -ahn -ahn -ajO -ahn -adX -adI -adI -adI -aan -aan -aan -aan -adX -adX -adX -adX -adX -adX -adX -adX -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(82,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -adX -adX -adX -adX -adX -adX -ags -agO -adX -afe -adX -adX -afe -adX -aan -aan -aan -aan -aan -adI -adI -adI -adI -adX -adX -adX -adX -adX -adX -adX -adX -adX -adX -adX -adX -avQ -ahn -aiw -adI -adI -adI -aan -aan -aan -aan -adX -afe -afe -afe -ajO -afe -afe -adX -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(83,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -adX -aer -aeZ -aft -afQ -afY -agt -agP -adX -afe -afe -afe -afe -adX -aan -aan -aan -aan -aan -adI -adI -adI -adI -adI -adI -adI -akT -akT -akT -akT -akT -akT -akT -akT -adX -adX -ahn -ahn -aFp -afe -aFp -adX -adX -adI -adI -adX -afe -afe -aLt -afe -afe -afe -adX -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(84,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -adX -aes -afa -afb -afa -afv -agu -agQ -adX -adX -aiw -afe -ajO -adX -aan -aan -aan -aan -aan -adI -adI -adI -adI -adI -adI -adI -akT -akT -akT -akT -akT -akT -akT -akT -akT -adX -adX -aEB -afe -aFp -aFp -afe -adX -adI -adI -adX -afe -aKW -afe -afe -afe -afe -adX -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -adX -aet -afa -afu -afd -afZ -adX -agP -ahm -adX -adX -adX -afe -adX -adX -adX -aan -aan -aan -aoF -adI -adI -adI -adI -adI -adI -akT -akT -akT -akT -akT -akT -akT -akT -akT -akT -adX -adX -adX -adX -aFp -ahp -afe -adX -adI -adX -afe -afe -ajO -afe -afe -afe -adX -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(86,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -baR -baR -baR -baR -baR -baR -baR -baR -baR -aan -aan -aan -aan -adX -aeu -afb -afv -adX -adX -adX -agP -ahn -ahT -aix -ajd -ahn -akt -akR -adX -adX -adI -adI -aoF -adI -adI -adI -adI -adI -adI -ajO -afe -akT -akT -adX -adX -afe -aBy -ana -ana -ana -ana -aFq -ana -ana -anR -ana -aIx -adX -adX -age -age -age -age -age -age -adX -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(87,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -baR -aao -aat -aaA -baR -abr -abO -abO -baR -aan -aan -aan -aan -adX -aev -afc -afw -adX -aga -afe -agR -aho -aho -aho -aho -aho -aku -aho -aho -amc -ana -anR -ana -anR -ana -ana -anR -ana -ana -avc -ana -anR -anR -anR -anR -ana -aBz -akU -akU -akU -akU -akU -akU -akU -akU -akU -aIy -aJg -ajq -ajq -ajq -ajq -aju -aLu -aHq -byu -byu -byu -byu -byu -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(88,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -baR -aao -aat -aaB -aaw -aam -abP -abP -baR -aan -aan -aan -aan -adX -aew -afa -afx -adX -afe -agv -adX -adX -adX -adX -adX -ajP -ahn -akS -adX -adX -afe -afe -akT -akT -akT -akT -akU -akU -akU -akU -akU -akT -akT -akT -akT -adX -adX -akU -aDa -aDT -aEC -akU -aDa -aDT -aEC -akU -akU -akU -akU -akU -akU -agw -aFC -agw -aHq -aaq -aaq -aaq -aaq -byu -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(89,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -baR -aao -aat -aaB -baR -aam -aam -aam -baR -aan -aan -aan -aan -adX -aex -afa -afy -adX -afe -adX -adI -adI -afe -adI -adX -adX -adX -adI -adI -adI -anb -adI -akU -akU -akU -akU -asg -ati -aug -avd -akU -akU -akU -akU -akT -akT -akT -akU -aDb -aDU -aED -akU -aDb -aDU -aED -akU -aIz -aJh -aqp -aKy -akU -agd -aPL -ajU -bEe -bEh -aaq -aaq -aaq -byu -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(90,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -baR -baR -baR -aaC -baR -baR -baR -aaw -baR -baR -baR -baR -baR -abq -aey -afa -afz -adX -afe -adX -adI -adI -afe -adI -adI -adI -adI -adI -adI -adI -ajO -adI -akU -apj -aqo -arq -ash -atj -aqp -auj -avR -awT -awT -akU -akU -akT -akT -akU -aDc -aqp -app -akU -aDc -aGC -app -akU -aIA -aJi -aqp -aKz -akU -agd -ajw -agw -aHq -aaq -aaq -aaq -aaq -byu -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(91,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -baR -aag -aaD -aaU -abs -aaU -aaU -acs -baR -acO -adj -adG -adY -aez -afa -afA -adX -afe -adX -adI -adI -afe -adI -adI -adI -adI -adI -afe -ahp -afe -adI -akU -apk -aqp -aqp -aqp -atk -aqp -aqp -avS -aqp -aqp -azu -akU -akT -akT -akU -alw -anf -aEE -akU -alw -anf -aEE -akU -aIB -atn -aqp -aKA -akU -agd -ajw -agw -aHq -aaq -aaq -aaq -aaq -byu -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(92,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -baR -aag -aag -aag -aag -aag -aaV -act -baR -aam -adk -adl -abq -aeA -afb -afB -adX -agb -adX -adI -adI -adI -adI -adI -adX -afe -afe -ahp -afe -adI -anS -akU -apl -aqp -aqp -asi -atl -aqp -ave -avT -aqp -aqp -azv -akU -akT -akT -akU -aDd -aqp -app -aFr -aqp -aqp -atn -akU -aDg -atn -anV -anV -akU -aHS -ajw -agw -aHq -byu -byu -byu -byu -byu -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aad -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(93,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -baR -aag -aaE -aaE -aaE -aaE -aaE -act -baR -acP -aaB -aam -adZ -aeB -afa -afv -adX -afe -adX -afe -adI -adI -ahp -adX -adX -afe -adI -adI -adI -adI -adI -akU -apm -aqq -aqp -aqp -aqp -aqp -avf -anV -bgd -bgd -akU -akU -akT -akT -akU -aDe -aqp -aEF -aqt -aqt -aqt -aHg -aHO -aqt -aJj -aJM -aKB -akU -agx -ajw -agw -agd -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aad -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(94,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -baR -aag -aaE -aaE -aaE -aaE -aaE -act -baR -aam -aaB -adH -abq -aeC -afd -afC -adX -afe -adX -afe -ahp -afe -ahp -afe -afe -afe -akT -akU -akU -akU -akU -akU -apn -aqr -arr -asj -atm -auh -avg -akU -awV -aym -akU -akT -akT -akT -akU -aDf -aqp -aqq -aqq -aqp -aqp -aHh -akU -aIC -aJk -anV -anV -akU -agw -ajw -agw -agd -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aad -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(95,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -baR -baR -baR -aag -aaE -aaE -aaE -aaE -aaE -act -baR -baR -aaC -baR -abq -adX -adX -adX -adX -afe -adI -adI -afe -afe -adX -adI -adI -adI -akU -akU -amd -anc -akU -akU -anV -anV -anU -apk -atn -aui -akU -akU -awW -awW -akU -akU -akU -akU -akU -aDg -aqp -aEG -aFs -aqq -aqp -aHi -akU -aID -aJl -aJM -aKB -akU -agd -ajw -age -age -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aad -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(96,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -aag -aag -aag -aag -aaE -aaE -aaE -aaE -aaE -aaD -acC -aaU -adl -baR -adI -adX -afe -afe -adX -afe -adX -adI -adX -adX -adX -adI -adI -adI -akU -alu -ame -and -anT -aoG -apo -aqs -ars -ask -ato -auj -anU -avU -awX -ayn -azw -akU -aAM -aBA -akU -aDh -aqq -aEH -aFt -aqq -aqp -aHj -akU -akU -akU -akU -akU -akU -agd -ajw -agw -agd -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aad -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(97,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -aah -aah -aah -aag -aaE -aaE -aaE -aaE -aaE -aag -act -baR -baR -baR -aac -adX -afe -afe -afe -afe -adX -adI -adI -adI -adI -adI -adI -adI -akU -alv -amf -ane -anU -aoH -app -aqp -aqp -aqp -atn -aqp -avh -aqp -awY -ayo -azx -anV -amh -awX -aCm -aDi -aqq -aEI -aFu -aqq -aGD -aHk -aHP -aIE -aJm -aJN -age -age -aLu -ajw -agc -aNg -aNL -aOm -aNg -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aad -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(98,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -aai -aai -aah -aag -aag -aag -aag -aag -aag -aag -act -acQ -aam -aam -aae -adX -afe -afe -adX -afe -agd -agd -age -age -age -age -age -adI -akU -alw -amg -anf -anV -aoI -app -aqp -art -asl -atp -auk -avi -avV -avV -ayp -azy -aAr -aAN -aBB -aCn -aDj -aqt -aEJ -aFv -aqt -aGE -aHl -akU -aKC -aLR -agw -bjj -agw -agw -aYj -agw -aNh -aNM -aOn -aOO -aNg -aNg -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aad -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(99,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -aaj -aai -aah -aag -aag -aaV -aag -aag -aag -aag -act -baR -aam -aam -aae -adX -adX -adX -adX -afe -age -agS -ahq -agw -age -aje -agw -adI -akU -alx -amh -ane -anU -aoJ -apq -aqt -aqt -asm -apr -aul -anU -avW -awZ -ayq -azz -akU -aAO -aBC -akU -aDk -aDV -aqp -aFw -aqp -aGF -aHm -aHQ -aIE -aJo -aJq -age -ajh -ajh -ajw -agw -aNh -aNN -aNN -aNN -aNg -aNg -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(100,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -aai -aai -aah -baR -aag -aaW -aaW -aaW -acc -aag -act -baR -baR -baR -aan -adI -adI -adI -adI -afe -agd -agd -agd -ahU -agw -ajf -agw -adI -akU -aly -ami -and -anW -aoG -apr -aqu -aru -asn -app -aum -akU -avX -avX -ayr -avX -avX -akU -akU -akU -akU -akU -aEK -akU -akU -akU -akU -akU -age -age -age -age -ajh -age -ajw -agw -agd -aNg -aNg -aOP -aNg -aNg -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aFT -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(101,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -aak -baR -baR -baR -aag -aaX -aaX -aaX -acd -acu -act -aag -baR -adI -adI -adI -adI -adI -adI -adI -adI -adI -ahr -ahV -ahU -ajg -agw -adI -akU -akU -amd -ang -anU -anU -aps -anU -anV -anU -atq -anU -akU -avX -axa -ays -azA -avX -aAP -aBD -aCo -age -age -ajh -ajh -ajh -ajh -ajh -ajh -age -age -aJO -agw -age -age -bfb -agw -agd -aNg -aOo -aNQ -aNg -aPU -aQK -aQL -aSj -aTj -aUf -aQL -aVZ -aQN -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(102,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -aal -baR -baR -aau -aaF -aaF -aaF -aaF -ace -aaW -act -acR -baR -adI -adI -adI -adI -adI -adI -adI -adI -adI -agd -agd -agw -ajh -agw -agw -agd -akU -akU -akU -akU -aoK -apt -aqv -arv -aqv -apt -aun -akU -avX -axb -ayt -azB -avX -agw -aBE -agw -agw -aDW -age -ajh -age -age -age -aHR -agw -agw -agw -agy -aHS -age -ajw -agw -agd -aNg -aOo -aNg -aNg -aPU -aQL -aQL -aSk -aTk -aUg -aVg -aWa -aQN -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(103,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -aam -baR -baR -aav -aaF -aaY -abt -aaF -ace -aaW -act -aag -baR -baR -baR -baR -abx -abx -abw -agc -age -agd -agd -agd -agy -ahV -agw -agw -agd -agd -agd -agd -akU -amd -apu -aqw -arw -aso -atr -amd -akU -avX -axc -ayu -azC -avX -age -age -age -age -aEM -aDX -aHn -aDX -aDX -aJr -aDX -aDX -aLS -age -agw -agy -agw -ajw -agw -age -aNO -aNQ -aNg -aNg -aPU -aQK -aQL -aSl -aTl -aUh -aVh -aWb -aQN -aan -aan -aan -aan -bcj -bcj -bcj -bcj -bcj -bcj -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(104,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -aam -aam -baR -aav -aaF -aaF -aaF -aaF -ace -aaW -act -aag -adm -aag -aag -baR -aci -afD -abx -agc -agc -agw -agw -agy -agw -agw -agw -agw -agw -alz -amj -agd -akU -akU -apv -aqx -arx -asp -ats -akU -akU -avX -avX -ayv -avX -avX -aAR -aCx -aDX -aDX -aCp -aBE -age -agw -agw -agw -aHS -agw -aLT -age -aEM -aDX -aDX -aNi -aNP -aOp -aOq -aOr -aNQ -aNQ -aPV -aQM -aQL -aSm -aQL -aUi -aVi -aWc -aQN -aan -aan -aan -aan -bcj -bdg -bei -bfk -bge -bcj -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(105,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -baR -baR -aam -baR -baR -aBw -aaG -aaG -aaG -acd -acu -act -aag -adn -aag -aag -aeD -aci -afE -abx -agd -agc -agw -ahs -ahs -ahs -ahs -ahs -agw -agy -agw -agw -anh -agd -akU -akU -akU -akU -akU -akU -akU -anV -avX -axd -ayw -axd -avX -aBF -aAs -aCq -aAs -aCq -aAs -aAs -agw -aGG -aHo -aHT -agw -aMx -aDX -aCp -agw -agw -age -agw -age -aNQ -bhG -aOQ -aOs -aPU -aQK -aQL -aSn -aQL -aUj -aVj -aWd -aQN -aan -aan -aan -aan -bcj -bdh -bej -bfl -bgf -bcj -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(106,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -baR -aam -aam -baR -aag -aaW -aaW -aaW -acf -aag -act -aag -adm -aag -aag -baR -aci -afD -abx -age -agw -agw -ahs -ahW -ahW -aji -ahs -akv -akV -akV -amk -akV -akV -akV -akV -aqy -akV -asq -akV -akV -ajm -avY -axe -ayx -azD -aAQ -aCp -aAs -aCr -aDl -aDY -aDY -aAs -agw -agw -agw -agw -agw -aJs -aJt -aJs -aJt -aJt -aJs -aJt -aJt -aJt -bhG -aOR -aOR -aPW -aQN -aQN -aQN -aQN -aQN -aVk -aQN -aQN -aan -aan -aan -aan -bcj -bdi -bek -bfm -bek -bcj -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(107,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -baR -aam -aap -aaw -aag -aag -aag -aag -aag -aag -act -aag -baR -baR -baR -baR -aci -abx -abw -age -agw -agw -ahs -ahX -aiy -ahX -ahs -akw -age -age -age -age -agw -age -age -aqz -age -age -age -age -age -aoL -axf -ayy -azE -aAs -aAs -aAs -aDZ -aDm -aDZ -aEL -aAs -agw -agw -agw -agw -agw -aJt -aJP -aKD -aJR -aJR -aJR -aMy -aNj -aJt -bhG -aOR -aPk -aPX -aQO -aPW -aQJ -aOR -aUk -aVl -aOR -aQN -aan -aan -aan -aan -bcj -bdi -bel -bfn -bgg -bcj -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(108,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -baR -aam -aam -baR -aaH -aaZ -abu -aaU -aaU -aaU -acD -acR -baR -aan -aan -abx -aci -abx -abw -age -agw -agw -ahs -ahX -ahX -ahX -ahs -aiF -age -alA -aml -age -agx -age -apw -apx -apx -apx -apx -apw -age -aoL -axg -ayz -axg -aAs -ayF -aBG -aCt -aDn -aEa -aEa -aAs -agw -agw -agw -agw -agw -aJs -aJQ -aKE -aJR -aJR -aJR -aKE -aNk -aJt -bhG -aOR -aOR -aOR -aQP -aRl -aOR -aOR -aUl -aVm -aWe -aWe -aWe -aWe -aZW -baV -bcj -bdh -bem -bfn -bgf -bcj -aan -bfp -bfp -bfp -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(109,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -baR -baR -baR -baR -baR -aba -baR -baR -baR -baR -baR -baR -baR -aan -aan -abx -aff -abx -abw -age -agw -agw -ahs -ahX -aiz -ahW -ahs -aiF -age -age -age -age -agw -age -apx -aqA -aqA -aqA -att -apx -aoL -aoL -axh -ayA -azF -aAt -aAT -aBH -aCu -aDo -aAs -aAs -aAs -age -age -age -age -agw -aJt -aJR -aJR -aJR -aLv -aJR -aJR -aJR -aJs -bhZ -aOr -aNQ -aOR -aQQ -aRm -aSo -aTm -aRm -aVn -aWf -aXb -aXO -aYP -aZX -baW -bcj -bdj -ben -bfo -bge -bcj -aan -bfp -bgC -bfp -bfp -bfp -bfp -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(110,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aan -aan -aan -aan -baR -abb -aae -aan -baR -aan -aan -aan -baR -aan -aan -abx -aci -abx -abw -age -agw -agw -ahs -ahW -aiz -ahX -ahs -aiF -agw -agw -agw -agw -agw -age -apx -aqA -aqA -aqA -aqA -apx -aoL -aoL -axi -ayB -azG -aAs -aAs -aAs -aCv -aAs -aAs -agw -agw -aFV -age -aEd -agw -agw -aJs -aJR -aJR -aKX -aLw -aLU -aJR -aJR -aJs -aOs -bhG -aPl -aOR -aQR -aRn -aSp -aTn -aUm -aVo -aWg -aXc -aXP -aYQ -aZY -baX -bcj -bdk -bcj -bcj -bcj -bcj -aan -bfp -biK -bjJ -aZh -bkQ -bfp -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aac -aac -aan -aan -aan -baR -baR -aaI -aaI -aaJ -baR -aan -aan -aan -aan -aan -aan -abx -aci -abx -abw -age -agx -agw -ahs -ahY -ahX -aiy -ahs -aiF -akz -akz -akz -akz -akz -aoL -apx -aqA -aqA -aqA -aqA -apx -aoL -aoL -axj -ayC -azH -aAs -aAU -aBI -aCv -aAs -aEb -age -aFy -aFW -age -age -ajl -age -aJs -aJR -aJR -aJR -aLx -aJR -aJR -aJR -aJs -aOt -bhG -aNQ -aOR -aOR -aOR -aOR -aOR -aUn -aVp -aWe -aWe -aWe -aWe -aWe -baY -aWe -bdl -beo -aVA -bfp -bfp -bfp -bal -bfp -bam -bjJ -bkR -bfp -bfp -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aad -aad -aan -baR -aaI -aaI -aaI -aaI -baR -aan -aan -aan -aan -aan -aan -abx -aci -abx -abw -age -agw -agw -ahs -ahX -aiA -ajj -ahs -ajS -akz -alB -amm -akY -akz -aoL -apx -aqA -aqA -aqA -aqA -apx -aoL -avZ -aqE -ayC -azI -aAs -aAs -aBJ -aCv -aAs -aEc -age -agw -aFX -aEc -agw -agw -aHp -aJt -aJS -aKE -aJR -aJR -aJR -aKE -aNl -aJt -aOs -bhZ -aOr -aNQ -aOs -aPU -aOR -aOR -aUo -aVq -aWh -aXd -aXQ -aYR -aZZ -baZ -aZZ -bdm -aVA -aVA -aZh -bgC -bal -bal -biL -bjK -bam -bkS -bgC -bfp -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aad -aad -aan -baR -aaJ -aaI -abv -aaJ -baR -aan -aan -aan -aan -aan -aan -abx -aci -abx -abw -age -agw -agw -ahs -ahZ -ahX -ajk -ahs -aiF -akz -akW -amn -ani -akz -aoL -apw -apx -ary -ary -apx -apw -avj -aoL -axk -ayD -asI -aAs -aAU -aBI -aCv -aAs -agw -aEc -aFz -aFY -age -aHp -agw -aHp -aJs -aJT -aKD -aJR -aJR -aJR -aMz -aNm -aJs -aOs -aNQ -aPm -aPY -aNh -aPU -aSq -aTo -aUp -aVr -aWi -aXe -aXR -aYS -baa -bba -aXj -bdn -aVA -bfp -aZh -aZh -bhq -aZh -bfp -bfp -bku -bfp -bfp -bfp -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aad -aad -aan -baR -aaI -aaI -aaI -aaI -baR -aan -aan -aan -aan -aan -aan -abx -aci -abx -abw -age -agw -agw -ahs -ahs -ahs -ahs -ahs -aiF -akz -alC -amo -anj -akz -aoM -apy -aqB -arz -asr -atu -auo -avk -awa -axl -ayG -asJ -aAs -aAs -aAs -aCw -aAs -agw -age -age -aJp -age -aHq -aHq -ajh -aJs -aJt -aJt -aJt -aJt -aJt -aJt -aJt -aJt -aOs -aOs -aPm -aPZ -aNh -aPU -aSr -aTp -aUq -aVs -aVv -aXf -aXS -aVv -bab -bbb -bck -bdo -aVA -bfp -bak -bak -bal -aZh -bfp -bfp -bkv -bjK -bfp -aan -aan -abq -aan -aan -aan -aan -aan -aan -bni -bni -bni -bni -bni -bni -bni -bni -bni -bni -bni -bni -bni -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aad -aad -aan -baR -aaJ -aaI -aaI -aaJ -baR -aan -aan -aan -aan -aan -aan -abx -aci -abx -abw -age -agy -agy -age -age -age -age -age -akx -akz -aEz -amp -ank -akz -akz -aoL -aqC -arA -ass -atv -aup -avl -awb -awb -ayE -azJ -aAu -aAV -aBK -aAS -aAV -aAV -aAV -aAV -aGa -aGH -aHu -aHv -aHv -aHv -aHv -aGJ -aGJ -aHu -aMB -aGJ -aNn -aHw -aOs -aOs -aPm -aNh -aNh -aPU -aOR -aTq -aUr -aVt -aWj -aXg -aXT -aYT -aWu -bba -bcl -bdp -aVA -bfp -aZh -aZh -bal -aZh -bfp -bfp -bfp -bfp -bfp -aan -aan -abq -aan -aan -aan -aan -aan -aan -bni -btJ -buy -btJ -bni -bwO -bxE -bwO -bni -bzh -bzA -bzh -bni -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aad -aad -aan -baR -baR -baR -baR -baR -baR -aan -aan -aan -aan -aan -aan -abx -aci -abx -aci -age -agy -agy -age -aci -age -age -ajQ -aky -akz -alD -amp -anl -anX -akz -aoL -aqD -arA -ast -atw -auq -avm -awc -aqM -ayG -azK -aAv -aAW -aAW -aAW -aAW -aAW -aEN -aFA -age -aka -aHu -aHv -aHv -aHv -aHv -aGJ -aGJ -aHu -aMC -aNn -aOw -aHw -aOs -aOs -aPm -aNh -aQS -aRo -aOR -aTr -aUs -aVu -aVv -aXh -aXU -aYU -aWu -bbc -bcl -bdq -aVA -bfp -bak -aZh -bal -aZh -bfp -bfp -bfp -bfp -bfp -aan -aan -abq -aan -aan -aan -aan -aan -aan -bni -btJ -buz -btJ -bni -bwO -bxF -bwO -bni -bzh -bzB -bzh -bni -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aad -aad -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -abw -aci -abx -aci -abw -abw -agA -abw -aci -age -age -aiF -akz -akz -alE -amq -anm -anY -akz -apz -aqE -arB -asu -atx -aur -avn -avn -axm -ayH -azL -aAv -aAX -aBL -aCy -aDp -aAW -age -age -age -aka -aHu -aHv -aHv -aHv -aGJ -aGJ -aGJ -aHu -aMD -aGJ -aOE -aHw -aOs -aOs -aPn -aNh -aQT -aRo -aOR -aTs -aUt -aVv -aVv -aXi -aXV -aYV -bac -aXn -aXZ -bdr -aVA -bfp -aZh -bfr -bhr -bia -biM -bjL -bie -bgC -bfp -aan -aan -abq -aan -aan -aan -aan -aan -aan -bni -btK -buA -bvo -bni -bwP -bxG -bye -bni -bzi -bzC -bzY -bni -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aad -aad -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -abw -abw -abw -aea -abx -aci -abw -abw -aci -abw -aci -age -age -aiF -akz -akW -akW -amp -akW -anZ -aoN -apA -aqF -arC -asv -aty -auq -avo -awd -aqM -ayI -azM -aAw -aAY -aBM -aBO -aBO -aAW -aEO -agw -agw -aka -aHv -aHv -aHv -aHw -aHw -aHw -aHw -aHw -aLX -aNo -aHw -aHw -aOs -aOs -aPn -aNh -aQU -aRp -aSs -aTt -aUu -aVw -aWk -aXj -aWu -aWu -aWu -bba -aWu -bds -aVA -bfp -aZh -bgD -bhs -aZh -biN -bjM -bal -bgC -bfp -bfp -bfp -aZh -aZh -aZh -aZh -brs -bEm -bEF -bni -btL -bpf -bvp -bni -bwQ -bpf -byf -bni -bwQ -bpf -byf -bni -bph -bph -bph -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aac -aan -aan -aan -aan -aan -aan -aac -aac -aac -abw -abw -abw -abw -aff -abx -aci -aci -aci -aci -aci -aci -age -age -ajR -akz -akW -akW -amr -ann -aoa -aoO -apB -aqG -arD -asw -atz -aus -avp -awe -awe -ayJ -azN -aAx -aAZ -aBN -aBO -aDq -aAW -agw -agw -agw -aka -aHv -aHv -aHv -aJz -aJZ -aKY -aLz -aHw -aGJ -aGJ -aPD -aHw -aNh -aNh -aPo -aNh -aOR -aOR -aRl -aTu -aUv -aVx -aWl -aXk -aXW -aYW -bad -bbd -bcm -bdt -aVA -bfp -aZh -aZe -bhs -aZh -aZh -bjN -bkw -bkw -bkw -bkw -bng -bnP -bot -bpc -bpO -bsm -bEE -bEG -bph -btM -buB -btM -bwd -bwR -buB -byg -bwd -bwR -buB -byg -bwd -bwd -bwd -bph -bph -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aby -abx -abx -abw -abw -aea -abx -abx -aci -abx -abx -abx -abx -age -age -aiF -akz -apP -akX -ams -akX -akX -aoP -akz -aqE -arE -asx -atA -aut -avq -awf -axn -ayK -azO -aAv -aBa -aBO -aBO -aDr -aAW -agw -agw -aGb -auK -aHv -aHv -aHv -aJU -aJU -aJU -aJU -aHw -aGJ -aGJ -aGJ -aGJ -aNQ -aNQ -aPn -aQa -aOR -aRq -aRq -aTv -aUw -aVy -aWm -aXl -aXX -aYX -aVA -bbe -bcn -bbe -aVA -bfp -aZh -bgE -bhs -bib -aZh -bak -bak -bak -bak -bak -bak -aZh -bou -bpd -bpP -bqD -bph -bsn -bph -btN -buC -bvq -bwe -bwS -buC -byh -byK -bwS -buC -byh -byK -bAv -bwd -bwd -bph -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aan -aan -abw -abw -abw -adJ -aea -aci -aci -abw -abw -aci -abx -abx -afj -ahu -aiB -age -aiF -akz -akY -akY -ams -akY -akY -aoQ -akz -aqH -arF -asy -atB -atC -avr -atC -atC -atC -atC -atC -aBb -aBO -aBO -aDs -aAW -agw -agw -aka -age -aHw -aHw -aHw -aJV -aJU -aJU -aLA -aLX -aGJ -aGJ -aGJ -aGJ -aNQ -aNN -aPn -aQb -aOR -aRr -aSt -aTv -aUx -aVx -aWn -aXm -aXY -aYY -bae -bbf -bba -bdu -aVA -bfp -aZh -aZe -bht -bic -aZh -aab -aab -bkT -bkT -aab -bak -aZe -bak -bak -aZh -bph -bph -bso -btc -btO -buD -bvr -bwf -bwT -bxH -byi -byL -bzj -bzD -bzZ -bAp -bAw -bAv -bwd -bph -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aan -aan -abw -abw -abw -aci -aci -abx -abx -abw -abw -agf -abx -abx -afJ -ahv -ahw -aJg -aia -akz -akZ -akW -ams -akW -akW -akW -akz -aqI -arE -asz -atC -auu -avs -atC -axo -ayL -azP -atC -aBc -aBP -aCz -aDt -aAW -agw -agw -aka -akH -aGJ -aGJ -aHr -aJU -aJU -aJU -aJU -aHw -aHw -aHw -aHw -aHw -aNh -aNh -aPn -aQc -aOR -aRs -aSu -aTw -aUy -aVx -aWo -aXn -aXZ -aYZ -baf -bbg -bbc -bdv -aVA -bfp -bgh -bal -bhu -bid -aZh -aab -aab -bkU -bkU -aab -bnh -bnh -bnh -bnh -bnh -bph -brt -bsp -btd -btP -buE -bvs -bwg -buL -bxI -byj -bwg -buL -bqK -btg -bwg -bAx -bAR -bwd -bph -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aac -aac -aan -aan -aan -aan -aan -abw -abw -abw -abw -aci -aci -aci -aci -aci -afR -aci -abx -abx -aht -agw -aiD -age -aiF -akA -akW -akW -amt -akW -akW -akW -apC -aqE -arE -asA -atD -auv -aux -awg -aux -ayM -aux -atC -aAW -aAW -aAW -aAW -aAW -agw -agw -aka -akH -aGJ -aGJ -aIK -aJW -aKa -aKa -aKa -aKa -aKa -aNp -aNp -aNp -aGI -aHA -aPp -aQd -aQV -aRt -aSv -aTx -aUz -aVz -aWp -aXo -aWu -aZa -baf -bbh -bco -bdw -aVA -bfp -aZh -aZe -bhv -bie -aZh -aab -aab -bkT -bkU -aab -bni -bni -bni -bni -bnh -bqE -bru -bsq -bte -btQ -buF -bvt -buF -bwU -bxJ -byk -byM -bzk -btR -bAa -bqK -bAy -bAS -bwd -bph -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aac -aac -aan -aan -aan -aan -aan -abw -abw -abw -abw -aci -aea -aci -aci -aci -afR -aci -abx -abx -abx -age -age -age -aiF -akz -akW -akX -amu -akX -akX -akX -akz -aqJ -arG -asB -atE -auw -avt -awh -axp -ayN -aux -atC -age -agw -ajh -ajh -agw -agw -agw -aka -age -aGJ -aGJ -aIL -aJX -aKb -aJU -aLV -aLY -aME -aNq -aQq -aGJ -aHs -aHC -aPq -aQe -aPU -aRu -aSw -aTy -aUA -aVA -aWq -aXp -aWu -aZb -bag -bbi -bcp -bdx -aVA -bfp -aZh -bgE -bhs -bal -aZh -aab -aab -bkU -bkU -aab -bni -bnQ -bov -bpe -bpQ -bqF -brv -bsr -btf -btR -buG -bvu -bwh -bwV -bxK -bxP -byN -bzl -byR -byR -byR -buK -bAT -bwR -bni -bni -bBM -bBM -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aac -aac -aan -aan -aan -abw -abw -abw -abw -abx -abx -abx -abw -abx -abx -abw -abw -agA -abx -aci -aci -age -aiE -ajm -ajT -akz -akz -akz -akz -akz -akz -akz -akz -aqK -arE -asA -atF -aux -aux -aux -axq -aux -azQ -atC -agw -agw -ajh -ajh -agw -agy -agw -aka -age -aHw -aHw -aIL -aHw -aHw -aHw -aHw -aHw -aHw -aHw -aHw -aGJ -aHt -aGJ -aPr -aQf -aPU -aRv -aSw -aTz -aUB -aVA -aWr -aXq -aXY -aZc -bah -bah -bah -baj -aVA -bfp -aZh -aZe -bhw -aZh -aZh -aab -aab -aab -aab -aab -bni -bnQ -bow -bpf -bpR -bqE -brw -bsq -btg -bqK -buH -bvv -bwi -bqK -btg -bqK -btg -bzm -buK -bqK -bqK -bAz -bAU -bBg -bBq -bBu -bBN -bBN -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aac -aac -aan -aan -abw -abw -abw -abw -abw -abx -aci -aci -aea -aci -abx -abw -abx -aci -agz -aci -aci -age -aiF -ajn -ajU -akB -ala -alF -amv -ano -aob -aoR -apD -aqL -arH -asC -atD -aux -aux -avu -axr -aux -aux -aAy -agw -aBQ -ajh -ajh -agw -agw -agw -aka -age -aHx -aHw -aJu -aHw -aKF -aKZ -aLW -aMA -aHw -aNr -bbK -bbK -blY -aHv -aHv -aQg -aPU -aRw -aSw -aSx -aUC -aVA -aWs -aXq -aWu -aZb -bah -bbj -bcq -baj -bak -aZh -aZh -bal -bhw -bak -aab -aab -aab -aab -aab -aab -bni -bnQ -box -bpg -bpS -bqG -brx -bss -bth -btR -btR -bvw -btR -btR -bxL -btR -byO -btR -bzk -bAb -bqK -bAA -bAT -bBh -bpf -bBv -bBO -bCa -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aac -aan -aan -abx -abx -abx -abx -abx -abx -abx -aci -abx -aci -abx -abw -abx -aci -aci -aby -abx -age -aiF -ajo -ajV -akC -alb -alG -amw -anp -aoc -aoS -apE -aqM -arE -asD -atC -auy -avu -awi -axs -avu -aux -atC -agw -agy -ajh -ajh -agw -ajh -ajh -aka -age -aHw -aHw -aJv -aHw -aHw -aHw -bFe -bFe -bFe -blF -bFe -aHv -aHv -aHv -aHv -aQg -aPU -aRx -aSx -aTA -aUC -aVA -aWt -aXr -aYa -aYa -bai -bbk -bcr -baj -baj -baj -bgi -bal -bhx -aZh -aab -aab -aab -aab -aab -aab -bni -bni -bni -bni -bnh -bqH -bry -bst -bti -btS -buI -bvx -btS -btS -btS -byl -bqK -bqK -bzE -bth -btR -bAB -bAV -bBi -bpe -bBw -bBN -bBN -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aac -aan -aan -abx -abQ -acg -acv -abR -abx -aci -aci -abx -aci -aci -abw -abw -aff -abx -aby -aby -age -aiF -ajp -ajW -akD -alc -alH -alc -alc -aoc -aoS -apE -aqN -arI -asE -atC -auz -avv -awj -axt -ayO -azR -atC -agw -ajh -ajh -ajh -ajh -ajh -ajh -aka -age -aHv -aGJ -aIL -aHw -aKG -aJU -anE -aJn -bFt -bFx -aLc -aHv -aHv -aHv -aHv -aQg -aPU -aRx -aSx -aSx -aUD -aVA -aWu -aWu -aWu -aZd -bah -bbl -bcs -bdy -bep -baj -bal -aZh -bhw -aZh -aab -aab -aab -aab -aab -aab -bnh -bnh -bnh -bnh -bnh -bqI -brz -bsu -btj -btT -buJ -bvy -bwj -bwW -bxM -bym -btT -byl -buL -btg -bAq -bAC -bAW -bwR -bni -bni -bBM -bBM -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aac -aan -aan -abx -abR -ach -acw -acE -abx -aci -abx -ado -aci -aci -aci -abx -aci -aby -aby -aby -agd -aiF -age -age -akC -ald -alH -alc -alc -aoc -aoT -apE -aqM -arE -asF -atC -atC -atC -atC -atC -ayP -atC -atC -agy -ajh -ajh -ajh -ajh -ajh -ajh -aka -age -aHv -aGJ -aIL -aJY -aKH -aLa -anE -aNu -aLc -bFy -bEW -aHv -aHv -aHv -aHv -aQg -aPU -aRy -aSy -aTB -aUE -aVA -aVA -aXs -aXs -aVA -baj -baj -baj -baj -baj -baj -bgj -aZh -bhw -aZh -aab -aab -aab -aab -aab -bak -bnh -bnh -bnh -bph -bph -bph -brA -bsv -btk -btU -buK -bvy -bwj -bwX -bxN -byn -buH -byn -bzF -bAc -byR -bAD -bAU -bBg -bBq -bBx -bBP -bBP -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aac -aan -aan -abx -abS -aci -acx -aci -acS -aci -aci -abx -aci -aci -aci -abx -aci -aby -aby -aby -age -aiG -ajq -ajX -akC -ale -alI -amx -amx -aod -aoU -apF -aqO -arJ -asG -atG -auA -avw -awk -axu -axw -axu -atI -agw -ajh -ajh -ajh -ajh -ajh -ajh -aGc -ajU -aHy -aHy -aJw -aJU -aKI -aLb -anE -aLc -aLc -aLc -bEW -bEW -aHv -aHv -aHv -aQg -aPU -aRz -aSz -aTC -aUF -aVB -aPU -aPU -aPU -aZe -bak -bak -bak -bak -bak -bak -bal -aZh -bhw -aZh -aab -aab -aab -bak -aZe -aZh -bnj -bnj -bnj -bnj -bpT -bqJ -brB -bsq -bqK -bqK -buL -bvy -bwk -bwY -bxO -byo -buG -buJ -buL -btg -bqK -bAE -bAT -bBh -bpf -bBy -bBQ -bCb -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aac -aan -aan -abx -abT -aci -aci -abR -abx -aci -aci -aci -aci -aci -aci -abx -aci -age -age -age -age -age -age -aiF -akC -alf -alH -alc -alc -aoc -aoV -apG -aqP -arK -asH -atH -auB -avx -awl -axv -axw -axv -atI -agw -akH -agw -agw -aEd -ajh -ajh -aka -agw -aGJ -aGJ -aJx -aJU -aKJ -aLy -anE -aMd -aMd -aMd -aMd -bEW -bEW -bEW -aHv -aQg -aPU -aPU -aPU -aPU -aPU -aPU -aNh -aPU -aPU -aZe -aZh -aZh -aZh -aZh -bak -bak -aZh -aZh -bhw -aZh -bak -aZh -aZh -aZh -blE -bmx -bnk -bnR -boy -bnj -bpU -bqK -brC -bsw -bqK -bqK -buM -bvu -btT -buI -btS -byp -bqK -bzn -bzE -btg -bqK -bAF -bAX -bBi -bpe -bBz -bBP -bBP -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aac -aan -aan -abx -abx -acj -abx -abx -abx -abx -aci -aci -abx -aci -aff -abx -agf -age -agd -agd -agd -agd -agd -aiF -akC -alg -alH -amy -anq -akC -akC -akC -aqQ -arL -asI -atG -auC -avy -awm -axw -axw -axw -aAz -agw -agw -akH -agw -agw -ajh -ajh -aka -agw -aHz -aII -aHU -aHv -aJU -aJU -anF -aMd -aMd -aMd -aMd -aMd -aMd -aMd -bFe -aQh -aRA -aRA -aQW -aRA -aRA -aRA -aRA -aRA -aYb -aZf -aZf -bbm -bct -bdz -beq -bfq -bal -bgF -bhy -bif -bif -bif -bif -bkV -blE -bmy -bnl -bnS -boz -bnj -bpV -bqK -brD -bsx -btl -btT -buN -bvu -buG -buJ -bqK -byq -bqK -bqK -buL -btg -bAq -bAG -bAW -bwR -bni -bni -bBM -bBM -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aab -aab -aab -aab -aac -aac -aac -aby -abw -abw -abw -abw -abx -abx -aci -aci -abx -abx -aci -abx -aci -agd -agd -agd -agd -agd -age -ajY -akC -alh -bGf -alc -anr -aoe -alc -apH -aqE -arM -asJ -atG -auD -avy -awn -axu -axw -axv -atI -aBd -aBR -ajU -ajU -ajU -ajU -aFB -aGd -ajq -aHU -aHv -aHv -aHv -aHv -aJU -bFe -aMd -aMd -aMd -aOA -aOA -aOA -aOA -bFe -bFe -bFe -bFe -aQX -aNh -aNh -aNh -aWv -aNh -aNh -aZg -bal -bbn -aZf -aZf -aZf -aZf -aZf -bgG -bgI -bgI -bgI -bgI -bgI -bkW -blE -blI -bnl -bnT -boA -bpi -bpW -bqL -brE -bsy -btm -btV -buO -bvz -bwl -bwZ -bxP -byr -byP -byR -bzG -bAc -byR -bAH -bAU -bBg -bBq -bBA -bBR -bBR -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aab -aab -aab -aab -aac -aac -aac -aby -abw -abw -abw -abw -abx -aci -aci -aci -aci -aci -aci -abx -aci -agd -agd -agw -agw -agd -aMG -bGc -bGd -bGe -bGg -amz -ans -aof -alc -akC -aqR -arN -asK -atI -auE -avy -awo -axx -axw -axu -atI -age -aBS -agw -akH -akH -agw -aFC -agy -aGJ -aGJ -aGJ -aHv -aHv -aHv -aHv -bFe -aMd -aOA -aOA -aOA -aOB -aOB -aOA -aOA -aOA -bFe -bFe -aQj -aQj -aQj -aQj -aQj -aQj -aQi -aZh -aZh -bbo -bal -bdA -bal -bdA -bal -bgH -bgI -big -bgI -bjO -bgI -bkX -bDT -bmz -bnm -bnU -boB -bpj -bpX -bqM -brF -bsz -btl -btW -buF -bvA -bwm -buL -bqK -bte -byQ -byR -byR -bAc -byR -bAI -bAU -bBj -bpf -bBB -bBS -bCc -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aab -aab -aab -aab -aac -aac -aac -aby -abw -abw -abw -abw -abx -aci -abx -aci -aci -aci -aci -abx -aci -age -agw -agw -agw -agd -aOF -aka -akC -akC -akC -akC -akC -akC -akC -akC -aqH -arO -asL -atI -atI -atI -atI -atI -atI -atI -atI -age -aBS -agw -agw -agw -agw -aFC -agw -aGJ -aGJ -aGJ -aGJ -anz -anz -anz -anz -anz -aOB -aOB -aOB -aOB -aOB -aOB -aOB -aOA -bFh -bFe -aQj -aQj -aQj -aQj -aQj -aQj -aQi -aZi -bam -bbo -bal -bal -bdA -bal -bal -bgI -bgI -bih -bgI -bih -bgI -bgI -blG -bGo -bnn -bnV -bnV -bnV -bpY -bnW -bnW -bnW -bnV -btX -buP -bqK -bwn -bxa -bxQ -byr -byR -buK -bqK -bAd -btR -bAJ -bAV -bBk -bpe -bBC -bBR -bBR -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aab -aad -aad -aad -aan -aan -aan -abw -abw -abw -abw -abw -abx -ado -abx -aci -aci -aci -aci -abx -aMG -aiH -aiK -ajZ -akE -alK -bFA -akb -akc -alj -alL -amA -ant -aog -alL -apI -aqS -arP -asI -atJ -auF -avz -awp -axy -ayQ -atJ -auJ -akc -aBT -ajq -ajq -ajq -ajq -ajT -agw -aHr -aHr -aHv -aJy -anz -anA -bGk -aFZ -anz -aQY -aQY -aQY -aOB -aOB -aOB -aOB -aOA -aMd -bFe -aQj -aQj -aQj -aQj -aQj -aQj -aQi -aZj -bam -bbo -bal -bal -ber -bfr -bal -bgI -bhz -bii -biO -bjP -bkx -bkY -blH -bmA -bno -bnW -boC -bpk -bpZ -bqN -brG -bsA -bnW -bqK -bqK -bvB -bwo -bxb -bqK -byo -byS -bzo -bqK -bqK -bAq -bAK -bAY -bwd -bni -bni -bBM -bBM -bBM -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aab -aad -aad -aan -aan -aan -aan -aan -abw -abw -abw -abw -abx -abx -abx -aci -abx -abx -abx -abx -aOF -age -age -age -age -age -agw -age -agw -ajw -alL -amB -anu -aoh -aoW -apJ -aqG -arQ -asM -atK -auG -auG -awq -axz -ayR -azS -ajw -aBe -aBe -aBe -aBe -aBe -aBe -aBe -aBe -aGJ -aGJ -aHv -aHv -anz -aoo -aop -aFZ -anz -aOy -aSA -aSA -bEX -aQY -bFd -aQY -bFe -bFe -bFe -aQj -aQj -aQj -aRB -aQj -aQj -aQi -aVF -aVF -bbp -aVF -aVF -aVF -aVF -aVF -aVF -bhA -bij -biP -bjQ -bky -bgI -blI -bGq -bnV -bnV -boD -bpl -bqa -bqO -brH -bsB -btn -btY -btY -bvC -bwp -bxc -bxR -bys -byT -bzp -bzH -bAe -bAr -bAL -bph -bph -bph -bph -byu -byu -byu -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aan -aan -aan -aan -aan -abw -abw -abw -abw -abw -abw -aci -aci -aci -abx -abw -abx -aOF -aHS -age -agd -agd -age -ajr -agw -agw -ajw -alL -amC -anv -aoi -alL -apK -aqE -arM -asJ -atJ -auH -avA -awr -axA -ayS -atJ -ajw -aBe -aBU -aBU -aBU -aBU -aEP -aFD -aBe -aGJ -aGJ -aHv -aHv -anz -anB -aNS -aKO -anz -bpG -bES -aSA -aSA -aSA -aSA -aPC -bFe -bFY -aQj -aQj -aQj -aQj -aQj -aQj -aQj -aQi -aVF -ban -bbq -bcu -bdB -bcu -bfs -bgk -aVF -bgI -bgI -bgI -bjR -bgI -bkZ -blJ -bmA -bmA -bnW -boE -bpm -bqb -bpZ -brI -bsC -bnW -btZ -buQ -bvD -bwq -bxd -bxS -byt -byU -bzq -bzI -bAf -bAr -bqK -bph -aan -aan -aan -aan -aan -byu -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aaf -aaf -aaq -aan -aan -aan -aan -abw -abw -abw -abw -abw -abx -aci -aci -agw -age -agd -age -afi -aiK -aiK -aiK -ali -age -ajs -agw -age -ajw -alL -amD -anw -aoj -aoX -apL -aqT -arR -asN -aoX -aoX -atJ -atJ -atJ -atJ -atJ -ajw -aBe -aBV -aCA -aCA -aCA -aEQ -aFE -aBe -aBe -aIG -aHW -aBe -anz -anC -aOz -aNy -anz -aOB -bET -aSA -aSA -bEY -bpG -bpG -bFe -bFe -aQj -aQj -aQj -aQj -aQj -aQj -aQj -aQi -aVF -ban -bbq -bcu -bdC -bcu -bap -bgk -aVF -aVF -bgI -biQ -bjS -bkz -bkZ -blK -bmA -bmA -bnV -bnW -bnV -bnV -bqP -bnV -bnV -bnV -bua -bua -bph -bwr -bxe -bph -bwX -bwX -bzr -bzJ -bph -bAs -bAs -bph -aan -aan -aan -aan -aan -byu -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aaf -aaf -aaf -aaq -aaq -aac -aac -aac -abw -abw -abw -abw -aby -abx -aci -aci -agw -agd -ajh -ajh -ajh -aJA -aJA -aJA -alJ -aJA -aNR -age -age -ajw -alL -amE -anx -aok -aoY -apM -aqU -arS -asO -aoX -auI -agw -agw -agw -agw -agw -ajw -aBe -aBW -aBY -aBY -aBY -aER -aCB -aGe -aGK -aCE -aCE -aIM -anz -anD -aPt -aNw -anz -bEL -bET -aSA -aSA -bEZ -aOB -aOB -aOB -bFe -aQj -aQj -aQj -aQj -aQj -aQj -aRB -aQi -aVF -bao -bbq -bcu -bdC -bcu -bap -bgk -aVF -bhB -bgI -biR -bjT -bkA -bkZ -blL -bmA -bmA -bnX -boF -bpn -bmC -bqQ -brJ -bsD -bto -bub -buR -bmA -bws -bxf -bnn -byu -aan -aan -aan -bph -bAt -bAt -bph -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aaf -aaf -aaf -aaq -aan -aan -aan -aan -abw -abw -abw -abw -abx -abw -aci -aci -agw -agd -ajh -ajh -ajh -aJA -aLB -aLZ -aMH -aNs -aJA -age -ajh -ajw -alL -alL -any -aol -aoX -apN -aqX -arT -asP -aoX -auI -agw -agw -agw -agw -agw -ajw -aBe -aBX -aCB -aDu -aCB -aES -aFF -aGf -aGL -aHE -aHX -aIN -anz -anz -aPx -anz -anz -bEM -bEU -aSA -aSA -bEX -aOB -bFf -bFe -bFe -aQi -aQi -aQj -aQj -aQi -aQi -aQi -aVF -aZk -bap -bbq -bap -bdC -bap -bap -bap -bgJ -bhC -aVF -bhB -bhB -bhB -bhB -blM -bmC -bnp -bnY -boG -bmA -bmA -bqR -brK -bsE -bsE -bsE -bsE -bsE -bwt -bEj -blE -aan -aan -aan -aan -bph -bAt -bAt -bph -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aaf -aaf -aaf -aan -aan -aan -aan -aan -abw -abw -abw -abw -abx -abx -abx -aeb -aeE -afh -afh -afh -aKK -aJA -aLC -aMa -aMI -aNt -aJA -agw -agw -akb -alj -alL -alL -alL -aoX -apO -aqW -arU -asQ -aoX -aoX -auJ -akc -akc -akc -akc -akG -aBe -aBY -aBY -aBY -aBY -aET -aCB -aGg -aGK -aCE -aFI -aIO -anz -aom -aor -aom -aKi -bEO -bEO -bEO -bEO -bFa -bEZ -aOB -bFe -aQZ -aRC -bxg -aQk -aQk -aQk -aWw -bEc -aVF -aZl -baq -bbr -bap -bdD -bes -bft -bap -bgK -bhC -aVF -biS -bjU -bkB -aVF -blM -bmD -bnq -bnZ -boH -bpo -bqc -bqS -brL -bmA -bmA -bmA -buS -bDV -bwu -bxh -blE -bkO -bkO -bkO -byv -bph -bph -bph -bph -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aaf -aaf -aan -aan -aan -aan -aan -aan -abw -abw -abw -abw -abx -adp -adK -adK -aeF -adK -aJA -aJA -aJA -aJA -aLD -aMb -aMJ -aLD -aJA -aJA -aJA -aJA -ajw -agw -age -afF -aoX -aFR -aqV -arV -asR -aoX -agw -ajw -aws -aws -aws -aws -aws -aws -aBZ -aCC -aCC -aCC -aEU -aFG -aBe -aBe -aIH -aHY -aIP -anz -aon -bER -bFl -bFN -bFu -bFu -bFu -bFz -bFb -bEX -bFg -bFe -aQl -aQk -aQk -aTD -aQk -aVC -aWx -aAd -aYc -aZm -aZm -bbs -aZm -bdE -bet -bfu -aZm -bgL -bhC -aVF -biT -bjV -bkC -aVF -blN -bmE -bDV -bmB -boI -bpp -bqd -bqT -brM -bsF -bsF -bsF -bsF -bsF -bwv -bxi -bxT -buq -buq -bzs -byv -byv -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aab -aaf -aan -aan -aan -aan -aan -aan -abw -abw -abw -abw -abx -adq -adK -adK -aeF -adK -aJA -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aJA -ajw -agw -age -afG -aoX -apQ -aqV -arV -asS -aoX -agw -ajw -aws -axB -ayT -azT -ayW -aws -aCa -aCa -aCa -aCa -aEV -aFD -aBe -aGM -aHB -aHZ -aIQ -anz -aoq -anz -anz -anz -bEQ -aJn -bEV -bFF -bFc -bEO -bFW -bFe -aQm -aQo -aSB -aRb -aUG -aVD -aWy -aXt -aYd -aZn -aZn -bbt -baq -bdF -beu -bfv -baq -bgM -bhD -aVF -biU -bjW -biU -aVF -blO -bmF -bnr -boa -boJ -bpq -bpq -bqU -brN -bGp -bsG -bsG -bsG -bsG -bww -bxj -blE -byv -byv -bzt -bzs -bkO -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aan -aan -aar -aar -aar -abw -abw -abw -abw -abx -adr -adL -aec -aeG -afg -aJA -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aJA -ajw -agw -age -age -aoX -apR -aqZ -arW -asT -aoX -agw -ajw -aws -axB -ayU -azU -aAA -aws -aBe -aBe -aBe -aBe -aBe -aBe -aBe -aGN -aHB -aHY -aIR -anz -anG -bGj -aLf -aLe -aLe -aLe -aLe -bFG -bFu -bFM -bGm -bFe -aQn -aQk -aSC -aTE -aUH -aVE -aWz -aXu -aYe -aZo -bap -bbu -bap -bap -bap -bap -bap -bgN -aZm -bik -biV -bjX -bap -aVF -blE -bmG -bns -bns -boK -bpr -bqe -bpr -brO -blE -btp -buc -buT -bvE -bwx -bxk -blE -aan -aan -bkO -bzt -bzs -bkO -byv -bkO -bkO -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aar -aar -aar -aar -abw -abw -abw -abw -abx -abx -abx -abx -aeP -abx -aJA -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aJA -akb -akc -aGH -agw -aoX -apS -ara -arX -asU -atL -agw -ajw -aws -axB -ayV -azV -aAB -aws -aBe -aCD -aDv -aEe -aEe -aFH -aGh -bqX -aHB -aHY -aIS -anz -aos -bGn -aLf -aPB -aOZ -aLK -aLe -aLe -aLf -bFV -aLe -aLe -aRa -aRD -aSD -aSF -aQk -aQk -aVF -aVF -aVF -aVF -bar -bbv -bcv -bdG -bap -bap -bap -bgO -bhE -aVF -biU -bjW -biU -aVF -blE -blE -blE -blE -blE -blE -bqf -bqk -brP -bqk -bps -bnn -bnn -bnn -bnn -bnn -blE -aan -aan -byv -bkO -bzt -bAu -buq -bAZ -bkO -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aar -aaK -abc -abz -abw -abw -abw -abw -abw -abw -abw -abw -aeF -adK -aJA -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aJA -alk -alk -aid -alk -aoX -apT -arb -gTr -aFx -aoX -auJ -auK -aws -axC -ayW -azW -aAC -aws -aBe -aCE -aDw -aCE -aCE -aFI -aCE -aGO -aHD -aHY -aIT -aBe -aKf -bFj -bDP -aLG -aKe -bEH -aLe -bFm -bFI -bFO -aPu -aLf -aRb -aRE -aSE -aSF -aRa -aVF -aVF -aXv -aYf -aVF -bas -bbw -bap -bdH -bap -bfw -bap -bgO -bhF -aVF -biT -bjV -bkC -aVF -aab -aab -aab -aab -aab -aab -bps -bqV -brQ -bsH -btq -bud -buU -bvF -bwy -bud -bud -aan -aan -aan -byv -byv -bkO -bkO -bBa -byv -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aar -aaL -abd -abA -abw -abw -abw -abw -abw -abw -abw -abw -aeF -adK -aJA -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aJA -alM -amG -afS -ajv -aoX -apU -apU -arY -asV -aoX -ajw -age -aws -axD -ayX -ayX -ayX -aws -aBe -aCF -aDx -aEf -aEW -aFJ -aGi -aGP -aHE -aIa -aIU -aBe -aKN -bFk -aLf -aLI -bGa -aLK -aLf -bFn -bFJ -aKM -aPv -aLe -aQk -aQk -aQk -aSF -aRb -aVF -aWA -aXw -aXw -aZp -bap -bbx -bcw -bdI -bap -bap -bap -bgO -bEl -aVF -biW -bjY -bkD -aVF -bkK -bkK -bkK -bkK -bkK -aab -bps -bqW -brR -bsI -btr -bud -buV -bvG -bwz -bxl -bud -aan -aan -aan -aan -aan -aan -bkO -bBa -byv -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aar -aaM -abe -abA -abw -abw -abw -abw -abw -abw -abw -abw -aeF -abw -aJA -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aJA -alN -amH -aie -agg -alk -apV -arc -aqa -asW -atM -auK -agw -aws -aws -aws -aws -aws -aws -aBe -aBe -aBe -aBe -aEX -aEX -aGj -aGQ -aEX -aEX -aBe -aBe -aML -anz -aLe -aLf -aPy -aLf -aLf -aMK -bFK -aKM -aPw -aLe -aRa -aRF -aSF -aTF -aUI -aVF -aWB -aXw -aYg -aVF -bat -bby -baq -bdJ -baq -baq -baq -bgP -bhH -bil -aVF -aVF -aVF -aVF -blP -bmH -bnt -bob -bkK -bps -bps -bps -brP -bps -bps -bud -buW -bvH -bwA -bxm -bxU -aan -aan -aan -aan -aan -aan -byv -bBa -bkO -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aar -aas -abf -abA -aar -aar -aar -abw -abw -abw -adM -adM -afk -adM -aeO -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aJA -alO -amH -aiI -agh -alk -apW -arc -aqa -asX -age -age -age -aws -axE -ayY -azX -aws -aws -awv -aCG -aDy -aOX -awv -aBj -axK -aGR -awv -awv -awv -awv -aCM -aLe -bGi -aMi -aMi -bEI -aLe -aMM -bFK -aKM -bFS -aLe -awt -awt -brU -aSF -aQk -aVF -aWC -aXw -aYh -aZq -aZq -bbz -aZq -aZq -bev -bfx -bfx -bgQ -bhI -bim -biX -aZq -bkE -bla -blQ -bmI -bla -boc -bkK -bps -bqg -bDU -brS -bqg -bqg -bud -buX -bvI -bud -bud -bud -bwF -bwF -bwF -aan -aan -aan -bkO -bBa -byv -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aas -aar -aar -abf -abA -abU -aar -aar -aar -aar -aar -adM -aed -afn -afH -aeO -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aJA -alP -amH -aie -agi -alk -apX -ard -arZ -asY -atN -auL -age -aws -amF -axF -azY -aws -aws -awv -aCH -aDz -awv -aEY -awv -axK -aGR -aEY -awv -awv -aJB -aKg -aOU -aMi -aMi -aMi -bEN -aOC -aMN -bFK -aOx -bFB -bFC -aLe -awt -awt -aTG -aUJ -aVF -aVF -aVF -aVF -aZq -bau -bbA -bcx -aZq -bew -bfy -bgl -bgR -bfy -bin -biY -aZq -bkF -blb -blR -bmJ -bnu -bla -bkK -bps -bqh -bqg -brT -bsJ -bsJ -bue -buY -bvJ -bwB -bxn -bxV -bxp -byV -bwF -aan -aan -aan -bkO -bzt -bAZ -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aas -aar -aar -abf -abB -abV -ack -abV -acF -aar -aar -adM -aee -afI -agm -aeO -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aJA -alQ -amH -aie -agk -alk -apY -are -asa -asY -aqa -auM -agX -awt -awt -ayZ -awt -awt -awv -awv -aCI -aDA -aDA -aDB -aDC -aGk -aGS -aDB -aDA -aDA -aCM -aKh -aLe -aMj -aMi -aPs -bEP -bFU -aMO -aNv -aOY -aQt -bFD -aLe -aYi -awv -aCI -awv -agX -aWD -aXx -agj -aZr -bav -bbB -bcy -aZq -bex -bfz -bgm -bgS -bfz -bio -biZ -bjZ -bkG -blc -blS -bmK -bnv -bod -bkK -bps -bqi -bqY -bDW -bqY -bqY -bqY -buZ -bvK -bwC -bxo -bxW -byw -byW -bwF -aan -aan -aan -bkO -bkO -bBa -bkO -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aas -aar -aaN -abf -abC -abc -abc -abc -acG -acT -aar -adM -aej -aeJ -agC -aeO -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aKc -aJA -alR -amI -aiL -agB -alk -agX -arf -asb -asY -atO -awU -agX -awu -axG -awv -azZ -aAD -awv -awv -aCI -aDA -aEg -aEZ -aDC -aGl -aGT -aFK -aIb -aDA -aCM -awv -aLe -bFq -aNx -bFR -bFi -aLf -aOD -bFv -aQr -bbJ -bFX -aLe -aRH -azb -aTH -aCP -aVG -agj -agj -agj -aZs -baw -bbB -bcz -bdK -bey -bfA -bgn -bgT -bhJ -bip -bja -bka -bkH -bld -bEr -bEv -bEA -boe -bkK -bps -bqg -bqg -brV -bsK -bsK -buf -buf -bvL -bwD -bxp -bxp -bxp -bxp -bwF -aan -aan -aan -aan -bkO -bBa -bkO -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aar -aaO -abg -abD -abD -acl -aay -acH -acU -ads -adM -adM -aeK -afk -aeO -aKL -aKL -aKL -aLE -aMc -aMc -aKd -aKL -aKL -aKL -aJA -alS -amJ -ajt -alS -alk -apZ -apW -asb -asY -aqa -auN -agX -aGo -axH -aza -aza -aAE -aza -aza -aCJ -baE -aEh -aFa -aFK -aGm -aGU -aDC -aIc -aDB -aJC -aAa -aLe -aLe -aLe -aLe -aLe -aLe -bFo -bFv -aQs -bFH -aMP -aLe -aRI -aCf -awv -aCQ -aVG -agj -agj -agj -aZq -bax -bbC -bcA -bdL -bez -bfB -aZq -aZq -bhK -biq -bjb -aZq -bkI -ble -blU -bmM -bEB -bof -boL -bps -bqj -bqg -brW -bsL -bts -bps -bps -bps -bwE -bxq -bxX -byx -byX -bwF -aan -aan -aan -aan -byv -bBa -bkO -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aan -aan -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aax -aaP -abf -abE -abW -abE -abE -aay -acV -adu -aeg -aeH -aeL -agG -aif -mbM -ajx -ajy -agj -aWF -agj -ajz -ajy -akF -aig -agj -agj -amK -ajA -agT -aoZ -aqa -aqa -asb -asY -aqa -aqa -avB -awv -axI -azb -aAa -awt -aBf -aCb -aCK -aDC -aEi -aFb -aDC -aGn -aEg -aFK -aId -aDC -aCM -aKj -aKP -aLe -aMg -aNT -aLF -aLf -aMh -bFv -aMP -bbJ -aPA -aLe -aRJ -aRJ -aRJ -aRJ -agX -aWE -agj -agj -aZq -bay -bbD -bcB -bdM -bez -bfC -bgo -bgU -bhL -biq -bjc -aZq -bkF -blf -blV -bmN -bEC -bog -boL -bps -bqk -bps -brX -boM -bqk -bps -bps -bps -bwF -bwF -bwF -bwF -bwF -bwF -aan -aan -aan -aan -bkO -bBa -bBr -bBr -bBr -bBr -bBr -bBr -bBr -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aay -aaQ -abh -abE -abX -acm -abE -acI -acW -adN -adO -aeh -aeM -afl -afL -afU -agV -agl -agl -ahC -aih -aih -aih -aih -akI -aih -aih -amL -ajB -agU -apa -aqb -aqb -asc -asZ -aqb -aqb -avC -aww -axJ -azc -aAb -awt -aBg -awv -aCL -aDD -aEj -aFc -aEj -bnI -aGV -aHF -aIe -aHF -aJD -awv -aKQ -aLe -aLd -aLH -aMe -aLf -bFp -bFw -aMP -bbJ -bEK -aLe -aRK -aSG -aTI -aRJ -aVH -afT -agj -bEd -aZq -aZq -bbE -bcC -aZq -beA -bfz -bgp -bgS -bhM -biq -bjd -aZq -bkJ -blg -blW -bla -blQ -boc -boL -bpt -bpt -bqZ -brY -bsM -bpt -bpt -boM -aab -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -byv -bFs -bBs -bBD -bBT -bCd -bCp -bCv -bBr -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aax -aaR -abi -abE -abW -abE -abE -acJ -acX -abf -aar -aei -aot -afm -afK -afV -bcE -agj -agj -ahD -agj -agj -agj -agj -akJ -agj -agj -ahB -agj -aov -apb -aqa -aqa -aqa -aqa -aqa -aqa -avB -awx -axK -azd -aAc -awt -aBh -aCc -aCM -aDC -aEg -aFd -aDC -aGp -aGW -aFK -aIf -aDC -aCM -aCc -aKR -aLe -aLJ -aMf -aPz -aOV -aPE -bFQ -aQp -bFL -bFE -aLe -aRL -aSH -aTJ -aRJ -aVI -afT -agj -agj -agj -agj -bbF -agj -bdN -beB -bfD -bgq -bgV -bfD -biq -bje -aZq -bkK -blh -blX -bmO -blQ -boh -boL -bpt -bpt -bqZ -brY -bsM -bpt -bpt -bva -bva -bva -bva -bva -bva -bva -bva -bva -bva -bva -aan -byv -bBa -bBr -bBE -bBU -bCe -bCq -bCw -bBr -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aar -aaS -abj -abF -abF -abF -abF -acK -adt -aef -adP -adP -aou -adP -adP -adP -agW -agj -agj -ahD -agj -agj -agj -agj -akJ -all -alT -amM -agj -aow -agX -aqa -arg -asd -ata -ata -auO -agX -awy -axL -awv -awv -aAD -awv -awv -aCN -dma -aEk -aFa -aFK -aGq -aGX -aDC -aIg -dma -aJE -aKk -aAc -aLe -aMk -aMQ -bqC -aLe -bFZ -bGh -aOW -bFT -bGl -aLe -aRM -aSI -aTK -aRJ -aVJ -afT -agj -aYk -aZt -aZt -bbG -bcD -bdO -beC -bfE -bgr -bfE -bfE -bir -bjf -aZq -bkK -bkK -bkK -bkK -bED -bkK -boL -bpu -bpt -bqZ -brY -bsM -bpt -bpu -bva -bvc -bvc -bvc -bvc -byy -bvc -bvc -bvc -bvc -bva -aan -bwH -bBa -bBr -bBF -bBV -bCf -bCq -bCx -bBr -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aar -aaT -abk -aay -aay -aay -aay -acL -acY -aar -adP -aeI -aeN -afM -adP -adQ -agY -ahx -agj -ahD -agj -agX -agX -akd -akK -adQ -adQ -adQ -adQ -afW -aoC -aqc -arh -ase -atb -atP -atP -agX -awz -axM -aze -aAd -aAF -aAd -aCd -aCO -aDA -aEi -aFe -aDC -aGp -aGY -aHG -aIh -aDA -aCM -awv -awv -aLe -aLe -aLe -aLe -aLe -aLf -aLf -bGb -bEJ -aLf -aLe -aRJ -aSJ -aRJ -aRJ -agX -aWE -agj -akJ -agj -agj -bbH -bcE -aZq -beD -bfF -bfF -bfF -bfF -bfz -bjg -aZq -bkL -bli -aWM -bcJ -bEx -bcJ -boM -bpt -bpt -bqZ -brY -bsM -bpt -bpt -bva -bvM -bvg -bxr -bvg -byz -byY -bvg -bzK -bvc -bva -aan -bwH -bBl -bBr -bBG -bBW -bCg -bCr -bCy -bBr -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aan -aar -aar -aar -abl -abG -abY -abG -abY -acM -aar -aar -adP -aek -afo -afN -adP -adQ -adQ -ahy -agZ -ahE -adQ -adQ -adQ -adQ -adQ -adQ -aem -amN -anH -adQ -aoC -aoC -aoC -aoC -atc -atc -atc -atc -awA -axN -azf -azf -atc -aBi -aCe -aCP -aDA -aDA -aDB -aDC -aGq -aGZ -aDB -aDA -aDA -aCM -awv -awv -aLg -awv -awv -awv -aDy -awv -aAD -awv -aPF -aQu -aRc -awv -aGR -awv -awv -aVG -aWF -agj -akJ -agj -agj -bbH -bcE -bdP -beE -bfG -bfG -bfG -bfG -bis -bjh -aZq -bkM -blj -aWM -bgW -bEx -bcJ -boM -bpv -bpt -bqZ -brY -bsM -bpt -bug -bva -bvc -bvg -bxs -bvg -byA -byZ -bvg -bzL -bvc -bva -aan -bwH -bBa -bBr -bBr -bBr -bBr -bBr -bBr -bBr -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aar -aar -aar -aar -aar -abZ -aar -aar -aar -aar -aar -adP -ael -afp -afO -afW -adQ -agn -ahz -aha -ahF -aem -aem -ajC -ake -ajC -aem -ajC -aem -aem -adQ -apc -apc -apc -apc -atc -atQ -auP -avD -awB -axO -azg -aAe -atc -aBj -aCf -aCQ -awv -awv -aFf -aFL -aGr -bDO -aHH -awv -awv -aJF -aKl -aKS -aAd -aAd -aMl -aMR -aNz -aza -aAE -aPa -aPG -aQv -aRd -aRd -aSK -aTL -aUK -aVK -aWG -aXy -aYl -aZu -baz -bbI -bcF -bEk -aZq -bdP -bdP -bdP -bdP -aZq -aZq -aZq -bcJ -blk -aWM -bcJ -bEx -bcJ -boM -bpu -bpt -bqZ -brY -bsM -bpt -bpu -bva -bvN -bvg -bxt -bvg -byB -bvg -bvg -bzM -bAg -bva -aan -bwH -bBa -byv -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aan -aan -aan -aar -aar -aar -aar -aar -aan -acZ -acZ -adP -adP -adP -adP -afW -adQ -ago -ahA -ahb -ahG -agE -aem -ajD -akf -ajC -ago -alU -aem -aeU -adQ -apc -apc -apc -apc -atc -atR -auQ -auQ -awB -axO -auQ -aAf -atc -aAI -aCg -aCg -aCg -aCg -aAI -aFM -aGs -aHb -aCg -aCg -aCg -aCg -aAI -aAI -awv -awv -awv -aCK -awv -awv -aAD -awv -aHa -aQw -awt -aRN -aRN -aRN -aRN -aVL -aWH -aVL -aRN -aRN -baA -bbH -bcE -agj -beF -agj -agj -agj -agj -bit -bji -bkb -bcJ -bll -bcJ -bcJ -bEx -boi -boM -bpt -bpt -bqZ -brZ -bsM -bpt -bpt -bva -bvO -bwG -bwG -bwG -bvb -bwG -bwG -bzN -bvc -bva -aan -bBb -bBa -bkO -aan -aan -bBK -bBK -bBK -bBK -bBK -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abm -abm -abm -abm -abm -abo -acB -acB -adQ -aem -aem -aem -aem -adQ -agp -aib -aem -ahH -agF -aem -ajE -akg -ajC -agq -alV -aem -anI -adQ -apc -apc -apc -apc -atd -atS -auR -auQ -awB -axP -azh -aAf -aAG -aBk -aBl -aCR -aDE -aEl -aDE -aFN -aGt -aHc -aHI -aIi -aIV -aJG -aKm -aAI -aLh -aLM -aLM -aMS -aLM -aLh -aLh -aPb -aPH -aQx -aPQ -aRO -aSL -aTM -aUL -aRO -aWI -aXz -aYm -aRN -bEf -bcG -beG -bhO -blm -blm -bhO -bhO -bmL -biu -bjk -bkb -bcJ -bEq -blZ -bEw -bEz -boi -boM -bpt -bpt -bqZ -bsa -bsN -btt -buh -bva -bvP -bvg -bvg -bvg -byC -bvg -bvg -bvg -bvc -bva -aan -bwH -bBa -bBt -aan -bBK -bBI -bBI -bBI -bBI -bBI -bBH -aan -aan -aan -aan -aan -aac -aan -aan -aan -aan -aan -aan -aan -aan -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abn -abn -abn -abn -abn -abo -acN -adv -adQ -aem -aeQ -aen -aen -aen -aen -aic -aen -ahI -aii -aiM -aii -akh -aii -aii -aii -amO -anJ -adQ -apc -apc -apc -apc -atc -atT -auQ -auQ -awC -axQ -azi -aAg -aAH -aBl -aCh -aCS -aDF -aEm -aEm -aEm -aEm -aEm -aEm -aIj -aIW -aJH -aBl -aKT -aLi -aLi -aLi -aMT -aLi -aNU -aLh -aPb -aPH -aQx -aPQ -aRO -aRO -aTN -aUM -aRP -aRO -aRO -aRO -aZv -baB -bbH -bcE -agj -baB -bfH -bgs -bfH -bhN -bit -bEi -bkc -bcJ -aWM -aWM -bEx -bcJ -boi -boM -bpu -bql -bqZ -brY -bsM -bql -bpu -bva -bvP -bEn -bxu -bxY -byD -bza -bDS -bzO -bAh -bva -aan -bwH -bBa -byv -aan -bBI -bBI -bCs -bCz -bCA -bBI -bBI -aan -aan -aan -aan -aan -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abo -abH -aca -acn -acy -abo -acN -adw -adQ -aem -aeR -aem -aem -aem -aem -agH -aem -ahJ -aij -aiN -ajF -aki -ajF -ajF -ajF -amP -anK -adQ -apc -apc -apc -apc -atc -atU -auS -auS -awD -axR -azj -aAg -azf -aBm -aBl -aCT -aDG -aEn -aEn -aEn -aEn -aEn -aEn -aIk -aIX -aBl -aBm -aAI -aLi -aLi -aLi -aMT -aLi -aNU -aLh -aPc -aPH -aRg -aPQ -aRP -aRP -aRP -aRO -aRO -aWJ -aRO -aYn -aZw -agj -bbH -bcE -bdR -agj -bfI -agX -bfI -agX -bit -bjl -bkd -bcJ -bcJ -bcJ -bEy -bcJ -bcJ -boN -boN -bqm -boN -bsb -boN -bqm -boN -bva -bvP -bvg -bvg -bvg -byE -bvg -bvg -bvg -bvc -bva -aan -bwH -bBa -bkO -aan -bBI -bCh -bBY -bBY -bBY -bCH -bBI -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abo -abI -acb -abJ -abJ -abo -acN -acN -adQ -aem -aeR -aem -aem -aem -aem -agH -aem -aem -aik -aiO -aem -akj -aem -aem -aem -amQ -anJ -adQ -apc -apc -apc -apc -atc -atV -auQ -auQ -awE -axS -azi -aAg -azf -aBn -aKs -aCT -aDH -aEo -aEo -aEo -aEo -aEo -aEo -aIl -aIX -aBl -aKn -aAI -aLj -aLp -aMm -aMU -aNA -aNV -aLh -aPd -aPH -aQx -aPQ -aRP -aRP -aTO -aRO -aVM -aWK -aXA -aYo -aZx -baC -bcI -bcH -agj -agj -bfI -bfI -bfI -bfI -bit -bjm -bke -bcJ -bjq -bEs -bEz -aWM -bjq -boN -bpw -bqn -bra -bsc -bsO -btu -bui -bvb -bvR -bwG -bwG -bwG -bvb -bwG -bwG -bzP -bvc -bva -aan -bwH -bBa -byv -aan -bBI -bCh -bBY -bBY -bBY -bCH -bBI -aan -aan -aan -aan -aan -aan -bBI -bBI -bBI -bBI -bBI -bBI -bBI -aan -aan -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abo -abJ -abM -aco -acz -abo -ada -acN -adQ -aem -aeR -adQ -adQ -adQ -ago -agI -aem -ago -ail -aiP -ajD -akk -ajC -ago -agE -amR -aeU -adQ -apc -apc -apc -apc -atc -atW -auR -auQ -auQ -axT -azk -aAf -azf -aBo -aBl -aCT -aDH -aEo -aEo -aEo -aEo -aEo -aEo -aIl -aIX -aBl -aKo -aAI -aLk -aLp -aMn -aLp -aLp -aNW -aLh -aPb -aPH -aQx -aPQ -aRO -aRO -aTP -aRO -aRO -aRO -aRO -aRO -aZv -agj -aov -agj -agj -agj -bcJ -bcJ -bcJ -bcJ -bcJ -bjn -bkf -bkN -bkN -bEt -aWM -bjq -bjq -boN -bpx -bqo -brb -bsd -bsP -btv -buj -bvc -bvP -bvg -bvg -bvg -byF -bvg -bvg -bzQ -bAi -bva -aan -bwH -bBa -byv -aan -bBI -bCh -bBY -bBY -bBY -bCI -bBI -aan -aan -aan -aan -aan -bBI -bBI -bDa -bDa -bDa -bDa -bDa -bBI -bBI -aan -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abo -abo -abM -abo -abo -abo -adb -adx -adR -aen -aeS -adQ -aan -adQ -agq -agJ -aem -agq -aim -aem -ajE -akl -ajC -agq -alV -amS -anL -adQ -aoC -aoC -aoC -aoC -atc -atX -auQ -auQ -auQ -axU -azl -aAh -atc -aBp -aBl -aCT -aDH -aEo -aEo -aEo -aEo -aEo -aEo -aIl -aIX -aBl -aBp -aAI -aLl -aLp -aMn -aLp -aLp -aNX -aLh -aPb -aPH -aQy -aPQ -aRO -aRO -aTQ -aRO -aTO -aRO -aRO -aRO -aZw -baD -bdQ -bfJ -bjo -bjo -blT -blZ -blZ -bnw -bnw -bEo -bEp -blZ -blZ -bEu -bjq -bjq -bjq -boN -bpy -bqp -brc -bse -bsQ -btw -buk -bvd -bvS -bvg -bxv -bvg -byG -bzb -bvg -bzR -bvc -bva -aan -bwH -bBa -bkO -aan -bBI -bCi -bCt -bCt -bCB -bBI -bBI -bBI -bBI -bBI -bBI -bBI -bBI -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bBI -bBI -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abo -abK -abM -acp -acA -abo -adc -ady -adQ -aem -aem -adQ -aan -adQ -adQ -agK -agD -ahK -ain -agD -ajG -akm -akL -alm -alW -amT -afW -adQ -aoC -aoC -aoC -asf -atc -atQ -auT -avE -awF -auQ -auQ -aAi -atc -aBq -aBl -aCT -aDI -aEo -aEp -aEp -aEo -aEo -aEo -aIl -aIX -aBl -aKp -aKU -aLl -aLp -aMo -aMV -aLp -aNY -aLh -aPe -aPI -aQz -aPQ -aRO -aRO -aTR -aUN -aRO -aWL -aRO -aYp -aRN -agX -agX -agX -bdS -beH -bfK -bfK -bfK -bfK -biv -bjp -bcJ -bcJ -bln -bma -bln -bln -bln -boN -bpz -bqq -brc -bsd -bDX -brc -bul -bvc -bvc -bvg -bxw -bvg -byH -bzc -bvg -bzS -bvc -bva -aan -bwH -bBa -bkO -aan -bBI -bCj -bBY -bBY -bBY -bCJ -bCR -bBI -bDa -bDb -bBI -bBI -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bBI -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abo -abL -abJ -abM -abM -abo -add -ady -adQ -aem -aem -adQ -aan -aan -adQ -adQ -adQ -adQ -adQ -adQ -adQ -akn -adQ -adQ -adQ -amU -afW -aox -aox -aoC -aoC -aoC -atc -atc -atc -atc -atc -atc -atc -aAj -atc -aBp -aBl -aCT -aDI -aEp -aEp -aEp -aEp -aEo -aEo -aIm -aIX -aBl -aBp -aAI -aLm -aLp -aMn -bvQ -aLp -aNZ -aLh -aPb -aPH -aQx -aRe -aRN -aSM -aRN -aRN -aRN -aRN -aRN -aRN -aRN -aWM -bbL -bcJ -bcJ -bcJ -bcJ -bcJ -bgW -bcJ -bcJ -bcJ -bcJ -bjq -blo -bmb -bmP -bnx -boj -boN -bpA -bqr -brd -bsf -bsR -btx -bum -bvc -bvc -bvc -bvc -bvc -byI -bvc -bvc -bvc -bvc -bva -aan -bBb -bBa -bwH -bBH -bBI -bCk -bBY -bBY -bBY -bCK -bCS -bBI -bDa -bDa -bDe -bBI -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bBI -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abp -abM -acb -acq -abJ -abo -ade -ady -adQ -aem -aem -adQ -aan -aan -aan -adQ -adQ -ahL -adQ -aiQ -ajH -ako -adQ -aln -alX -amV -adQ -aox -aox -aoC -ari -aoC -aan -aan -aan -aan -aan -aan -aan -aan -aAI -aBr -aBl -aCT -aDI -aEp -aEp -aEp -aEp -aEp -aEp -aIm -aIX -aBl -aKq -aAI -aLn -aLp -aMn -aLp -aLp -aLp -aLM -aPb -aPH -aQx -aRf -aRQ -aSN -aTS -aRW -aVN -aWM -aWM -aWM -aWM -aWM -aWM -aWM -aWM -aWM -aWM -aWM -aWM -aWM -bcJ -bjq -bjq -bjq -blp -bmc -bmQ -bnx -blq -boN -bpB -bqs -bre -boN -boN -bty -boN -bve -bva -bva -bva -bva -bva -bva -bva -bva -bva -bva -aan -bwH -bBa -bwH -bBI -bBI -bCl -bBY -bBY -bBY -bCL -bCT -bCZ -bCZ -bDc -bDa -bBI -bDa -bDa -bDa -bDa -bDa -bDk -bDa -bDa -bDa -bBI -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abq -abN -aaq -acr -acr -acB -adc -ady -adQ -aem -aem -adQ -aan -aan -aan -adQ -ahc -ahM -ahc -aiR -ahc -ahc -ahc -alo -aem -amR -adQ -aoy -aoy -aqd -aoy -aoC -aan -aan -aan -aan -aan -aan -aan -aan -aAI -aBs -aBl -aCT -aDI -aEp -aEp -aEp -aEp -aEp -aEp -aIm -aIX -aBl -aKr -aAI -aLn -aLN -aMp -aLq -aNB -aOa -aOG -aPf -aPJ -aQA -aRe -aRR -aSO -aRS -aUO -aVO -aVO -aVO -aVO -aVO -baF -baF -baF -baF -beI -beI -beI -beI -bhP -bhP -bhP -bhP -bjq -blq -bmd -bmR -bny -bok -boN -bpC -bpC -bpC -bpC -boN -btz -boN -bvf -bva -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -bwH -bBa -bwH -bBJ -bBX -bBY -bBY -bBY -bBY -bCM -bCU -bDa -bDa -bDd -bDa -bDg -bDa -bDa -bDh -bDi -bDj -bDl -bDa -bDa -bDa -bBI -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -abq -abq -abq -abq -abq -acB -adf -adz -adQ -aem -aeT -adQ -aan -aan -aan -aan -ahc -ahN -aio -aiS -aiS -akp -akM -alp -alY -amW -adQ -aoy -aoy -aqe -arj -aoC -aan -aan -aan -aan -aan -aan -aan -aan -aAI -aBt -aBl -aCT -aDJ -aEq -aEq -aEq -aEq -aEq -aEq -aIn -aIX -aBl -aBm -aAI -aLn -aLO -aMq -aMW -aNC -aLp -aLM -aPb -aPK -aQx -aRf -aRS -aSO -aRS -aUP -aVO -aWN -aWN -aWN -aVO -baG -baG -baG -baF -beJ -beJ -beJ -beI -bhQ -bhQ -bhQ -bhP -bjq -blp -bmd -bmS -bnz -blp -boO -bpD -bpD -bpD -bkO -boN -btA -bun -bvg -bva -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -bkO -bBl -bwH -bBJ -bBX -bBY -bBY -bBY -bBY -bCD -bCV -bDa -bDa -bDa -bDa -bBI -bDa -bDa -bDa -bDa -bDa -bDm -bDa -bDa -bDa -bBI -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aaz -aaz -aaz -aaz -aaz -aaz -aaz -acB -adg -adA -adQ -aem -aem -adQ -aan -aan -aan -aan -ahc -ahO -aip -aiS -ajI -aiS -akN -aem -aem -amX -aii -aoz -aoz -aqf -ark -aoC -aan -aan -aan -aan -aan -aan -aan -aan -aAI -aBu -aBl -aCU -aBl -aBl -aBl -aBl -aBl -aBl -aBl -aIo -aIY -aJI -aKs -aAI -aLo -aLP -aMr -aMX -aND -aOb -aLh -aLh -bDQ -aQB -aRe -aRT -aSO -aRS -aUQ -aVO -aWN -aWN -aWN -aVO -baG -baG -baG -baF -beJ -beJ -beJ -beI -bhQ -bhQ -bhQ -bhP -bjq -blp -bme -bmT -blq -blq -boO -bls -bls -bls -bkO -boN -boN -boN -bva -bva -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -bBa -byu -byu -bBI -bCm -bCu -bCu -bCC -bCN -bCW -bDa -bDa -bDa -bDf -bBI -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bBI -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aan -aan -aan -aan -aan -aan -aan -acB -adh -adB -adQ -aem -aeU -adQ -aan -aan -aan -aan -ahc -ahP -aip -aiT -aiS -akq -akO -alq -alq -amY -anM -aoA -apd -aqg -aoy -aoC -aan -aan -auU -auU -auU -auU -auU -auU -auU -aBv -aCi -aCV -aDK -aBl -aDK -aFO -aGu -aDK -aCV -aIp -aIZ -aDK -aBt -aAI -aLh -aLO -aLh -aLh -aLh -aLh -aLh -aLh -aPM -aQx -aRf -aRS -aSP -aRS -aRW -aVO -aWN -aWN -aWN -aVO -baG -baG -baG -baF -beJ -beJ -beJ -beI -bhQ -bhQ -bhQ -bhP -bjq -blr -bmf -bmU -bnA -bok -boP -bpE -bpE -bpE -bkO -bsS -bsS -bsS -bsS -bsS -bkO -bkO -bkO -bkO -bkO -bkO -bkO -aan -aan -bkO -bBc -bBm -aan -aan -bBI -bCn -bBY -bBY -bCD -bCO -bCX -bBI -bDa -bDa -bDe -bBI -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bBI -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aan -aan -aan -aan -aan -aan -aan -acB -adg -adB -adQ -aem -aem -adQ -aan -aan -aan -aan -ahc -ahQ -aiq -aiU -ajJ -akr -akM -aem -aem -aem -aem -aoy -aoy -aqh -arl -aoC -aan -aan -auV -avF -awG -axV -avF -aAk -auU -auU -aAI -aCW -aCW -aEr -aCW -aCW -aCW -aCW -aCW -aIq -aCW -aCW -aCW -aCW -aLp -aLO -aLh -aMY -aNE -aOc -aOb -aLh -aPH -aQx -aRe -aRU -aSQ -aTT -aUR -aVO -aWN -aWN -aWN -aVO -baG -baG -baG -baF -beJ -beJ -beJ -beI -bhQ -bhQ -bhQ -bhP -bcJ -bln -bma -bmV -bln -bln -boO -bls -bls -bls -bkO -bsS -bkO -bkO -bkO -bkO -bkO -bxx -bls -byJ -bls -bls -bkO -aan -aan -bkO -bBa -bkO -aan -bBK -bBI -bCo -bCo -bBY -bCE -bCP -bCY -bBI -bDa -bDb -bBI -bBI -bBI -bDa -bDa -bDa -bDa -bDa -bDa -bDa -bBI -bBI -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aan -aan -aan -aan -aan -aan -aan -acB -acN -adB -adQ -aeo -aem -adQ -aan -aan -aan -aan -ahc -ahR -air -aiV -ajK -aks -akN -alr -alZ -alr -adQ -aoB -aoB -aqi -arm -aoC -aan -aan -auU -avG -awH -axW -azm -aAl -aAJ -auU -aan -aCW -aDL -aEs -aDL -aCW -aGv -aHd -aHJ -aIr -aJa -aJJ -aKt -aKV -aLq -aLQ -aMs -aLp -aLp -aOd -aOH -aPg -aPN -aQC -aRe -aRV -aSR -aTU -aUS -aVO -aWN -aWN -aWN -aVO -baG -baG -baG -baF -beJ -beJ -beJ -beI -bhQ -bhQ -bhQ -bhP -bkO -bls -bmg -bmW -bmW -bmW -bmW -bmW -bmW -brf -bls -bls -bls -bls -bls -bls -bls -bls -bls -bls -bls -bpD -bkO -aan -aan -bkO -bBa -bkO -bsS -bBI -bBI -bBI -bCt -bCt -bCF -bBI -bBI -bBI -bBI -bBI -bBI -aac -bBI -bBI -bDa -bDa -bDa -bDa -bDa -bBI -bBI -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aad -aan -aan -aan -aan -aan -aan -acB -acN -adB -adQ -adQ -adQ -adQ -acB -acB -aan -aan -ahc -ahc -ahc -ahc -ahc -ahc -ahc -adQ -ama -adQ -adQ -aoC -aoC -aoC -aoC -aoC -aan -aan -auU -auU -awI -axX -azn -auU -aAK -auU -aan -aCW -aDM -aEt -aFg -aFP -aGw -aHe -aHK -aIs -aJb -aHK -aKu -aCW -aLp -aLp -aMt -aMZ -aNF -aOe -aOI -aMt -aPH -aQx -aRe -aRW -aSS -aTV -aRW -aVO -aWN -aWN -aWN -aVO -baG -baG -baG -baF -beJ -beJ -beJ -beI -bhQ -bhQ -bhQ -bhP -bkO -blt -bls -bls -bkO -bkO -boQ -bls -bls -brg -bls -bls -bls -bls -bls -bkO -bls -bls -bls -bls -bls -bls -bkO -aan -aan -bkO -bBa -bkO -bkO -bBI -bBY -bBY -bBY -bBY -bCE -bBY -bBI -aac -aac -aac -aac -aac -aac -bBI -bBI -bBI -bBI -bBI -bBI -bBI -aac -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aad -aan -aan -aan -aan -aan -aan -acB -acN -adC -adS -adw -acN -acN -acN -acB -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -amb -aac -aac -aan -aan -aan -aan -aan -aan -aan -auU -auU -auU -axY -auU -auU -auU -aan -aan -aCW -aDN -aEu -aDN -aCW -aGx -aCW -aGx -aCW -aJc -aCW -aKv -aCW -aLr -aLp -aLh -aLh -aLh -aLh -aLh -aLh -aPO -aQD -aRe -aRe -aST -aRe -aRe -aVO -aWO -aXB -aYq -aVO -baH -bbM -bcK -baF -beK -bfL -bgt -beI -bhR -biw -bjr -bhP -aUT -aUT -aUT -bmX -aUT -aUT -bkO -bkO -bkO -brg -bkO -bkO -bkO -buo -bvh -bkO -bwH -bwH -bxz -bwH -bwH -bpE -bkO -aan -aan -aan -bBd -bBn -bzv -bBL -bBZ -bBZ -bBZ -bBZ -bCG -bBY -bBI -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aad -aad -aan -aan -aan -aan -aan -acB -acN -adD -adT -adT -adT -afq -afP -acB -aan -agL -agL -agL -agL -agL -agL -agL -agL -agL -ais -agL -agL -aan -aan -aan -arn -arn -arn -arn -arn -arn -arn -axZ -arn -arn -arn -aan -aan -aCW -aDO -aEv -aEv -aCW -aGy -aCW -aGy -aCW -aGy -aCW -aKw -aCW -aLp -aLp -aMu -aMZ -aNG -aOf -aOI -aMu -aPH -aQE -bmp -aRX -aSU -aTW -aUT -aVO -aWP -aXC -aYr -aVO -baI -bbN -bcL -baF -beL -bfM -bgu -beI -bhS -bix -bjs -bhP -bkP -aUT -bmh -bmY -bnB -aUT -bls -bls -bls -brg -bls -bls -bkO -bup -bls -bkO -bwH -bxy -bxZ -bwH -bwH -bls -bkO -bAj -aan -aan -bBa -bkO -bkO -bBI -bBY -bBY -bBY -bBY -bBY -bBY -bBI -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aan -aan -acB -acB -adi -adE -acB -adi -acB -acB -adC -acB -aan -agL -ahd -ahe -ahe -ahe -ahe -ahe -agL -als -ais -als -agL -aan -aan -aan -arn -arn -arn -atY -auW -avH -arn -aya -arn -arn -arn -arn -aan -aCW -aDP -aEv -aFh -aCW -aCW -aCW -aCW -aCW -aCW -aCW -aCW -aCW -aLp -aLp -aMv -aLp -aLp -aOg -aOH -aPh -aPN -aQF -aPb -aPb -aSV -aPb -aUT -aVO -aVO -aVO -aYs -aVO -baF -baF -bcM -baF -beI -beI -bgv -beI -bhP -bhP -bjt -bhP -aUT -aUT -bmi -bmZ -bnC -bol -boR -boR -boR -brh -bmW -bmW -bmW -buq -bmW -bvT -bwH -bxz -bxz -bwH -bwH -bzu -bzT -bAk -bkO -bkO -bBe -bAZ -bkO -bBI -bBY -bBY -bBY -bBY -bBY -bCQ -bBH -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aan -aan -acB -acN -acN -acB -acN -acN -acN -acB -adB -acB -aan -agL -ahd -ahe -ais -aiW -ais -ahe -agL -ahe -ais -ahe -agL -aan -aan -aan -arn -arn -ate -atZ -auX -auX -awJ -ayb -azo -aAm -arn -arn -aan -aCW -aCW -aEw -aCW -aCW -aGz -anO -aCj -aGz -aGz -anO -aeq -aeq -aLs -aLh -aLh -aMY -aNH -aOh -aOb -aLh -aPP -aQG -aRh -aRY -aSW -aTX -aUU -aVP -aVP -aXD -aYt -aZy -baJ -bbO -bcN -aZy -beM -bfN -bgw -bgX -baJ -biy -bju -aZy -baJ -blu -bmj -bna -bnD -aUT -bls -bls -bls -bri -bls -bls -bkO -bur -bls -brg -bls -bls -bls -bls -bzd -boQ -bzU -bAl -blt -bkO -bkO -bBo -bkO -bBI -bBY -bBY -bBY -bBY -bBY -bBH -bBH -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aan -aan -acB -acN -acN -acB -acN -acN -adS -acB -adB -acB -aan -agL -ahe -ahe -ait -aiX -ajL -ahe -agL -ahe -ais -ahe -agL -aan -aan -aan -arn -arn -atf -aua -auX -avI -awK -ayc -awK -aAn -arn -arn -aan -aeY -aeY -aeY -aeY -aFQ -aeY -aFo -aeY -aCj -aGz -aGz -aGz -aGz -aGz -apf -aLh -aLh -aLh -aLh -aLh -aLh -aPb -aPb -aPb -aRZ -aPb -aPb -aUV -aVQ -aVQ -aXE -aYu -aZz -aVQ -bbP -bcO -bdT -beN -bfO -aVQ -bgY -aVQ -biz -beN -bfO -aVQ -blv -bmk -bmZ -bnE -aUT -bkO -bkO -bkO -brj -bkO -bkO -bkO -bkO -bkO -bvU -bmW -bmW -bmW -bmW -bze -bzv -bzv -bAm -bmW -bAM -bBf -bBm -bkO -byu -byu -aan -aan -aan -byu -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aan -aan -aan -aan -aan -abq -acB -aan -acB -afr -adB -acB -aan -agL -ahf -ahe -ait -aiY -ajL -ais -akP -ais -ais -ahe -agL -aan -aan -aan -arn -arn -atg -aub -auY -auY -auY -ayd -azp -aAo -arn -arn -aan -aCj -aDQ -aDR -aDQ -aDQ -aDQ -aHf -aHf -aHf -aHf -aHf -aHf -aeq -aGz -aFo -aeY -aCj -aGz -aGz -aGz -aCl -aPb -aQH -aPQ -aSa -aSX -aPQ -aUW -aUW -aUW -aUW -aYv -aUW -aUW -bbQ -bbQ -bbQ -beO -bbQ -bbQ -bgZ -bgZ -bgZ -bjv -bgZ -bgZ -aUT -bml -bmZ -bmZ -aUT -boS -bpF -bqt -brk -bsg -bpF -bpF -bkO -bls -bls -bls -bkO -bkO -bkO -bkO -bzw -bkO -bkO -bkO -bAN -bkO -bBp -bkO -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -acB -acN -adB -acB -aan -agL -ahe -ahe -ait -aiY -ajL -ais -akP -ais -ais -ahe -agL -aan -aan -aan -arn -arn -ath -auc -auX -avJ -awL -aye -azq -aAp -arn -arn -awM -aeY -aDQ -aEx -aFi -aiJ -aEy -aHf -aHL -aIt -aJd -aIu -aHf -aeq -aeq -aeq -aeq -aeq -aeq -aeq -aeq -aeq -aPQ -aPQ -aPQ -aSb -aSf -aTY -aUW -aVR -aWQ -aUW -aYw -aZA -aUW -bbR -bcP -bdU -beP -bfP -bbQ -bha -bhT -biA -bjw -bkg -bgZ -aUT -bmm -bmZ -bmZ -bom -bon -bon -bon -bon -bon -bom -bpF -bkO -aan -aan -aan -bkO -bkO -bls -bkO -boQ -bzV -boQ -bkO -brg -bkO -boQ -bkO -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -afr -adB -acB -aan -agL -ahe -ahe -ait -aiX -ajL -ahe -agL -ahe -ahe -ahe -agL -aan -aan -aan -arn -arn -ate -aud -auX -auX -auX -ayf -azr -aAm -arn -arn -awM -aeY -aDR -aEy -aFj -aFj -aGA -aHf -aHM -aIu -aIu -aIt -aHf -aan -aan -aeq -aeY -aeq -aNI -aOi -aeq -aeq -aOi -aeq -aPQ -aSb -aSf -aTZ -aUW -aVS -aWR -aXF -aYx -aZB -baK -bbS -bcQ -bdV -beQ -bfQ -bdU -bhb -bhU -biB -bjx -bkh -bgZ -aUT -bmn -bmZ -bnF -bon -boT -boT -boT -boT -boT -bon -btB -bkO -aan -aan -aan -bkO -bls -bls -bzf -boQ -boQ -boQ -aac -brg -bkO -bkO -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -adF -acB -adB -acB -aan -agL -ahd -ahe -ais -aiZ -ais -ahe -agL -ahe -ahe -ahe -agL -aan -aan -aan -arn -arn -arn -aue -auZ -avK -arn -arn -arn -arn -arn -arn -aac -aCj -aDQ -aEy -aFk -aFS -aEy -aHf -aHN -aIv -aJe -aJK -aHf -aan -aan -aeq -aeY -aeq -aNJ -aOi -aOJ -aPi -aPR -aNJ -aPQ -aSc -aSf -bDZ -aUW -aVT -aWS -aUW -aYy -aZC -aUW -bbT -bcR -bbQ -beR -bfR -bbQ -bhc -bhV -bgZ -bjy -bki -bgZ -aUT -bmo -bmZ -bnG -boo -boT -boT -boT -boT -boT -bon -btC -bkO -aan -aan -aan -aan -bya -bls -bkO -bzx -boQ -bAn -aac -brg -bkO -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -acB -adB -acB -aan -agL -ahg -ahe -ahe -ahe -ahe -ahe -agL -ahe -ahe -amZ -agL -aan -aan -aan -aan -arn -arn -arn -arn -arn -arn -arn -arn -arn -arn -aac -aeq -aeY -aDQ -aEy -aEy -aCs -aGA -aHf -aHf -aIw -aHf -aHf -aan -aFo -aeY -aCj -aMw -aeq -aNJ -aOj -aOJ -aPj -aPS -aNJ -aPQ -aSd -aSY -aUa -aUW -aUW -aUW -aUW -aYz -aZD -aUW -bbQ -bbQ -bbQ -beS -bfS -bbQ -bgZ -bgZ -bgZ -bjz -bkj -bgZ -aUT -bDY -bmZ -bnG -boo -boT -boT -boT -boT -boT -bon -btD -bkO -btE -btE -btE -btE -bls -bls -bkO -bzy -boQ -bkO -bkO -brg -bkO -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -adF -adF -adF -adF -acB -adB -acB -aan -agL -agL -agL -agL -agL -agL -agL -agL -agL -agL -agL -agL -aan -aan -aan -aan -aan -arn -arn -arn -arn -arn -aac -aac -aac -aac -aac -aeq -aeY -aDQ -aiC -aFl -aFU -aGB -aDQ -aan -aan -aan -aeq -aCX -ayg -ayg -ayg -ayg -aNa -aeY -aOi -aOK -aOK -aOi -aQI -aPQ -aSe -aSZ -aUb -aUX -aUW -aWT -aXG -aYy -aZE -aUW -bbU -bcS -bcT -beR -bfT -bbQ -bhd -bgZ -biC -bjy -bkk -bgZ -aUT -bmq -bmZ -bnG -boo -boT -boT -boT -boT -boT -bon -btE -btE -bvi -bvV -bwI -btE -bls -bls -byv -boQ -bzW -bkO -bkO -brg -bkO -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -adF -adU -aep -aeV -acB -adB -acB -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -awM -aeq -aeY -aDQ -aEA -aDQ -aDQ -aEA -aDQ -aeq -aeq -aan -aeY -aCY -ahj -aeY -alt -anO -aNb -aNJ -aOj -aOL -aOL -aPS -aNJ -aPQ -aSf -aSf -aSf -aUY -aUW -aWU -aXH -aYA -aZF -aUW -bbV -bcT -bdW -beT -bfU -bbQ -bhd -bgZ -biD -bjA -bkl -bgZ -aUT -bmr -bmZ -bnF -bop -boT -boT -boT -boT -boT -bon -btE -bus -bvj -bvW -bwJ -btE -bls -bls -byv -bzz -boQ -bkO -bkO -brg -bkO -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -adF -adV -adV -aeW -afs -adB -acB -acB -acB -aeq -aeq -aeq -aeq -aeq -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -awM -aeY -aeY -aan -aan -aan -aan -aan -aan -aan -aeY -aeY -aFo -aCY -aeY -aeq -aeq -aeq -aNc -aNJ -aOk -aeY -ahh -aPS -aNJ -aPQ -aSg -aSf -aSf -aUZ -aUW -aWT -aXG -aYB -aZG -aUW -bbU -bcS -bdX -beU -bfV -bbQ -bhd -bgZ -biE -bjB -bkm -bgZ -aUT -bms -bmZ -bmZ -bom -bon -bon -bon -bon -bon -bom -btE -but -bvj -bvX -bwK -btE -bls -bls -bkO -bkO -bzX -bkO -bkO -brg -bkO -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -adF -adW -adV -aeX -acB -adB -acN -adw -acB -ahh -aeY -aeY -aja -aeq -aeq -aeq -awM -awM -aeq -aeq -aeq -ape -aeq -aeq -aac -aac -aeq -aeq -aeq -awM -aeq -awM -aeq -aeq -aeq -aCj -aCX -aDS -ayg -aFm -aeY -aeY -aan -aeY -aCj -aeY -aCX -aKx -aan -abq -acr -aeY -aNb -aNK -aeq -aNK -aeq -aeq -aNK -aPQ -aPQ -aSf -aSf -aVa -aUW -aUW -aUW -aUW -aUW -aUW -bbQ -bbQ -bbQ -bbQ -bbQ -bbQ -bhd -bgZ -bgZ -bgZ -bgZ -bgZ -aUT -bmk -bmZ -bnH -aUT -bos -bos -bos -bos -bos -bos -btE -buu -bvj -bvY -bwL -btE -bls -bls -bls -bls -bls -bls -bkO -brg -bls -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -adF -adF -adF -adF -acB -adD -adT -adT -agM -ahi -ahS -ahi -ajb -ajM -ajb -akQ -ajb -ajb -ajb -ajb -aoD -apf -aqj -aeq -aeq -aac -aeq -ava -avL -aeY -aeY -aeq -aeq -aAL -aBx -aeY -aCY -aeq -aCj -aFn -ayg -ayg -ayg -ayg -ayg -aJf -aJL -aeq -aan -abq -acZ -aeY -aNd -ahi -aOl -aOM -aOM -aOM -aOM -aeY -aPQ -aTa -aSf -aVb -aVd -aWV -aXI -aYC -aZH -baL -bbW -bcU -bdY -beV -bfW -baL -bhe -bhf -biF -bjC -bkn -bhf -blw -bmk -bmZ -bmZ -aUT -bos -boU -bos -boU -bos -boU -btE -btE -bvk -bvZ -bwM -btE -byb -bls -bwc -bls -bpD -bwc -bkO -bAO -bls -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -afr -acB -aan -acB -aeq -aeY -aeY -aeq -aeq -aeq -aeq -alt -aeq -aeq -anN -aoE -ahi -ahS -ahS -ahS -ahi -auf -auf -avM -awN -ayg -azs -ajb -ajb -ajb -aCk -aCZ -aeq -aan -aan -aeq -aeq -aeq -aeq -aeq -aac -aac -aac -aan -abq -acZ -aeY -aNe -ahi -aOl -aOM -aOM -aOM -aOM -aeY -aPQ -aTb -aSf -aVc -aVd -aWW -aXJ -aYD -aZI -baL -bbX -bcV -bdZ -beW -bfX -baL -bhe -bhf -biG -bjD -bko -bhf -blx -bmk -bmZ -bDR -aUT -bos -bFr -bqu -brl -bsh -bsT -bos -btE -btE -btE -btE -btE -aan -bls -bls -bls -bls -aac -aac -brg -bkO -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -acB -acB -aan -aan -aan -aeY -aeY -aeq -ajN -aeq -aan -aan -aan -aeq -anO -aeY -apg -aqk -aro -aeq -awM -awM -aeq -avN -awO -ayh -aeq -aeq -aeq -aeq -aCl -aeq -aeq -aan -aFo -aeY -aFo -aan -aan -aan -aac -aac -aac -aan -abq -acZ -aeY -aNb -aeq -aeq -aON -aON -aON -aeq -aRi -aPQ -aSf -aSf -aVc -aVd -aWV -aXI -aYE -aZJ -baL -bbW -bcU -bcV -beX -bfY -baL -bhe -bhf -biH -bjE -bkp -bhf -bly -bmk -bmZ -bnJ -aUT -boU -bpH -bqv -boV -boV -bsU -bos -aan -aan -aan -aan -aan -aan -bls -bls -bls -bpE -bAo -aac -bAP -bls -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -acB -aan -aeq -aeq -aeY -aeY -aeq -aeq -aeq -aan -aan -aan -aeq -aeq -aeq -aeq -aeq -aeq -aeq -aan -aan -aeq -avO -awP -ayi -aan -aan -aeq -aeq -aeY -aeq -aan -aan -aeY -aan -aan -aan -aan -aan -aac -aan -aan -aan -aan -aan -aeq -aNf -ayg -ayg -aCk -aCk -aPT -aPT -aRj -aeq -aTc -aUc -aVd -aVd -aVd -aVd -aYF -aZK -baL -baL -baL -baL -beY -bfZ -baL -bhf -bhf -bhf -bjF -bkq -bhf -blz -bmt -bnb -bnK -aUT -boV -boV -bqw -brm -bsi -bsV -adF -aan -aan -aan -aan -aan -aan -bls -bls -bls -bls -bls -bkO -brg -bpD -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aeq -aeY -aeY -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aeq -avP -awQ -aeq -aan -aan -aeq -aac -aeY -aeq -aan -aan -aeY -aan -aan -aan -aan -aan -aac -aan -aan -aan -aan -aan -aeq -aeq -aeq -awM -awM -aeq -aeq -aeq -aRk -aSh -aTd -bEa -aVd -aVU -aWX -aVd -aYE -aZL -baL -bbY -bcW -baL -beX -bga -baL -bhg -bhW -bhf -bjE -bkr -bhf -blA -bmk -bmZ -bnL -aUT -boV -boV -bqw -brn -brl -bsW -bos -bos -bos -bos -aan -bls -bxB -bux -bzg -bux -bvT -bls -bkO -brg -bkO -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aeY -aan -aan -aan -aeq -aeY -aeq -aeq -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aeq -aeq -aeq -aeq -aan -aan -aeq -aac -aeY -aan -aan -aan -aFo -aan -aan -aan -aan -aan -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aeq -aeq -aeq -aTe -aPb -aVd -aVV -aWY -aXK -aYG -aZM -baM -bbZ -bcX -bea -beZ -bgb -baM -bhh -bhX -biI -bjG -bks -bhf -blB -bmk -bmZ -bnM -aUT -boW -bpI -bqx -bro -boV -boV -btF -buv -buv -bos -bos -bxA -byc -bkO -bkO -bkO -byc -bkO -bkO -brg -bls -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aeq -aeq -aeq -aan -aan -aeq -aeq -aeY -aan -aeq -aeq -aeq -aeY -aeY -aeq -aan -aeq -aeq -aeq -aeq -aeq -aeq -aan -aan -aan -aan -aan -aan -aeq -aan -aan -aeq -aeq -aCj -aeY -aCj -aeY -aeY -aeY -aan -aan -aan -aan -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aPQ -aTf -aPb -aVd -aVW -aWZ -aVd -aYH -aZN -baL -bca -bcY -baL -bfa -bgc -baL -bhi -bhY -bhf -bjH -bkt -bhf -blC -bmu -bnc -bnN -boq -boX -bpJ -bqy -brp -bsj -boV -btF -buw -buw -bwa -bos -bls -byc -aan -aan -bkO -bvU -bux -bux -bAQ -bkO -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aeY -aeq -aeq -aac -aeq -aeY -aeY -aeY -aeY -aeY -afX -aeY -aeY -ahj -aeq -aeY -aeY -aeY -aph -aql -aeq -aan -aeY -aan -aan -aan -aan -aan -aan -aan -aan -aeq -aeY -aan -aan -aan -aan -aFo -aan -aan -aan -aan -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aPQ -aTg -aPb -aVd -aVd -aVd -aVd -aYI -aVd -baL -baL -baL -baL -bEg -baL -baL -bhf -bhf -bhf -bjI -bhf -bhf -blD -bmv -bnd -bnO -bor -boY -bpK -bqz -brq -bsk -boV -btG -buv -buw -bwb -bos -bls -byc -aan -aan -bkO -bkO -byv -byv -bkO -bkO -byv -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aeq -aeY -aac -aac -aeq -aeq -aeY -aac -aeY -aeY -aeY -aeY -aeY -aeY -aeY -aeq -aeY -aeY -aeY -aeY -aeY -aeq -aan -aeY -aan -aeq -aeq -aan -aan -aan -aan -aan -aeq -aeY -aan -aan -aan -aeY -aeY -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aPQ -aTh -aUd -aVe -aVX -aXa -aXL -aYJ -aZO -baN -bcb -baN -beb -bfc -aZO -baN -bhj -baN -biy -bfc -aZO -baN -blu -bmw -bne -aUT -aUT -boV -bpL -bqA -bqA -boV -bsY -bos -bos -bvl -bos -bos -bls -byc -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aeq -aeY -aeY -aeY -afX -aeY -aeY -aac -aeY -aan -aan -aeq -aeY -aeY -aeq -aan -aeq -anP -aeY -aeY -aqm -aeq -aan -aeY -aeY -aeY -aeq -aan -aan -aan -aan -aan -aeq -aCj -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aSi -aTi -aUe -aVf -bEb -aVY -aXM -aVY -aZP -aVY -bcc -aVY -bEb -aVY -aVY -aVY -bhk -aVY -aVY -aXM -aVY -aVY -aVf -aVY -bnf -aUT -aUT -boZ -bpL -boV -boV -boV -bsZ -bkO -bkO -aan -aan -aan -bxB -byd -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aeq -aeq -aeq -aeq -aac -aeY -aac -aac -aeY -aeq -aeq -aeq -aeY -aeq -aeq -aan -aeq -anQ -aeY -aeY -aqm -aeq -aan -aan -aeq -aeY -aeq -aan -aan -aan -aan -aan -aan -aeY -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aSi -aPQ -aPQ -aUT -aUT -aUT -aXN -aXN -aZQ -aXN -aXN -aXN -aXN -aXN -aXN -aXN -aXN -aXN -aXN -aUT -aUT -aUT -aUT -aUT -aUT -aUT -aUT -bpa -bpM -bqB -brr -bsl -bsl -btH -bux -bux -bux -bwN -bxC -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aeY -aeY -aeY -aeY -aeY -aeY -aeq -aan -aeY -aan -aan -aan -aeq -aeq -aeY -alt -aeq -aeq -aan -aan -aan -aeY -aan -aan -aeq -aeq -aeq -aan -aan -aeY -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aXN -aYK -aZR -baO -bcd -bcZ -aZV -bfd -aXN -bgx -bhl -aZV -aXN -aan -aan -aan -aan -aan -aan -aan -bos -bpb -boU -boU -bpH -boU -bpH -bkO -aan -bls -bls -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aeY -aeY -aeY -ahj -aeY -aeY -aeq -aan -aeY -aeq -aan -aan -aan -aeq -aeY -aeq -aan -aan -aan -aan -aan -aeY -aeq -aeq -aeY -aeY -aeY -aan -aan -aeY -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aXN -aYL -aZS -baP -bce -aZV -bec -bfe -aXN -bgy -bhm -aYO -aYN -aan -aan -aan -aan -aan -aan -aan -bos -bos -bpN -boU -boU -boU -bos -bkO -aan -bls -bls -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aeq -aeq -aeq -aeY -aan -aeY -aeq -aan -aeY -aeq -aan -aan -aan -aeq -aeY -aeq -aan -aeY -aeq -aan -aan -aeY -aan -aeq -aeY -aeY -aeY -aan -aan -aeY -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aXN -aXN -aXN -aXN -bcf -aXN -aXN -aXN -aXN -bgz -bhn -aZV -aXN -aan -aan -aan -aan -aan -aan -aan -aan -bos -bos -bos -bos -bkO -bkO -bkO -bkO -bls -bwc -bkO -bkO -bkO -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -ahk -aeq -aeY -aeq -aan -aeY -aan -aan -aan -aeq -aeq -aeY -aeq -aan -aeY -aeq -aeq -aan -aeY -aan -aan -aeY -aeY -aeY -aeq -aeq -aeY -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aXN -aYM -aZT -baQ -bcg -bda -bed -bff -baS -aZU -bho -aZV -aXN -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -bkO -bta -btI -bkO -bvm -bvm -bkO -bxD -btI -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aeq -aeq -aeq -aeq -aeq -aeY -aeq -aeq -aeq -aeq -aeY -aeY -aeq -aan -aeY -aeY -aeY -aeY -aeY -aeY -aeY -aeY -aeY -aeY -aeY -aeY -aeY -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aXN -aHV -aZU -aIF -bch -bdb -bee -bee -baP -bgA -bhp -aLL -aXN -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -bkO -btb -btb -bls -bls -bls -bls -btb -btb -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aeq -aeY -aeY -aeY -aeY -aeY -aeY -aeY -aeq -aan -aeY -aeq -aeq -aeq -aeq -abq -aeq -aeq -aeq -abq -aeq -aeY -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aXN -aYO -aZV -aZU -baS -baS -aYO -aZU -bci -aYO -aZU -aYO -biJ -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -bkO -bls -bls -bls -bls -bls -bls -bls -bls -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aeq -aeq -aeq -aan -aeq -aeY -aeq -aan -aeY -aeq -aan -aan -aan -abq -acZ -acZ -acZ -abq -aan -aeY -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aXN -aYO -aZU -aYO -aYO -bdc -aXN -aYO -aYO -aYO -aZV -aYO -aYN -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -bkO -bkO -bkO -bkO -bls -bls -bkO -bkO -bkO -bkO -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aeq -aeY -aeY -aeY -aeY -aeY -aeY -aeY -aan -abq -awR -ayj -azt -abq -aan -aeY -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aYN -aYO -aYO -baS -aZV -bdd -aYO -bfg -aIJ -aZU -aYO -aYO -aYN -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -bkO -bls -bls -bkO -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aeq -aeY -aeq -aan -aeq -aan -aeq -aeY -aan -abq -awR -acZ -awR -abq -aan -aeY -aeY -aeY -aeY -aeY -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aXN -aYO -aYO -aYO -aZU -aZU -aYO -bfh -baS -aYO -aYO -aYO -aXN -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -bkO -bvn -bvn -bkO -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aeq -aeY -aeq -aan -aan -aan -aan -aeY -aan -abq -awS -awR -awR -abq -aan -aeq -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aXN -aXN -aXN -baT -bci -aYM -bef -bfi -aZU -baT -aXN -aXN -aXN -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -bkO -bkO -bkO -bkO -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aeq -aan -aan -aan -aan -aan -aan -aeY -aan -abq -acZ -awR -awR -abq -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aXN -baU -baS -bde -beg -bfi -aYO -bgB -aXN -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aeq -aan -aan -aan -aan -aan -aan -aac -aan -abq -awR -awR -ayj -abq -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aXN -aXN -aXN -bdf -beh -bfj -aYN -aYN -aXN -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aac -aac -aac -aac -aac -aan -abq -acZ -ayk -acZ -abq -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aac -aac -aac -aac -aac -aan -abq -acZ -awS -acZ -abq -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aan -aan -aan -aac -aac -aac -aac -aac -aac -aan -abq -abq -abq -abq -abq -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aac -aac -aac -aac -aac -aac -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aan -aac -aac -aac -aac -aac -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aad -aad -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aad -aad -aad -aad -aad -aad -aad -aab -aab -aab -aab -aab -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aac -aac -aac -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -"} -(250,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRbaRbaRbaRbaRbaRbaRbaRbaRbaRbaRaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaadaadaafaafaafaafaabaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRaagaahaaiaajaaiaakaalaamaambaRbaRbaRbaRbaRaanaanaadaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaadaadaadaafaafaafaafaafaafaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRbaRbaRbaRbaRaacaacaacaacbaRaagaahaaiaaiaaibaRbaRbaRaamaamaamaamaambaRaanaanaadaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaadaadaadaafaafaafaafaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRaaoaaoaaobaRbaRbaRbaRbaRbaRaagaahaahaahaahbaRbaRbaRbaRbaRaamaapaambaRaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaadaanaanaaqaaqaaqaanaanaanaanaaraaraaraaraaraasaasaasaaraaraaraaraaraaraaraaraanaadaadaadaadaadaadaadaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRaataataatbaRaagaagaagaagaagaagaagaagaagbaRbaRaauaavaavbaRbaRaawbaRbaRaanbaRbaRbaRbaRbaRbaRaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaaqaanaanaanaanaanaaraaraaraaraaraaraaraaraaraaxaayaaxaaraaraaraaraanaanaanaanaanaanaanaanaanaanaanaanaazaanaanaanaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRaaAaaBaaBaaCaaDaagaaEaaEaaEaaEaaEaagaagaagaagaaFaaFaaFaBwaagaagaaHbaRbaRbaRaaIaaJaaIaaJbaRaanaanaanaacaacaacaanaanaanaanaanaanaanaanaanaanaacaacaacaanaanabxabxabxabxabxadoaanaaraaraaKaaLaaMaasaaraaraaNaaOaaPaaQaaRaaSaaTaaraaraanaanaanaanaanaanaanaanaanaanaanaanaazaanaanaanaanaanaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRbaRaawbaRbaRaaUaagaaEaaEaaEaaEaaEaagaaVaaWaaXaaFaaYaaFaaGaaWaagaaZabaabbaaIaaIaaIaaIaaIbaRaanaanaanaacaacaacaanaanaanaanaanaanaanaanaanaanaacaacaacaanaanabxaidaxzaxAaciadoaanaaraarabcabdabeabfabfabfabfabgabfabhabiabjabkablaaraarabmabnaboaboaboaboaboaboabpabqabqaazaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRabraamaambaRabsaagaaEaaEaaEaaEaaEaagaagaaWaaXaaFabtaaFaaGaaWaagabubaRaaeaaIaaIabvaaIaaIbaRaanaanaanaacaacaacaanaanaanabwabxabxabxabxabxabxabyabyabyabwaanabxayHaNRaciaciadoaanaaraarabzabAabAabAabAabBabCabDabEabEabEabFaayabGaaraarabmabnabHabIabJaboabKabLabMabNabqaazaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRabOabPaambaRaaUaagaaEaaEaaEaaEaaEaagaagaaWaaXaaFaaFaaFaaGaaWaagaaUbaRaanaaJaaIaaJaaIaaJbaRaanaanaanaacaacaacaanaanabwabwabxabQabRabSabTabxabwabwabwabwabwabxabxabxaciaciadoabwabwabwabwabwabwaarabUabVabcabDabWabXabWabFaayabYabZaarabmabnacaacbabMabMabMabJacbaaqabqaazaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRabOabPaamaawaaUaaVaaEaaEaaEaaEaaEaagaagaccacdaceaceaceacdacfaagaaUbaRbaRbaRbaRbaRbaRbaRbaRaanaanaanaacaanaanaanaanabwabwabxacgachaciaciacjabwabwabwabwabwabwabwabxaciaciadoabwabwabwabwabwabwaaraarackabcaclabEacmabEabFaayabGaaraarabmabnacnabJacoaboacpabMacqacrabqaazaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbaRbaRbaRbaRbaRacsactactactactaaDaagaagaagaagacuaaWaaWaaWacuaagaagaaUbaRaanaanaanaanaanaanaanaanaacaacaacaanaanabwabwabwabwabxacvacwacxaciabxabwabwabwabwabwabwabwabxaciaciadoabwabwabwabwabwabwaaraarabVabcaayabEabEabEabFaayabYaaraarabmabnacyabJaczaboacAabMabJacrabqaazaanaanaanaanaanaanacBacBacBaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanbaRbaRbaRbaRbaRbaRacCactactactactactactactactactactactacDbaRaanaanaanaanaanaanaanaanaacaacaacabwabwabwabwabwabwabxabRacEaciabRabxabwabwabwabwabwabwabwabwaIgaIgadoabwabwabwabwabwabwabwaaracFacGacHaayacIacJacKacLacMaaraanaboaboaboaboaboaboaboaboaboacBacBacBacBacBacBacBacBacBacBacNacNaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanbaRacOaamacPaambaRaaUbaRacQbaRbaRaagacRaagaagaagaagaagacRbaRaanaanaanaanaanaanaanaanaanaacabyabwabwabwabwabxabxabxabxabxacSabxabxabxabxabxabxabxabwabwabyaciaYlabxabxabxabxabxabwabwabwaaraaracTacUacVacWacXadtacYaaraaracZacBacNacNacNadaadbadcaddadeadcadfadgadhadgacNacNacNacNadiacNacNaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanbaRadjadkaaBaaBaaCadlbaRaamaambaRbaRbaRbaRadmadnadmbaRbaRbaRbaRaanaanaanaanaanaanaanaanabwabxabwabwabwabwabxaciabxaciaciaciaciabxabxaciaciadoabxabwabxabxaciaciabxadpadqadrabxabwabwabwaaraaraaradsaduadNabfaefaaraaraaracZacBadvadwacNacNadxadyadyadyadyadzadAadBadBadBadBadCadDadEacBacBabqaanaanaanaanadFadFadFadFadFaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaacaanaanaanaanaanaanaanaanaanaanbaRadGadlaamadHbaRbaRbaRaamaambaRadIadIbaRaagaagaagbaRaanaanaanaanaanaanaanaanaanaanabwabwabxadJaciaciaciabxaciaciaciabxaciaciaciaciaciabxabxabxaciaciaciaciaciabxadKadKadLabxabwabwadMadMadMadMadMaegadOaaradPadPadPadPadPadQadQadQadQadQadRadQadQadQadQadQadQadQadQadQadQadSadTacBacNacNacBaanaanaanaanadFadUadVadWadFaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaacaanaanadXadXadXadXadXadXadXadXabqadYabqadZabqabqadIaacaaeaaeaanadIadIbaRaagaagaagbaRaanaanaanaanaanaanaanaanaanaanabwabwabwaeaaciaciaeaabwaeaabxabxadoabxaciaciaciaciaciaciaebaciaciaciaciaciaebadKadKaecabxabwabwadMaedaeeaejadMaeHaehaeiadPaeIaekaeladPaemaemaemaemaemaenaemaemaemaemaemaemaemaemaeoadQadwadTadiacNacNaanaanaanaanaanadFaepadVadVadFaanaanaanaanaanaeqaacaeqaeqaeqaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaacaanaanadXaeraesaetaeuaevaewaexaeyaezaeAaeBaeCadXadXadXadXadXadIadIadIbaRbaRaeDbaRbaRabxabxabxabxabxabxabxabxabxabwabwabwabwaciabxaciaciabxaciaciaciaciaciaciabxabxaciaciaciabxaciagwagwagwaeEaeFaeFaeFaeGaePaeFaeFafkafnafIaeJaeKaeLaeMaotaouaeNafoafpadPaemaeQaeRaeRaeRaeSaemaemaemaemaeTaemaeUaemaemadQacNadTacBacNadSacBacBaanadFaanadFaeVaeWaeXadFaanaanaanaanaanaeqaeYaeYaeYaeqaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaacaanaanadXaeZafaafaafbafcafaafaafaafaafbafaafdadXafeafeafeadXadIadIadIabxaciaciaciaciaciaffaciaciaciaciaciaciaciaciaeaaffaeaaciabxaciaciabxabxabxaciaciaciaciaciabxaciaciaciabxabxagwagdagdafhabxadKadKafgabxadKabwadMafHagmagCafkagGaflafmadPafMafNafOadPaemaenaemaemadQadQadQadQadQadQadQadQadQadQadQadQacNafqacBacBacBafracNafracBacBacBacBafsacBacBaanaanaanaanaanaeqaeqaacaeYaeqaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaaeaanaanadXaftafbafuafvafwafxafyafzafAafBafvafCadXafeafeafeadXadIadIadIabxafDafEafDabxabxabxabxabxabxabxabxabxabxabxabxabxabxabwabwaciaciabwabwabwabwaciaciaciaffaciaciaciaciabxabwagwajhajhafhaJAaJAaJAaJAaJAaJAaJAaeOaeOaeOaeOaeOaifafLafKadPadPadPafWafWaemaenaemaemadQaanaanaanaanaanaanaanaanaanaanacBacNafPadCadBadBadBadBadBadBadBadBadBadBadBadDafracBaanaanaanaanaeqaacaeYaeqaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaanaanaanaanaanaacaanaanadXafQafaafdadXadXadXadXadXadXadXadXadXadXadXafeadXadXadIadXadXabxabxabxabxabwabwabwabwabwabwabwabwabwabwaciaciaciabxabwabwafRafRabwabxabxabwabxabxabxabxabxabxabxabxabxabxagwajhajhafhaJAaKcaKcaKcaKcaKcaKcaKcaKcaKcaKcaKLmbMafUafVadPadQadQadQadQadQaenaemaemadQadQadQaanaanaanaanaanaanaanaanacBacBacBacBacBacBacBacBacBacBacBacBacBacBacNadTacBacBacBaanaanaanaacaeqafXaacaeYaeYaeqaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaanaanaanaanaanaacaanaanadXafYafvafZadXagaafeafeafeafeagbafeafeafeafeafeafeafeafeadXbazageagcagdageageageageageageageageageageageabwabwaciaciaciagfaciaciagAaciaciaffaciaciaciagfaciaciaebaMGaOFaOFafiajhajhaKKaJAaKcaKcaKcaKcaKcaKcaKcaKcaKcaKcaKLajxagVbcEagWagYadQagnagoagpaenaemaemagoagqadQadQaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanacBadwadTaanaanaanaanaanaeqaeqaeqaeYaeYaeYaeYaeqaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaanaanaanaanadXadXadXagragsagtaguadXadXafeagvadXadXadXadXadXadXadIadXadXagdageagdadXbaAageagcagcagwagwagwagwagwagxagwagwagwagyafTabwabwaciabxabxabxabxabxaciagzaciabxabyabyageageagdagdageaiHageaHSaiKaJAaJAaJAaJAaKcaKcaKcaKcaKcaKcaKcaKcaKcaKcaKLajyaglagjagjahxahyahzahAaibaicagHagHagIagJagKadQadQadQaanaanaanaanaanaanaanagLagLagLagLagLagLagLagLagLagLaanacBacBagMacBaanaeqaeqaanaeqaeYaeYaeYaacaeYaeYaeqaacaacaanaanaanaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanaanaanaanadXafeadXagNagOagPagQagPagPagRadXadIadIadIadIafeafeadIadIadIagdagSagdadXadXageagwagwagwagwagwagwagwagwagwagwagwagyagyagAajnaciabxabxabxabxabxaciaciabyabyabyabyageagdagdagdagwaiKageageaiKaJAaLBaLCaLDaKcaKcaKcaKcaKcaKcaKcaKcaKcaKcaLEagjaglagjagjagjagZahaahbaemaenaemaemaemaemagDadQadQahcahcahcahcahcahcahcaanagLahdahdaheahfaheaheahdahdagLaanaeqahhahiaeqaanaeqaeYaeYaeYaeYaacaacaacaeYahjaeYahkaeqaanaanaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanadXadXahlafeafeadXadXadXadXadXahmahnahoadXadIadIadIadIadIahpafeadXadIageahqagdahragdagdagwahsahsahsahsahsahsahsahsahsahsageageabwabwaciabxafjafJahtabxaciaciabxabxabwabyageagdagdagwagwajZageagdaiKaJAaLZaMaaMbaKcaKcaKcaKcaKcaKcaKcaKcaKcaKcaMcaWFahCahDahDahDahEahFahGahHahIahJaemagoagqahKadQahLahMahNahOahPahQahRahcaanagLaheaheaheaheaheaheaheaheagLaanaeqaeYahSaeYaeYaeYaeYaanaanaeYaeYaeYaeYaeYaeYaanaeqaeqaanaanaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanadIadXafeafeafeafeafeafeafeadXadXahTahoadXafeafeafeadIadIafeafeadXadIageagwahUahVagdagdagyahsahWahXahXahXahWahYahXahZahsageabxabwalAaciabxahuahvagwageageageageansansageageagdagdagwagwakEageagdalialJaMHaMIaMJaKcaKcaKcaKcaKcaKcaKcaKcaKcaKcaMcagjaihagjagjagjadQaemagEagFaiiaijaikailaimainadQadQahcaioaipaipaiqairahcaanagLaheaisaitaitaitaitaisaheagLaanaeqaeYahiaeYaeYaeYaanaanaeqaeYaeYaanaeqaeYaeYaeYaeYaeqaanaanaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanadXadXafeaiuafeafeaivadXafeaiwadXaixahoadXadIadIadIadIahpahpadXadXadIageageagwahUagwagyagwahsahWaiyahXaizaizahXaiAahXahsageageageageageageaiBahwaiDageaiEaiFaiFaiFaiFaiGageagdagdagdagdalKageageaIJaJAaNsaNtaLDaKcaKcaKcaKcaKcaKcaKcaKcaKcaKcaKdajzaihagjagjagXadQaemaemaemaiMaiNaiOaiPaemagDadQaiQaiRaiSaiSaiTaiUaiVahcaanagLaheaiWaiXaiYaiYaiXaiZaheagLaanaeqajaajbaeqaeqaeqaanaanaeqaeYaeYaanaeqaeqaeqaeqaeqaeqaanaanaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanajcahnafeadXafeadXadXadXafeafeadXajdahoadXadXadIadIadIadXafeadIadIadIageajeajfajgagwahVagwahsajiahXahXahWahXaiyajjajkahsageageageageageageageaJgageageajmajoajpakCalaajqageagdageaMGaOFbFAajsajraZtaJAaJAaJAaJAaKcaKcaKcaKcaKcaKcaKcaKcaKcaKcaKLajyaihagjagjagXadQajCajDajEaiiajFaemajDajEajGadQajHahcaiSajIaiSajJajKahcaanagLaheaisajLajLajLajLaisaheagLaanaeqaeqajMaeqajNaeqaanaeqaeqafXaeYaeqaeqaanaanaanaanaeqaeqaanaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanadIadIadIadXafeafeafeafeafeajOafeahnahoajPadXadIadIadXadXafeadIadIadIageagwagwagwagwagwagwahsahsahsahsahsahsahsahsahsahsageajQaiFaiFajRaiFaiFaiaaiFaiFajTalbalcaldalaajVajYajYalhalHakaakbageagwagwajhageagwaJAaKcaKcaKcaKcaKcaKcaKcaKcaKcaKcaKLakFaihagjagjakdadQakeakfakgakhakiakjakkaklakmaknakoahcakpaiSakqakraksahcaanagLaheaheaheaisaisaheaheaheagLaanaacaeqajbaeqaeqaeqaanaeYaeYaeYaeYaeYaeYaeYaeYaeYaeYaeYaeYaanaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanaanaanaanadXadXadXadXadXadXadXadXaktakuahnadXadIadIafeafeafeadIadIadIadIadIadIadIamlagwagwagwakvakwaiFaiFaiFaiFajSaiFaiFakxakyakzakzakzakzakzakzakAakzakzalealaamvalaamyalaalaalaalaalaakcageagwagwajhajhagwaJAaKcaKcaKcaKcaKcaKcaKcaKcaKcaKcaKLaigakIakJakJakKadQajCajCajCaiiajFaemajCajCakLadQadQahcakMakNakOakMakNahcaanagLagLagLagLakPakPagLagLagLagLaanaacaeqakQaeqaanaanaanaeqaeYaeYaeYaeYaeqaanaeqaeqaanaeqaeYaeqaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanadXakRahoakSadIadIadIafeadIakTakUakUakUakUakUakUakUagdagdagwagyakVageageageagwakzakzakzakzakzakzakzakWakWapPakYakZakWakWakzaoeanpanqanpawmayJaofaoRaoRalaaGHajwajwajwajwajwakbaJAaJAaJAaJAaJAaJAaJAaJAaJAaJAaJAaJAagjaihagjalladQadQaemagoagqaiiajFaemagoagqalmadQalnaloalpaemalqaemalradQaanagLalsaheaheaisaisaheaheaheagLaanaacaeqajbaltaanaanaanaeqaeqahjaeYaeqaeqaanaanaanaanaeqaeYaeqaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanadXadXahoadXadIadIafeahpadIakUakUalualvalwalxalyakUakUagdalzagwakVagwamlagwagwakzalBakWalCaEzalDalEakWakWakXakYakWakWakXakzaDAaGTaGUaGTaQDaRcbaDbaDaGValaalLalLalLalLalLalLaljajwajwajwaZualkalMalNalOalPalQalRalSagjaihagjalTadQaemajCalUalVaiiajFaemagEalValWadQalXaemalYaemalqaemalZamaambaisaisaisaisaisaisaheaheaheagLaanaacaeqajbaeqaanaanaanaanaanaeqaeqaanaanaanaanaanaanaeqaeYaeqaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanadXamcadXadIadIahpafeadIakUamdameamfamgamhamiamdakUagdamjagwamkagwagwagwagwakzammamnamoampampamqampamramsamsamsamtamuakzaGWaGXanpanpaIeanpaIfanpaIhalaamAamBamCamDamEalLalLagwagwagwakcaWDamGamHamHamHamHamIamJamKamLahBamMadQamNaemaemaemamOamPamQamRamSamTamUamVamRamWamXamYaemalradQaacagLalsaheaheaheaheaheaheamZagLaanaacaeqajbaeqaeqaeqaanaanaeqaeYaeYaeqaeqaeqaanaanaeqaeqaeYaanaanaanaanaanaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanadIanaafeanbajOafeadIadIakUancandaneanfaneandangakUagdagdanhakVageageagwbaBakzakYanianjankanlanmakWannakXakYakWakWakXakzaLganpanpanpaIeanpaGZaHDaHGalaantanuanvanwanxanyalLageageageaGHaXyafSaieaiIaieaieaiLajtajAajBagjagjadQanHaemaeUanIanJanKanJaeUanLafWafWadQadQadQaiianMaemadQadQaacagLagLagLagLagLagLagLagLagLagLaacaacaeqajbanNanOaeqaanaanaeqaeYaeYanPanQaeqaeqaeqaeqaeYaeYaeqaeqaeqaeqaeqaeqaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanadIanRafeadIadIadIanSadIakUakUanTanUanVanUanWanUakUakUakUagdakVagwagxagwbaCakzakzakzakzakzanXanYanZaoaakXakYakWakWakXakzaHHalcalcalcaIbalcalaaIcaIdalaaogaohaoiaojaokaolalLafFafGageagwalkajvaggaghagiagkagBalSagTagUaovaowafWadQadQadQadQadQadQadQadQadQadQaoxaoxaoyaoyaozaoAaoyaoBaoCaanaanaanaanaanaanaanaanaanaanaanaanaanaeqaoDaoEaeYaeqaanaanaeqaeYaeYaeYaeYaeYaeYaeYaeYaeYaeYaeYaeYaeYaeYaanaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaanadIaoFadIadIadIadIadIaoFaoFanaakTakUakUakUakUakUakUakUaoGaoHaoIaoJaoGanUaoKamdakUakUakVageageageageaoLaoLaoLaoMakzakzakzaoNaoOaoPaoQakWakWakXakzalFasJasJaoTaoUamwalaalGalGalaalLaoWalLaoXaoYaoXaoXaoXaoXaoXaoXaoXaoXalkalkalkalkalkalkaoZapaapbagXaoCaoCapcapcapcapcapcapcapcaoCaoCaoxaoxaoyaoyaozapdaoyaoBaoCaanaanaanaanaanaanaanaanaanaanaanaanaanapeapfahiapgaeqaanaanaeqaphaeYaeYaeYaltaeqaeqaeqaeqaeqaeqaeYaeqaeqaanaanaanaanaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaanadIadIapiadXadIadIadIadIadIanRakTakUapjapkaplapmapnanVapoappappapqaprapsaptapuapvakUakVageapwapxapxapxapxapwapyaoLaoLapzapAapBakzakzakzapCakzakzamzanoanoanoazRaEfalaalIalaalaapIapJapKapLaiCaiJapMapNapOapQapSapTapUapVapWapXapYagXapZaqaaqbaqaaqaaqcaoCapcapcapcapcapcapcapcaoCaoCaoCaoCaqdaqeaqfaqgaqhaqiaoCaanaanaanaanaanaanaanaanaanaanaanaanaanaeqaqjahSaqkaeqaanaanaeqaqlaeYaqmaqmaeqaanaanaanaanaanaanaeYaanaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaanadIadXaqnadXadIadIadIadIadIanaakTakUaqoaqpaqpaqqaqranVaqsaqpaqpaqtaquanUaqvaqwaqxakUaqyaqzapxaqAaqAaqAaqAapxaqBaqCaqDaqEaqFaqGaqEaqIaqHaqEaqJaqKaqLaqNaqMaqMaqOaqPaqEaqEaqRaqEaqSaqGaqEapLapRaqVaqWaqXaqUaqZaraarbapUarcarcardarearfapWaqaaqbaqaargarhaoCapcapcapcapcapcapcapcaoCaoCaoCariaoyarjarkaoyarlarmaoCaanarnarnarnarnarnarnarnarnaanaanaanaanaeqaeqahSaroaeqaanaanaeqaeqaeqaeqaeqaeqaanaeYaeYaeYaeYaeYaeYaeqaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaanadIadXarpadXadIadIadIadIadIanaakTakUarqaqpaqpaqparranUarsaqpartaqtaruanVarvarwarxakUakVageapxaqAaqAaqAaqAaryarzarAarBarOarCaoVarEarDarFarEarEarEarHarIarGarEarJarKarLarMarNarMarParQarMarRarSarTarUarVarVarWarXgTrarYaqaaqaarZasaasbasbasbascaqaasdaseaoCapcapcapcapcapcapcapcaoCasfaoCaoCaoCaoCaoCaoCaoCaoCaoCaanarnarnarnarnarnarnarnarnarnaanaanaanaacaeqahSaeqaeqaanaanaanaanaanaanaanaanaanaeqaeqaeYaeqaeqaeYaanaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadXahnadXadXadIadIadIadIanRakUasgashasiaslaqpasjapkaskaqpaEhasmasnanUaqvasoaspakUasqageapxaqAaqAaqAaqAaryasrassasLaqQastaxxasAaswasyaszasAasFasCasDasBasAasxasJasIasKasJasJasIasJasJaqTasvaoSasQasOasSasPaFRaCsasVasWasXasYasYasYasYasYasZaqaataatbatcatcatcatdatcatcatcatcatcatcatcaanaanaanaanaanaanaanaanaanarnarnateatfatgathatearnarnarnaacaacaacaacahiawMaanaanaanaanaeYaeYaeYaanaanaanaanaeqaeYaeqaanaeYaeqaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadXahnahnadXadIadIadIadIanaakUatiatjatkatlaqpatmatnatoatnatpaprappatqaptatratsakUakVageapxattaqAaqAaqAapxatuatvasMatAaAvaAvatwatxaAvaAWaAWapDapDapGapHatBapGapDapDapDaoLaoLaoLaxyaqMaqYasNasRaoXaoXaoXasTasUaFxaoXatMageatNaqaatOaqaaqaaqbaqaataatPatcatQatRatSatTatUatVatWatXatQatcaanaanaanaanaanaanaanaanaanarnatYatZauaaubaucaudauearnarnaacaacaeqaeqaufawMaanaanaanaanaanaanaeYaeqaanaanaanaanaeYaeqaanaeYaeYaeYaeYaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadXahnahnadXadIadIadIadIanaakUaugaqpaqpaqpaqpauhauiaujaqpaukaulaumanUaunamdakUakUakVageapwapxapxapxapxapwauoasuatGautaAWatyatzatCatKauqaurapDatDatEatFatIatIatJauuapDagwaEdaoLaoLaxwaoXatLaoXaoXauIaoXaoXaoXaoXaoXakcageauLauMawUauNaqaaqbaqaauOatPatcauPauQauRauQauSauQauRauQauTatcaanaanaanaanauUauVauUauUauUarnauWauXauXauYauXauXauZarnarnaacaacaeqavaaufaeqaeqaeqaeqaanaanaeqaeYaeYaeYaeYaeYaeYaeYaeqaanaanaanaanaanaanaanaanaanaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadXavbahnadXakTakTakTajOavcakUavdaujaqpaveavfavgakUanUavhavianUakUakUakUakUakUanVajmageageaoLaoLaoLaoLavjavkawbatHavqaAWausauyauzaBOaBOauDapDauvatIauwatIatIauxauAapDagwagwagwagwagwageagwagwauJajwajwajwajwajwajwauKageageagXagXagXavBavCavBagXagXatcavDauQauQauQauSauQauQauQavEatcaanaanaanaanauUavFavGauUauUarnavHauXavIauYavJauXavKarnarnaacaacaeqavLavMavNavOavPaeqaanaanaeqaeqaeqaanaeqaanaanaeYabqabqabqabqabqabqabqabqabqabqaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadXadXavQadXakTakTakTafeanaakUakUavRavSavTanVakUakUavUaqpavVavWavXavXavXavXavXavXavYaoLaoLaoLaoLaoLavZaoLawaawbaupawfaAWauEaBOaBOaBOaBOauFapDapDauBauCatIauxavmavnapDagwagwageagwagwageagwagwakcawsawsawsawsawsawsawsawsawsawtawuaGoawvawwawxawyawzawAawBawBawBawCawDawEauQauQawFatcaanaanaanaanauUawGawHawIauUarnarnawJawKauYawLauXarnarnarnaacaacawMaeYawNawOawPawQaeqaanaanaanaanaanaanaeqaeqaanaeYaeqayIawRawRawSacZawRacZacZabqaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadXahnadXakTakTakTakTanRakTakUawTaqpaqpbgdawVawWawXawYavVawZavXaxaaxbaxcavXaxdaxeaxfaxgaxhaxiaxjaqEaxkaxlawbaupaxnaAWauGaBOauHavoavpavrapDavsatIavtavuavvawcawdapDagwagwageagwagwageagwagwakcawsaxBaxBaxBaxCaxDawsaxEamFawtaxGaxHaxIaxJaxKaxLaxMaxNaxOaxOaxPaxQaxRaxSaxTaxUauQatcaanaanaanaanauUaxVaxWaxXaxYaxZayaaybaycaydayeayfarnarnaacaacaacaeqaeYaygayhayiaeqaeqaeqaanaanaanaanaeqaeYaeYaeYaeYaeqacZayjacZawRawRawRaykawSabqaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadXayladXakTakTakTakTanRakTakUawTaqpaqpbgdaymawWaynayoaypayqayraysaytayuayvaywayxayyayzayAayBayCayCayDayGayEavlasGaAWaAWaAWaAWaAWaAWaAWapDaweawgawhatIatIauxawiawjagwagwagwagwaEdageagwagwakcawsayTayUayVayWayXawsayYaxFayZawvazaazbazcazdawvazeazfazgauQazhaziazjaziazkazlauQatcaanaanaanaanauUavFazmaznauUarnarnazoawKazpazqazrarnarnaacaacaacawMaeqazsaeqaanaanaanaanaanaanaanaanaeqaeYaeYaeYaeYaeqacZaztawRawRawRayjacZacZabqaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadXahnadXakTakTakTadXanRakTakUakUazuazvakUakUakUazwazxazyazzavXazAazBazCavXaxdazDazEaxgazFazGazHazIasIasJasEazLasHavwavxavyavzajhajhajhapDawoatIatIaxoatIatIaxpapDaEdageageaxqageageagwagwakcawsazTazUazVazWayXawsazXazYawtazZazaaAaaAbaAcawvaAdazfaAeaAfaAfaAgaAgaAgaAfaAhaAiaAjaanaanaanaanauUaAkaAlauUauUarnarnaAmaAnaAoaApaAmarnarnaacaacaacaeqaeqajbaeqaanaanaanaanaanaanaanaanaeqaeYaeYaeYaeYabqabqabqabqabqabqabqabqabqabqaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadXaAqadXakTakTakTadXanRakTakTakUakUakUakUakTakUakUanVaArakUavXavXavXavXavXavXaAQaAsaAsaAtaAsaAsaAsaAsaAsaAuavAavzavzawkawlavzajhajhajhapDapDapDapDapDayFapDapDapDageageauJajwajwajwajwajwakGawsayWaAAaABaACayXawsawsawsawtahgaAEawtawtawtahgaAFatcatcatcaAGaAHazfazfazfatcatcatcaAIaAIaAIaAIauUauUaAJaAKauUarnarnarnarnarnarnarnarnarnaacaacaacaeqaALajbaeqaeqaeqaeqaeqaanaanaanaanaanaanaanaeqaeYaeqaanaanaanaanaanaanaanaanaacaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadXarpadXakTakTakTafeanaadXakTakTakTakTakTakTakUaAMamhaANaAOakUaAPagwageaARaBFaCpaAsayKaATaAsaAUaAsaAUaAsaAVavzalgawnawkawpavzajhajhageagwagwagwagwagyagwagwagwagwaBdageakcaBeaBeaBeaBeaBeaBeawsawsawsawsawsawsawsajWaxFaobawvazaaBfaBgaBhawvaAdaBiaBjaAIaBkaBlaBmaBnaBoaBpaBqaBpaBraBsaBtaBuaBvauUauUauUaanaanarnarnarnarnarnarnarnaacaacawMawMaeqaBxajbaeqaeqaacaacaeqaeqaeqaeqaanaanaanaanaeqaeYaeYaeYaeYaeYaeqaanaanaanaanaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadXahnadXakTakTakTaByaBzadXakTakTakTakTakTakTakUaBAawXaBBaBCakUaBDaBEageaCxaAsaAsaAsaBGaBHaAsaBIaBJaBIaAsaBKavzawqawnawraxmavzajhagwagwagwaBQagyajhajhajhakHagwaBRaBSaBSaBTaBeaBUaBVaBWaBXaBYaBZaCaaBeaBeaBeaBeaBeawvawvawvawvazaaCbawvaCcawvaCdaCeaCfaCgaBlaChaBlaKsaBlaBlaBlaBlaBlaBlaBlaBlaCiaAIaanaanaanaanaanaanaanaanawMawMaacaeqaeqaeqaeYaCjaeYaCkaClaeYaeYaeYaCjaeYaeYaCjaeYaeYaeYaeYaeYaeYaanaanaanaeYaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadXahnadXadXakTakTanaakUakUakUakUakUakUakUakUakUakUaCmaCnakUakUaCoagwageaDXaCqaCraDZaCtaCuaCvaCvaCvaCvaCwaASavzaxrawnaxsaxtavzajhagwajhajhajhajhajhajhajhagwakHajUagwagwajqaBeaBUaCAaBYaCBaBYaCCaCaaBeaCDaCEaCFaBeaCGaCHaCIaCIaCJaCKaCLaCMaCMaCOaCPaCQaCgaCRaCSaCTaCTaCTaCTaCTaCTaCTaCTaCTaCUaCVaCWaCWaCWaCWaCWaCWaCWaeYaCjaeYaeYaCjaeYaeYaeYaeYaCXaCYaCZaeqaeqaeqaanaeYaanaanaanaanaanaanaanaanaanaanaanaanaeYaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadXajOavQadXadXakTanaakUaDaaDbaDcalwaDdaDeaDfaDgaDhaDiaDjaDkakUageagwageaDXaAsaDlaDmaDnaDoaAsaAsaAsaAsaAsaAVavzaxuawnawnaxvavzajhagwajhajhajhajhajhajhajhagwagwajUakHagwajqaBeaBUaCAaBYaDuaBYaCCaCaaBeaDvaDwaDxaBeaDyaDzawvawvawvawvajXawvawvawvawvawvaCgaDEaDFaDGaDHaDHaDHaDIaDIaDIaDIaDJaBlaDKaCWaDLaDMaDNaDOaDPaCWaeYaDQaDQaDRaDQaDQaDQaDQaanaDSaeqaeqaeqaanaanaanaCjaanaanaanaanaanaanaanaanaanaanaanaanaeYaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadXahnahnahnadXadXanaakUaDTaDUaqpanfaqpaqpaqpaqpaqqaqqaqtaDVakUageaDWaEMaCpaCqaDYaDZaEaaAsaAsaEbaEcagwagwaAVavzavzavzavzavzavzageagwagwagwagwagwajhajhajhaEdagwajUakHagwajqaBeaBUaCAaBYaCBaBYaCCaCaaBeaEeaCEaocazJaOXawvawvawvakBakDayMakDanrawvawvawvaCgaElaEmaEnaEoaEoaEoaEoaEpaEpaEpaEqaBlaBlaEraEsaEtaEuaEvaEvaEwaeYaDRaExaEyaEyaEyaDBaEAaanaygaCjaanaanaanaanaanaeYaanaanaanaanaanaanaanaanaanaanaanaanaeYaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadXadXaiwahnaEBadXanaakUaECaEDappaEEappaEFaqqaEGaEHaEIaEJaqpaEKajhageaDXaBEaAsaDYaELaEaaAsagwageageaEcageaAVaENageaEOagwagwagwagwagwagwagyagwajhajhajhajhajhajhajUagwagwajqaBeaEPaEQaERaESaETaEUaEVaBeaEeaCEaEWaEXawvawvawvawvaodapEazKapEapFawvawvaBNaAIaDEaEmaEnaEoaEoaEoaEpaEpaEpaEpaEqaBlaDKaCWaDLaFgaDNaEvaFhaCWaeYaDQaFiaFjaFkaEyaFlaDQaanaFmaFnaanaFoaeYaeYaFoaeYaanaeYaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadIadIadIaFpafeadXaFqakUakUakUakUakUaFraqtaqqaFsaFtaFuaFvaFwakUajhajhaHnageaAsaAsaAsaAsaAsagwaFyagwaFzageaAVaFAageagwagwagwagwagwagwagwagwagwajhajhajhajhajhajhaFBaFCaFCajTaBeaFDaFEaCBaFFaCBaFGaFDaBeaFHaFIaFJaEXaBjawvawvawvaFcaDCazKaDDaFcawvawvaFLaFMaFNaEmaEnaEoaEoaEoaEpaEpaEpaEpaEqaBlaFOaCWaCWaFPaCWaCWaCWaCWaFQaDQaGmaFjaFSbcGaFUaDQaanaeYaygaeqaeYaanaanaanaeYaFoaeYaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadIadIadIafeaFpadXanaakUaDaaDbaDcalwaqpaqtaqpaqqaqqaqqaqtaqpakUajhageaDXagwagwagwagwagwageaFVaFWaFXaFYaJpaGaageageagwagwaGbakaakaakaakaakaakaakaakaakaaGcakaakaaGdagyagwagwaBeaBeaBeaGeaGfaGgaBeaBeaBeaGhaCEaGiaGjaxKaxKaxKaxKaEgaEiaEjaFaaFbaFKaQwaGraGsaGtaEmaEnaEoaEoaEoaEoaEpaEpaEpaEqaBlaGuaCWaGvaGwaGxaGyaCWaGzaeYaDQaEyaGAaEyaGAaGBaEAaanaeYaygaeqaFoaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanadIadIadIadIaFpaFpaFpanaakUaDTaDUaGCanfaqpaqtaqpaqpaqpaGDaGEaGFakUajhageaDXagwaGGagwagwagwageageageaEcageageaGHakaakaakaakaauKageakHakHageageageageageageajUagwagwajqaGJaGJaHraGJaGJaBeaGKaGLaGKaBeaGMaGNbqXaCEaHEbbHawvawvawvawvbcHaEkaFdaFebdQaGOaHabDOaHbaHcaEmaEnaEoaEoaEoaEoaEoaEpaEpaEqaBlaDKaCWaHdaHeaCWaCWaCWanOaFoaHfaHfaHfaHfaHfaDQaDQaanaanaygaeqaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanadXafeahpanRakUaECaEDappaEEatnaHgaHhaHiaHjaHkaHlaHmakUajhageaJragwaHoagwagwagwageaEdageagwaHpaHqaHuaHuaHuaHvaHvaHvaHwaGJaGJaGJaHwaHxaHwaHvaHvaHyaGJaHzaHUaGJaGJaHraGJaGJaIGaCEaHEaCEaIHaHBaHBaHBaHBaGPaEYaGRaGRaGRaFfaJEaKhbbFaKhbbIbcDawvawvaCgaHIaEmaEnaEoaEoaEoaEoaEoaEpaEpaEqaBlaCVaCWaHJaHKaJcaGyaCWaCjaeYaHfaHLaHMaHNaHfaanaeqaanaeYaygaeqaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanadXadXafeanaakUakUakUakUakUakUaHOakUakUakUaHPakUaHQakUajhaHRaDXaHSaHTagwagwagwageagwajlagwagwaHqaHvaHvaHvaHvaHvaHvaHwaGJaGJaGJaHwaHwaHwaGJaGJaHyaGJaIIaHvaGJaGJaHvaHvaHvaHWaCEaHXaFIaHYaHZaHYaHYaHYaIaaEZawvawvawvaGkaGpaGqbbGaGqaGQawvawvawvaCgaIiaIjaIkaIlaIlaIlaIlaImaImaImaInaIoaIpaIqaIraIsaCWaCWaCWaGzaCjaHfaItaIuaIvaIwaanaeqaeYaCjaygaeqaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanadIadIadXaIxaIyakUaIzaIAaIBaDgaqtaICaIDakUaIEaKCaIEageageagwaDXagwagwagwagwagwagwagwageaHpaHpajhaHvaHvaHvaHvaHvaHvaHwaHraIKaILaILaJuaJvaILaILaJwaJxaHUaHvaHvaGJaJyaHvaHvaBeaIMaINaIOaIPaIQaIRaISaITaIUazJawvawvawvaGkawvawvaAdawvawvawvawvawvaCgaIVaIWaIXaIXaIXaIXaIXaIXaIXaIXaIXaIYaIZaCWaJaaJbaKvaGyaCWaGzaGzaHfaJdaIuaJeaHfaanaanaeYaeYaJfaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanadIadIadIadXaJgakUaJhaJiatnatnaJjaJkaJlakUaJmaLRaJoageageagwaLSaLTaMxaJsaJtaJsaJtaJsaJsaJtaJsaJsaHvaHvaHvaHwaJzaJUaJVaJUaJWaJXaHwaHwaHwaHwaJYaJUaJUaHvaHvaHvanzanzanzanzanzanzanzanzanzanzanzanzaBeaBeaBeawvaJBaCMaGlaGYaCMaJDaCMaHFaCMaCMaJFaCgaJGaJHaBlaBlaBlaBlaBlaBlaBlaBlaBlaJIaDKaCWaJJaHKaCWaCWaCWanOaGzaHfaIuaItaJKaHfaeqaeYaFoaCXaJLaacaacaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanadXadXadXadXadXadXajqakUaqpaqpaqpanVaJManVaJMakUaJNagwaJqageaJOagwageageaDXaJtaJPaJQaJRaJRaJRaJSaJTaJtaHvaHvaGJaHwaJZaJUaJUaJUaKaaKbaHwaKFaHwaKGaKHaKIaKJaJUaHvaHvanzanAaooanBanCanDanzaomaonaoqanGaosaKfaKNaMLaCMaKgaJCaGnaAaaKjawvaCcaKkawvawvaKlaAIaKmaBlaBmaKnaKoaBpaKpaBpaKqaKraBmaKsaBtaCWaKtaKuaLLaKwaCWaeqaGzaHfaHfaHfaHfaanaCXaCYaCYaKxaeqaacaacaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanadXafeafeafeafeageajqakUaKyaKzaKAanVaKBanVaKBakUagebjjageageagwagyagwaEMaCpaJsaKDaKEaJRaJRaJRaKEaKDaJtaGJaGJaGJaHwaKYaJUaJUaJUaKaaJUaHwaKZaHwaJUaLaaLbaLyaJUaJUaHvanzbGkaopaNSaOzaPtaPxaorbERanzbGjbGnbFjbFkanzaLeaOUaLeaLeaLeaKPaKQaKRaAcaAbawvaKSaAIaAIaKTaAIaAIaAIaAIaKUaAIaAIaAIaAIaAIaAIaCWaKVaCWaCWaCWaCWaeqaGzaeqaeqaanaanaFoaygahjaeYaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanadXafeafeaKWafeageajqakUakUakUakUakUakUakUakUakUageagwajhajhageaHSagyaDXagwaJtaJRaJRaJRaKXaJRaJRaJRaJtaGJaGJaGJaHwaLzaJUaLAaJUaKaaLVaHwaLWbFeanEanEanEanEanFbFebFeanzaFZaFZaKOaNyaNwanzaombFlanzaLfaLfbDPaLfaLebGiaMiaMjbFqaLeaLeaLeaLeaLeaLealfaAdawtaLhaLiaLiaLjaLkaLlaLlaLmaLnaLnaLnaLoaLhaLpaLqaLpaLraLpaLpaLsaGzaGzaeqaanaanaeYaygaeYaeqabqabqabqabqaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanadXafeaLtafeajOageajqagwagdagdagdaHSagxagwagdagdaLuagwajhageageageagwaDXagwaJtaJRaJRaLvaLwaLxaJRaJRaJtaHuaHuaHuaHwaHwaHwaLXaHwaKaaLYaHwaMAbFeaJnaNuaLcaMdaMdaMdaMdanzanzanzanzanzanzanzaKibFNanzaLeaPBaLGaLIaLfaMiaMiaMiaNxaLeaMgaLdaLJaMkaLeawvaAdawvaLMaLiaLiaLpaLpaLpaLpaLpaLpaLNaLOaLPaLOaLOaLQaLpaLpaLpaLpaLhapfaFoaeqaeqaeqaCjaygaltaeqacracZacZacZaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanadXajOafeafeafeageajuaFCaPLajwajwajwajwajwajwajwajwaYjajwajwbfbajwajwaNiageaJsaJRaJRaJRaLUaJRaJRaJRaJtaMBaMCaMDaLXaGJaGJaGJaHwaKaaMEaHwaHwbFebFtaLcaLcaMdaMdaMdaOAaOBaQYaOybpGaOBbELbEMbEObFubEQaLeaOZaKebGaaPyaMiaMiaPsbFRaLeaNTaLHaMfaMQaLeawvaMlawvaLMaLiaLiaMmaMnaMnaMoaMnaMnaMpaMqaMraLhaLhaMsaMtaLhaMuaMvaLhaLhaeYaeqaeYaeYaMwayganOaeqaeYaeYaeYaeYaeqaeqaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanadXafeafeafeafeageaLuagwajUagwagwagwagwagwageagwagcagwagwagwagwagwagwaNPagwaJtaMyaKEaJRaJRaJRaKEaMzaJtaGJaNnaGJaNoaGJaGJaGJaHwaNpaNqaHwaNrblFbFxbFyaLcaMdaMdaMdaOAaOBaQYaSAbESbETbETbEUbEObFuaJnaLeaLKbEHaLKaLfbEIbENbEPbFiaLeaLFaMeaPzbqCaLeawvaMRaCKaMSaMTaMTaMUaLpaLpaMVbvQaLpaLqaMWaMXaLhaMYaLpaMZaLhaMZaLpaMYaLhaCjaeqaeqaeqaeqaNaaNbaNcaNbaNdaNeaNbaNfaeqaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanadXafeafeafeafeageaHqaHqbEeaHqaHqaHqagdagdageagdaNgaNhaNhagdagdagdageaOpageaJtaNjaNkaJRaJRaJRaNlaNmaJtaNnaOwaOEaHwaPDaGJaGJaHwaNpaQqaHwbbKbFeaLcbEWbEWaMdaMdaOAaOAaOBaQYaSAaSAaSAaSAaSAbEObFubEVaLeaLeaLeaLfaLfaLeaOCbFUaLfaLeaLfaLfaOVaLeaLeaDyaNzawvaLMaLiaLiaNAaLpaLpaLpaLpaLpaNBaNCaNDaLhaNEaLpaNFaLhaNGaLpaNHaLhaGzaeqaNIaNJaNJaeYaNJaNJaNKahiahiaeqaygaeqaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanadXadXadXadXadXadXbyuaaqbEhaaqaaqbyuaanaanaanaanaNLaNMaNNaNgaNgaNgaNOaOqaNQaJtaJtaJtaJsaJsaJsaJtaJsaJtaHwaHwaHwaHwaHwaGJaGJaHwaNpaGJaGJbbKaHvaHvaHvbEWbEWaMdaOAaOBaOBaOBbEXaSAaSAaSAaSAbEObFzbFFbFGaLebFmbFnaMKaMMaMNaMOaODbFoaMhbFpaPEbFZaLfawvazaawvaLhaNUaNUaNVaNWaNXaNYaNZaLpaOaaLpaObaLhaOcaOdaOeaLhaOfaOgaOhaLhaGzaeqaOiaOiaOjaOiaOjaOkaeqaOlaOlaeqaygawMaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanbyuaaqaaqaaqaaqbyuaanaanaanaanaOmaOnaNNaNgaOoaOoaNQaOrbhGbhGbhGbhGbhZaOsaOtaOsaOsaOsaOsaOsaOsaOsaNhaNQaNQaNhaGIaHsaHtblYaHvaHvaHvaHvbEWaMdaOAaOBaOBaOBaQYaSAbEYbEZbEXbFabFbbFcbFuaLfbFIbFJbFKbFKbFKaNvbFvbFvbFvbFwbFQbGhaLfaADaAEaADaLhaLhaLhaLhaLhaLhaLhaLhaLMaOGaLMaLhaLhaObaOHaOIaLhaOIaOHaObaLhaGzaeqaeqaOJaOJaOKaOLaeYaNKaOMaOMaONaCkawMaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanbyuaaqaaqaaqaaqbyuaanaanaanaanaNgaOOaNNaOPaNQaNgaNgaNQaOQaORaORaORaOrbhGbhGbhZaNQaOsaOsaOsaOsaOsaNhaNQaNNaNhaHAaHCaGJaHvaHvaHvaHvaHvbEWaMdaOAaOAaOBaOBbFdaSAbpGaOBaOBbEZbEXbEObFMbFVbFOaKMaKMaKMaOxaOYaQraQsaMPaMPaQpaOWbGbawvaPaawvaPbaPbaPcaPdaPbaPbaPeaPbaPbaPfaPbaLhaLhaLhaPgaMtaLhaMuaPhaLhaLhaClaeqaeqaPiaPjaOKaOLahhaeqaOMaOMaONaCkaeqaanabqabqabqabqabqaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanbyuaaqaaqaaqaaqbyuaanaanaanaanaanaNgaNgaNgaNgaNgaNgaNQaOsaORaPkaORaNQaPlaNQaOraPmaPmaPmaPmaPnaPnaPoaPnaPnaPnaPpaPqaPraHvaHvaHvaHvaHvaHvbFebFeaOAaOBaOBaQYaPCbpGaOBbFfaOBbFgbFWbGmaLeaPuaPvaPwbFSbFBaQtbbJbFHbbJbbJbFLbFTbEJaPFaPGaHaaPHaPHaPHaPHaPHaPHaPIaPHaPHaPJaPKbDQaPMaPHaPNaPHaPOaPHaPNaPPaPbaPbaPQaOiaPRaPSaOiaPSaPSaeqaOMaOMaONaPTaeqaanabqayOayPayQabqaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbyubyubyubyubyubyuaacaacaanaanaanaNgaNgaNgaPUaPUaPUaPVaPUaPWaPXaORaORaORaORaNQaPYaPZaNhaNhaNhaNhaNhaQaaQbaQcaQdaQeaQfaQgaQgaQgaQgaQgaQgaQhbFeaOAaOAaOAbFebFebFeaOBbFebFebFebFebFeaLeaLfaLeaLeaLebFCbFDbFXaMPaPAbEKbFEbGlaLfaQuaQvaQwaQxaQxaRgaQxaQxaQyaQzaQxaQxaQAaQxaQBaQxaQxaQCaQxaGSaQEaQFaQGaPbaQHaPQaeqaNJaNJaQIaNJaNJaNKaOMaOMaeqaPTaeqaeqabqayRaySazMabqaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaQNaQKaQLaQKaQMaQKaQNaQOaQPaQQaQRaORaOsaNhaNhaNhaQSaQTaQUaORaORaORaORaQVaPUaPUaPUaPUaPUaPUaPUaPUaRAbFebFebFhaMdbFebFYbFebFebFeaQZaQlaQmaQnaRaaRbaQkaRaawtaLeaLeaLeaLeaLeaLeaLeaLeaLeamxaRdawtaPQaPQaPQaPQaPQaPQaPQaReaRfaReaRfaReaRfaReaReaReaRebmpaPbaRhaPbaPQaPQaPQaPQaPQaPQaPQaPQaPQaeYaeYaRiaRjaRkaeqabqazNacZazOabqaanaanaanaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaQNaQLaQLaQLaQLaQLaQNaPWaRlaRmaRnaORaPUaPUaPUaPUaRoaRoaRpaORaRqaRraRsaRtaRuaRvaRwaRxaRxaRyaRzaPUaRAbFebFebFebFebFeaQjaQjaQjaQiaRCaQkaQoaQkaRDaREaQkaRFawtawtaYiaRHaRIawtaAxaAXaAYawtawvaRdaRNaROaROaRPaRPaROaROaROaRNaRQaRRaRSaRTaRSaRUaRVaRWaReaRXaPbaRYaRZaSaaSbaSbaScaSdaSeaSfaSgaPQaPQaPQaPQaeqaShaeqaPQaPQaAwaPQaPQaanaanaanaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaQNaSjaSkaSlaSmaSnaQNaQJaORaSoaSpaORaORaSqaSraORaORaORaSsaRlaRqaStaSuaSvaSwaSwaSwaSxaSxaSyaSzaPUaQWaQXaQjaQjaQjaQjaQjaQjaQjaQibxgaQkaSBaSCaSDaSEaQkaSFbrUawtawvazbaCfaAZaCNaCNaCNaAZaGRaSKaRNaSLaROaRPaRPaROaROaROaSMaSNaSOaSOaSOaSPaSQaSRaSSaSTaSUaSVaSWaPbaSXaSfaSfaSfaSYaSZaSfaSfaSfaTaaTbaSfaTcaTdaTeaTfaTgaThaTiaPQaanaanaanaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaQNaTjaTkaTlaQLaQLaQNaORaORaTmaTnaORaORaToaTpaTqaTraTsaTtaTuaTvaTvaTwaTxaTyaTzaSxaTAaSxaTBaTCaPUaRAaNhaQjaQjaQjaQjaQjaQjaQjaQjaQkaTDaRbaTEaSFaSFaSFaTFaSFaTGaCIaTHawvawvawvawvawvawvawvaTLaRNaTMaTNaRPaTOaTPaTQaTRaRNaTSaRSaRSaRSaRSaTTaTUaTVaReaTWaPbaTXaPbaPQaTYaTZbDZaUaaUbaSfaSfaSfaSfaSfaSfaUcbEaaPbaPbaPbaUdaUeaPQaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaQNaUfaUgaUhaUiaUjaQNaUkaUlaRmaUmaUnaUoaUpaUqaUraUsaUtaUuaUvaUwaUxaUyaUzaUAaUBaUCaUCaUDaUEaUFaPUaRAaNhaQjaQjaQjaQjaQjaQjaQjbcFaQkaQkaUGaUHaQkaRaaRbaUIaQkaUJawvaCPaCQawvawvawvawvawvawvaUKaRNaULaUMaROaROaROaROaUNaRNaRWaUOaUPaUQaRWaURaUSaRWaReaUTaUTaUUaUVaUWaUWaUWaUWaUWaUXaUYaUZaVaaVbaVcaVcaVdaVdaVdaVdaVdaVeaVfaUTaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaQNaQLaVgaVhaViaVjaVkaVlaVmaVnaVoaVpaVqaVraVsaVtaVuaVvaVwaVxaVyaVxaVxaVzaVAaVAaVAaVAaVAaVAaVBaPUaRAaNhaQjaQjaQjaRBaQjaQjaQjaQiaQkaVCaVDaVEaQkaVFaVFaVFaVFaVFayLayNayNayNayNayNayNayNayNaAzaVLaROaRPaROaVMaROaTOaROaRNaVNaVOaVOaVOaVOaVOaVOaVOaVOaVOaVOaVPaVQaUWaVRaVSaVTaUWaUWaUWaUWaUWaVdaVdaVdaVdaVUaVVaVWaVdaVXbEbaUTaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaQNaVZaWaaWbaWcaWdaQNaORaWeaWfaWgaWeaWhaWiaVvaWjaVvaVvaWkaWlaWmaWnaWoaWpaWqaWraWsaWtaWuaVAaPUaNhaRAaWvaQjaQjaQjaQjaQjaQjaQjaQiaWwaWxaWyaWzaVFaVFaWAaWBaWCaVFazPayNayNayNayNayNayNayNazQazSaWHaWIaROaWJaWKaROaROaWLaRNaWMaVOaWNaWNaWNaWNaWNaWNaWOaWPaVOaVPaVQaUWaWQaWRaWSaUWaWTaWUaWTaUWaWVaWWaWVaVdaWXaWYaWZaVdaXaaVYaUTaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaFTaQNaQNaQNaQNaQNaQNaQNaWeaXbaXcaWeaXdaXeaXfaXgaXhaXiaXjaXkaXlaXmaXnaXoaXpaXqaXqaXraWuaXsaPUaPUaRAaNhaQjaQjaQjaQjaQjaQjaRBaQibEcaAdaXtaXuaVFaXvaXwaXwaXwaVFaAyayNayNayNayNayNayNayNayNaAzaVLaXzaROaROaXAaROaROaROaRNaWMaVOaWNaWNaWNaWNaWNaWNaXBaXCaVOaXDaXEaUWaUWaXFaUWaUWaXGaXHaXGaUWaXIaXJaXIaVdaVdaXKaVdaVdaXLaXMaXNaXNaXNaXNaXNaXNaXNaXNaYNaXNaXNaanaanaanaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaWeaXOaXPaWeaXQaXRaXSaXTaXUaXVaWuaXWaXXaXYaXZaWuaWuaXYaWuaYaaWuaXsaPUaPUaYbaNhaQiaQiaQiaQiaQiaQiaQiaVFaVFaYcaYdaYeaVFaYfaXwaYgaYhaVFayNayNayNayNaBaayNaBcaBLaBLaBMaRNaYmaROaYnaYoaROaROaYpaRNaWMaVOaWNaWNaWNaWNaWNaWNaYqaYraYsaYtaYuaYvaYwaYxaYyaYzaYyaYAaYBaUWaYCaYDaYEaYFaYEaYGaYHaYIaYJaVYaXNaYKaYLaXNaYMbdRaYOaYOaYOaYOaXNaanaanaanaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaWeaYPaYQaWeaYRaYSaVvaYTaYUaYVaWuaYWaYXaYYaYZaZaaZbaZcaZbaYaaZdaVAaZeaZeaZfaZgaZhaZiaZjaVFaVFaVFaVFaZkaZlaZmaZnaZoaVFaVFaZpaVFaZqaZqaZraZsaZqaZqaZqayNaBPayNayNaDpaRNaRNaZvaZwaZxaZvaZwaRNaRNaWMaVOaVOaVOaVOaVOaVOaVOaVOaVOaVOaZyaZzaUWaZAaZBaZCaZDaZEaZFaZGaUWaZHaZIaZJaZKaZLaZMaZNaVdaZOaZPaZQaZRaZSaXNaZTaZUaZVaZUaYOaYOaXNaXNaXNaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaZWaZXaZYaWeaZZbaababaWuaWubacaWubadaVAbaebafbafbagbahbahbaibahbajbakaZhaZfbalaZhbambamaVFbanbanbaobapbaqaZmaZnaBbbarbasbapbataZqbaubavbawbaxbayaZqayNaBPayNayNaDqaDraDsaDtayNaHVayNaIFayLaWMaWMbaFbaGbaGbaGbaGbaGbaGbaHbaIbaFbaJaVQaUWaUWbaKaUWaUWaUWaUWaUWaUWbaLbaLbaLbaLbaLbaMbaLbaLbaNaVYaXNbaObaPaXNbaQbhOaZUaYObaSaYObaTbaUaXNaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanbaVbaWbaXbaYbaZbbabbbbbabbcaXnbbabbdbbebbfbbgbbhbbibahbbjbbkbblbajbakaZhbbmbbnbbobbobbobbpbbqbbqbbqbbqbbrbbsbbtbbubbvbbwbbxbbybbzbbAbbBbbBbbCbbDbbEaMFaOuaOvaOvaOSaOvaOTaOvaOvaRGaRJaRKayLbbLaWMbaFbaGbaGbaGbaGbaGbaGbbMbbNbaFbbObbPbbQbbRbbSbbTbbQbbUbbVbbUbbQbbWbbXbbWbaLbbYbbZbcabaLbcbbccaXNbcdbcebcfbcgbchbaSaYOaZVaZUbcibaSaXNaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanbcjbcjbcjbcjbcjbcjbcjbcjaWeaZZaXjbckbclbclaXZaWubcmbcnbbabbcbcobcpbahbcqbcrbcsbajbakaZhbctaZfbalbalbalaVFbcubcubcubapbapaZmbaqbapbcvbapbcwbaEaZqbcxbcybczbcAbcBbcCayNaRLaRMaRMaSiaRMaSGaRMaRMaSHayNaSIayLbcJaWMbaFbaGbaGbaGbaGbaGbaGbcKbcLbcMbcNbcObbQbcPbcQbcRbbQbcSbcTbcSbbQbcUbcVbcUbaLbcWbcXbcYbaLbaNaVYaXNbcZaZVaXNbdabdbbaSbdcbddaZUaYMbdebdfaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanbcjbdgbdhbdibdibdhbdjbdkbdlbdmbdnbdobdpbdqbdrbdsbdtbbebdubdvbdwbdxbajbajbajbdybajbakaZhbdzaZfbdAbalbalaVFbdBbdCbdCbdCbdDbdEbdFbapbdGbdHbdIbdJaZqaZqaZqbdKbdLbdMaZqbdNbdOaZqbdPbEkayNaSJayNaTIayNayNaTJaTKbcJaWMbaFbaFbaFbaFbaFbaFbaFbaFbaFbaFaZybdTbbQbdUbdVbbQbbQbcTbdWbdXbbQbdYbdZbcVbaLbaLbeabaLbaLbebbEbaXNaZVbecaXNbedbeeaYOaXNaYOaYObefbegbehaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanbcjbeibejbekbelbembenbcjbeoaVAaVAaVAaVAaVAaVAaVAaVAaVAaVAaVAaVAaVAaVAbakbajbepbajbakbakbeqaZfbalbdAberaVFbcubcubcubapbesbetbeubapbapbapbapbaqbevbewbexbeybezbezbeAbeBbeCbeDbeEaZqaVGaVHaDtayNayNayNaTJaVIbcJaWMbeIbeJbeJbeJbeJbeJbeJbeKbeLbeIbeMbeNbeObePbeQbeRbeSbeRbeTbeUbbQbeVbeWbeXbeYbeXbeZbfabEgbfcaVYaXNbfdbfeaXNbffbeeaZUaYObfgbfhbfibfibfjaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanbcjbfkbflbfmbfnbfnbfobcjaVAaVAbfpbfpbfpbfpbfpbfpbfpbfpbfpbfpbfpbfpbfpaZhbajbajbajbakbakbfqaZfbdAbalbfraVFbfsbapbapbapbftbfubfvbapbapbfwbapbaqbfxbfybfzbfAbfBbfCbfzbfDbfEbfFbfGbdPayNaVHaVJaVKaVKbcJbcIbfKbcJaWMbeIbeJbeJbeJbeJbeJbeJbfLbfMbeIbfNbfObbQbfPbfQbfRbfSbfTbfUbfVbbQbfWbfXbfYbfZbgabgbbgcbaLaZOaVYaXNaXNaXNaXNbaSbaPbciaYObjobaSaZUaYOaYNaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanbcjbgebgfbekbggbgfbgebcjbfpaZhaZhbakaZhbakaZhaZhaZhaZhaZhbghaZhaZhaZhaZhbgibalbgjbalaZhbalaZfbalbalbalaVFbgkbgkbgkbapbapaZmbaqbapbapbapbapbaqbfxbglbgmbgnaZqbgobgpbgqbgrbfFbfGbdPayNaSJaWEayLaVKbcJblZbfKbcJaWMbeIbeJbeJbeJbeJbeJbeJbgtbgubgvbgwaVQbbQbbQbdUbbQbbQbbQbbQbbQbbQbaLbaLbaLbaLbaLbaMbaLbaLbaNaVYaXNbgxbgybgzaZUbgAaYOaYOaZUaYObaTbgBaYNaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaanaanaanbcjbcjbcjbcjbcjbcjbcjbcjbfpbgCaZhbakaZhaZhbfrbgDaZebgEaZebalaZebgEaZebalbalaZhaZhaZhaZhbgFbgGbgHbgIbgIaVFaVFaVFaVFbgJbgKbgLbgMbgNbgObgObgObgPbgQbgRbgSbgTaZqbgUbgSbgVbfEbfFbfGbdPayNaSJaVJaVKaVKbcJblZbfKbgWaWMbeIbeIbeIbeIbeIbeIbeIbeIbeIbeIbgXbgYbgZbhabhbbhcbgZbhdbhdbhdbhdbhebhebhebhfbhgbhhbhibhfbhjbhkaXNbhlbhmbhnbhobhpaZUaZVaYOaYOaXNaXNaXNaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanbfpbalbhqbalbalbalbhrbhsbhsbhsbhtbhubhvbhsbhwbhwbhxbhwbhwbhwbhwbhybgIbgIbgIbhzbhAbgIaVFbhBbhCbhCbhCbhDaZmbhEbhFbElbhHbhIbfybfzbhJbhKbhLbhMbfDbfEbfFbfGbdPayNaWGaXxayLaVKbcJbnwbfKbcJaWMbhPbhQbhQbhQbhQbhQbhQbhRbhSbhPbaJaVQbgZbhTbhUbhVbgZbgZbgZbgZbgZbhfbhfbhfbhfbhWbhXbhYbhfbaNaVYaXNaZVaYOaZVaZVblmaYOaYOaYOaYOaXNaanaanaanaanaanaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaanaanaanaanaanaanbfpbfpbfpbalbalaZhaZhaZhaZhbiaaZhaZhbibbicbidbiebalaZhbakaZhaZhaZhaZhaZhbifbgIbigbihbiibijbgIbgIbgIaVFaVFaVFaVFbikaVFaVFaVFbilbimbinbiobipbiqbiqbiqbiqbirbfzbisaZqbitbiubitbitbitbcJbnwbivbcJbcJbhPbhQbhQbhQbhQbhQbhQbiwbixbhPbiybizbgZbiAbiBbgZbgZbiCbiDbiEbgZbiFbiGbiHbhfbhfbiIbhfbhfbiyaVYaXNaXNaYNaXNaXNaXNbiJaYNaYNaXNaXNaanaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaanaanaanaanaanaanbfpbgCbiKbfpbiLbfpbfpbfpbfpbiMbiNaZhaZhaZhaZhaZhaZhaZhaabaabaabaabaabbakbifbgIbgIbgIbiObiPbgIbiQbiRbhBbiSbiTbiUbiVbiUbiTbiWaVFbiXbiYbiZbjabjbbjcbjdbjebjfbjgbjhaZqbjibjkbEibjlbjmbjnbEobjpbcJbjqbhPbhQbhQbhQbhQbhQbhQbjrbjsbjtbjubeNbjvbjwbjxbjybjzbjybjAbjBbgZbjCbjDbjEbjFbjEbjGbjHbjIbfcaXMaUTaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaanaanaanaanaanaanbfpbfpbjJbambjKbfpbfpbfpbfpbjLbjMbjNbakaabaabaabaabaabaabaabaabaabaabaZhbifbgIbjObihbjPbjQbjRbjSbjTbhBbjUbjVbjWbjXbjWbjVbjYaVFaZqaZqbjZbkaaZqaZqaZqaZqaZqaZqaZqaZqbkbbkbbkcbkdbkebkfbEpbcJbcJbjqbhPbhPbhPbhPbhPbhPbhPbhPbhPbhPaZybfObgZbkgbkhbkibkjbkkbklbkmbgZbknbkobkpbkqbkrbksbktbhfaZOaVYaUTaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanbfpaZhbjJbambkubkvbfpbfpbiebalbkwbakaabaabaabaabaabaabaabaabaabaabaZhbifbgIbgIbgIbkxbkybgIbkzbkAbhBbkBbkCbiUbapbiUbkCbkDaVFbkEbkFbkGbkHbkIbkFbkJbkKbkKbkLbkMbcJbcJbcJbcJbcJbcJbkNblZbcJbjqbjqbjqbjqbjqbjqbcJbkObkOaUTbkPaUTbaJaVQbgZbgZbgZbgZbgZbgZbgZbgZbgZbhfbhfbhfbhfbhfbhfbhfbhfbaNaVYaUTaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanbfpbkQbkRbkSbfpbjKbfpbfpbgCbgCbkwbakbkTaCybkTbkUaabaabaabaabaabbakaZhbkVbkWbkXbgIbkYbgIbkZbkZbkZbhBaVFaVFaVFaVFaVFaVFaVFaVFblablbblcbldbleblfblgblhbkKblibljblkbllbEqaWMbcJbjqbkNblZblnbloblpblqblpblpblrblnblsbltaUTaUTaUTblublvaUTaUTaUTaUTaUTaUTaUTaUTaUTblwblxblyblzblAblBblCblDbluaVfaUTaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanbfpbfpbfpbgCbfpbfpbfpbfpbfpbfpbkwbakbkTbkUbkUbkUaabaabaabaabaabaZeblEblEblEbDTblGblHblIblJblKblLblMblMblNblOblEblEaabbkKblPblQblRblSbErblUblVblWblXbkKaWMaWMaWMbcJblZaWMbcJbEsbEtbEubmabmbbmcbmdbmdbmebmfbmabmgblsaUTbmhbmibmjbmkbmlbmmbmnbmobDYbmqbmrbmsbmkbmkbmkbmkbmtbmkbmkbmubmvbmwaVYaUTaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaanaanaanaanaanbfpbfpbfpaanaanaanaanbfpbkwbakaabaabaabaabaabaabaabaabbakaZhbmxbmyblIbmzbGobmAaYkbmAbmAbmAbmCbmDbmEbmFbmGblEaabbkKbmHbmIbmJbmKbEvbmMbmNblabmObkKbcJbgWbcJbcJbEwbExbEybEzaWMbjqblnbmPbmQbmRbmSbmTbmUbmVbmWblsbmXbmYbmZbnabmZbmZbmZbmZbmZbmZbmZbmZbmZbmZbmZbmZbmZbnbbmZbmZbncbndbnebnfaUTaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanbfpbngbakbakbnhbnibnibnibnibnibnhbnhbnjbnkbnlbnlbnmbnnbnobnVbmAbmAbmAbnpbnqbDVbnrbnsblEaabbkKbntblabnubnvbEAbEBbECblQblQbEDbExbExbExbExbEzbcJbcJaWMbjqbjqblnbnxbnxbnybnzblqbnAblnbmWbkOaUTbnBbnCbnDbnEbmZbmZbnFbnGbnGbnGbnFbmZbnHbmZbDRbnJbnKbnLbnMbnNbnOaUTaUTaUTaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanabqabqabqabqaZhbnPaZhaZebnhbnibnQbnQbnQbnibnhbnhbnjbnRbnSbnTbnUbnVbnWbnVbnWbnVbnXbnYbnZbmBboabnsblEaabbkKbobbocblabodboebofbogbocbohbkKbcJbcJbcJboiboiboibcJbjqbjqbjqblnbojblqbokblpblqbokblnbmWbkOaUTaUTbolaUTaUTaUTbombonboobooboobopbomaUTaUTaUTaUTaUTaUTaUTboqboraUTaUTaUTbosbosaanaanaanaanaanaanaanaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaZhbotboubakbnhbnibovbowboxbnibnhbnhbnjboybozboAboBbnVboCboDboEbnWboFboGboHboIboJboKblEaabbkKbkKbkKbkKbkKbkKboLboLboLboLboLboMboMboMboMboMboMboNboNboNboNboNboNboNboNboOboOboPboObmWboQbkOblsboRblsbkOboSbonboTboTboTboTboTbonbosbosbosboUboVboVboWboXboYboVboZbpabpbbosbosaanaanaanaanaanaanaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaZhbpcbpdbakbnhbnibpebpfbpgbnibnhbphbnjbnjbnjbpibpjbnVbpkbplblTbnVbpnbmAbpobppbpqbprblEaabaabbpsbpsbpsbpsbpsbpsbpsbptbptbpubptbpvbpubptbptbpuboNbpwbpxbpybpzbpAbpBbpCbpDblsbpEblsbmWblsbkOblsboRblsbkObpFbonboTboTboTboTboTbonbosboUbFrbpHboVboVbpIbpJbpKbpLbpLbpMboUbpNbosaanaanaanaanaanaanaanaanaanaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaZhbpObpPaZhbnhbnhbpQbpRbpSbnhbnhbphbpTbpUbpVbpWbpXbpYbpZbqabmLbnVbmCbmAbqcbqdbpqbqebqfbpsbpsbpsbqgbqhbqibqgbqjbqkbptbptbptbptbptbptbptbptbqlbqmbqnbqobqpbqqbqrbqsbpCbpDblsbpEblsbmWblsbkOblsboRblsbkObqtbonboTboTboTboTboTbonbosbosbqubqvbqwbqwbqxbqybqzbqAboVbqBboUboUbosaanaanaanaanaanaanaanaanaanaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanbrsbsmbqDbphbphbqEbqFbqEbqGbqHbqIbphbqJbqKbqKbqLbqMbnWbqNbqObpZbqPbqQbqRbqSbqTbqUbprbqkbqVbqWbpsbDUbqgbqYbqgbqgbpsbqZbqZbqZbqZbqZbqZbqZbqZbqZboNbrabrbbrcbrcbrdbrebpCbpDblsbpEblsbrfbrgbrgbrgbrhbribrjbrkbonboTboTboTboTboTbonbosboUbrlboVbrmbrnbrobrpbrqbqAboVbrrbpHboUbosaanaanaanaanaanaanaanaanaanaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanbEmbEEbphbphbrtbrubrvbrwbrxbrybrzbrAbrBbrCbrDbrEbrFbnWbrGbrHbrIbnVbrJbrKbrLbrMbrNbrObrPbrQbrRbrPbrSbrTbDWbrVbrWbrXbrYbrYbrYbrYbrYbrYbrZbsabrYbsbbscbsdbsebsdbsfboNbpCbkObkObkObkOblsblsbkOblsbmWblsbkObsgbonboTboTboTboTboTbonbosbosbshboVbsibrlboVbsjbskboVboVbslboUboUbkObkObkObkObkOaanaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanbEFbEGbsnbsobspbsqbsrbsqbssbstbsubsvbsqbswbsxbsybszbnWbsAbsBbsCbnVbsDbsEbmAbsFbGpblEbqkbsHbsIbpsbqgbsJbqYbsKbsLboMbsMbsMbsMbsMbsMbsMbsMbsNbsMboNbsObsPbsQbDXbsRboNboNboNboNbsSbsSblsblsbkOblsbmWblsbkObpFbombonbonbonbonbonbombosboUbsTbsUbsVbsWboVboVboVbsYbsZbslbpHbosbkObtabtbblsbkOaanaanaanaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanbnibnibnibnibnibphbphbtcbtdbtebtfbtgbthbtibtjbtkbqKbqKbtlbtmbtlbnVbnWbtnbnWbnVbtobsEbmAbsFbsGbtpbpsbtqbtrbpsbqgbsJbqYbsKbtsbqkbptbptbptbptbptbptbptbttbqlbqmbtubtvbtwbrcbtxbtybtzbtAboNbsSbkOblsblsbkObkObmWbkObkObpFbpFbtBbtCbtDbtEbtEbtEbtEbtEbosbosbosbosbtFbtFbtGbosbkObtHbkObkObkObtIbtbblsbkOaanaanaanaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanbnibtJbtJbtKbtLbtMbtNbtObtPbtQbtRbqKbtRbtSbtTbtUbqKbqKbtTbtVbtWbtXbqKbtYbtZbuabubbsEbmAbsFbsGbucbnnbudbudbudbudbuebqYbufbpsbpsbptbptbpubptbugbpubptbuhbpuboNbuibujbukbulbumboNboNbunboNbsSbkOblsblsbuobupbuqburbkObkObkObkObkObkObtEbusbutbuubtEbtEaanaanbosbuvbuwbuvbosbkObuxaanaanbkObkOblsblsbkObkObkObkOaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanbnibuybuzbuAbpfbuBbuCbuDbuEbuFbuGbuHbtRbuIbuJbuKbuLbuMbuNbuObuFbuPbqKbtYbuQbuabuRbsEbuSbsFbsGbuTbnnbuUbuVbuWbuXbuYbuZbufbpsbpsboMbvabvabvabvabvabvabvabvabvabvbbvcbvdbvcbvcbvebvfbvgbvabsSbkOblsblsbvhblsbmWblsbkOblsaanaanaanbtEbvibvjbvjbvjbvkbtEaanaanbosbuvbuwbuwbvlaanbuxblsblsblsbvmblsblsblsblsbvnbkOaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanbnibtJbtJbvobvpbtMbvqbvrbvsbvtbvubvvbvwbvxbvybvybvybvubvubvzbvAbqKbvBbvCbvDbphbmAbsEbDVbsFbsGbvEbnnbvFbvGbvHbvIbvJbvKbvLbpsbpsaabbvabvcbvMbvcbvNbvObvPbvPbvPbvRbvPbvSbvcbvcbvabvabvabvabsSbkOblsbkObkObkObvTbrgbvUblsaanaanaanbtEbvVbvWaCzbvYbvZbtEaanaanbosbosbwabwbbosaanbuxblsblsbwcbvmblsblsblsblsbvnbkOaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanbnibnibnibnibnibwdbwebwfbwgbuFbwhbwibtRbtSbwjbwjbwkbtTbuGbwlbwmbwnbwobwpbwqbwrbwsbwtbwubwvbwwbwxbnnbwybwzbwAbudbwBbwCbwDbwEbwFaanbvabvcbvgbvgbvgbwGbvgbEnbvgbwGbvgbvgbvgbvcbvaaanaanaanbkObkOblsblsbwHbwHbwHblsbmWblsaanaanaanbtEbwIbwJbwKbwLbwMbtEaanaanaanbosbosbosbosaanbwNaanaanbkObkOblsblsbkObkObkObkOaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanbnibwObwObwPbwQbwRbwSbwTbuLbwUbwVbqKbtRbtSbwWbwXbwYbuIbuJbwZbuLbxabxbbxcbxdbxebxfbEjbxhbxibxjbxkbnnbudbxlbxmbudbxnbxobxpbxqbwFaanbvabvcbxrbxsbxtbwGbvgbxubvgbwGbvgbxvbxwbvcbvaaanaanaanbkObxxblsblsbwHbxybxzblsbmWbkObkObkOaanbtEbtEbtEbtEbtEbtEbtEaanaanblsbxAblsblsblsbxBbxCaanaanbkObxDbtbblsbkOaanaanaanaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanbnibxEbxFbxGbpfbuBbuCbxHbxIbxJbxKbtgbxLbtSbxMbxNbxObtSbqKbxPbqKbxQbqKbxRbxSbphbnnblEblEbxTblEblEblEbudbudbxUbudbxVbxWbxpbxXbwFaanbvabvcbvgbvgbvgbwGbvgbxYbvgbwGbvgbvgbvgbvcbvaaanaanaanbkOblsblsblsbxzbxZbxzblsbmWbkObkOblsbyablsblsblsblsblsbybaanaanaanbxBbycbycbycbycbydaanaanaanbkObtIbtbblsbkOaanaanaanaanaanaanaanaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanbnibwObwObyebyfbygbyhbyibyjbykbxPbqKbtRbylbymbynbyobypbyqbyrbtebyrbyobysbytbwXbyuaanbkObuqbyvaanaanaanaanaanbwFbxpbywbxpbyxbwFaanbvabyybyzbyAbyBbvbbyCbyDbyEbvbbyFbyGbyHbyIbvaaanaanaanbkObyJblsblsbwHbwHbwHblsbmWbkOblsblsblsblsblsblsblsblsblsblsblsblsbuxbkOaanaanaanaanaanaanaanbkObkObkObkObkOaanaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanbnibnibnibnibnibwdbyKbyLbwgbyMbyNbtgbyObqKbtTbuHbuGbqKbqKbyPbyQbyRbySbyTbyUbwXaanaanbkObuqbyvaanaanaanaanaanbwFbyVbyWbxpbyXbwFaanbvabvcbyYbyZbvgbwGbvgbzabvgbwGbvgbzbbzcbvcbvaaanaanaanbkOblsblsblsbwHbwHbwHbzdbzebkObkObzfbkObkObyvbyvbkOblsbwcblsblsblsbzgbkOaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanbnibzhbzhbzibwQbwRbwSbzjbuLbzkbzlbzmbtRbqKbylbynbuJbznbqKbyRbyRbuKbzobzpbzqbzraanaanbkObzsbztbkObyvaanaanaanbwFbwFbwFbwFbwFbwFaanbvabvcbvgbvgbvgbwGbvgbDSbvgbwGbvgbvgbvgbvcbvaaanaanaanbkOblsbpDblsbpEblsbzuboQbzvbzwboQboQbzxbzyboQbzzbkOblsblsblsblsblsbuxbkObkObkOaanaanaacaacaanaanaanaanaanaanaanaanaanaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanbnibzAbzBbzCbpfbuBbuCbzDbqKbtRbyRbuKbzkbzEbuLbzFbuLbzEbuLbzGbyRbqKbqKbzHbzIbzJaanaanbyvbyvbzsbztbkObyvaanaanaanaanaanaanaanaanaanbvabvcbzKbzLbzMbzNbvgbzObvgbzPbzQbzRbzSbvcbvaaanaanaanbkObkObkObkObkObkObzTbzUbzvbkObzVboQboQboQbzWboQbzXblsbpDblsbpEblsbvTbycbvUbkOaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanbnibzhbzhbzYbyfbygbyhbzZbtgbAabyRbqKbAbbthbtgbAcbtgbtgbtgbAcbAcbAdbqKbAebAfbphbphbphbphbyvbkObzsbztbyvaanaanaanaanaanaanaanaanaanbvabvcbvcbvcbAgbvcbvcbAhbvcbvcbAibvcbvcbvcbvaaanaanaanaanaanaanaanaanbAjbAkbAlbAmbkOboQboQbAnbkObkObkObkOblsbwcaacbAoblsblsbkObuxbyvaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanbnibnibnibnibnibwdbyKbApbwgbqKbyRbqKbqKbtRbAqbyRbqKbqKbAqbyRbyRbtRbAqbArbArbAsbAtbAtbphaanaanbkObAubkOaanaanaanaanaanaanaanaanaanbvabvabvabvabvabvabvabvabvabvabvabvabvabvabvaaanaanaanaanaanaanaanaanaanbkObltbmWbkObkOaacaacbkObkObkObkObkObkOaacaacbkObkObkObuxbyvaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanbphbwdbAvbAwbAxbAybuKbAzbAAbABbACbADbAEbAFbAGbAHbAIbAJbAKbALbqKbAsbAtbAtbphaanaanbyvbuqbkObkObyvbkObkObkOaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbkObkObkObkOaanaanbkObkObAMbANbrgbrgbrgbrgbrgbrgbrgbrgbAObrgbAPbrgbrgbrgbAQbkOaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanbphbwdbwdbAvbARbASbATbAUbATbAVbAWbAUbATbAXbAWbAUbAUbAVbAYbphbphbphbphbphbphaanaanbkObAZbBabBabBabBabztbkObkObyvbkObyvbyvbwHbwHbwHbwHbBbbwHbwHbwHbwHbwHbwHbwHbBbbwHbwHbkOaanbBcbBabBabBabBdbBabvUbkObBfbkObkObkObkObkObkObkObkOblsblsbkOblsbpDbkOblsbkObkOaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanbphbphbwdbwdbwdbwdbwRbBgbBhbBibwRbBgbBhbBibwRbBgbBjbBkbwdbphaanaanaanaanaanaanaanbkObkObyvbyvbkObyvbAZbBabBabBabBabFsbBabBabBlbBabBabBabBabBabBabBabBabBabBabBabBabBabBlbBabBmbkObkObkObBnbkObAZbBobBmbBpboQbkOaanaanaanaanbkObkObkObkObkObkObkObkObkObyvaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanbphbphbphbphbphbnibBqbpfbpebnibBqbpfbpebnibBqbpfbpebnibphaanaanaanaanaanaanaanaanaanaanaanaanaanaanbkObkObkObBrbBsbBrbBrbBrbBrbyvbkObBtbyvbkObyvbyvbkObkObwHbwHbwHbwHbyuaanaanbsSbkObzvbkObkObkObkObkObkOaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaadaadaadaadaadaadaadaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbnibBubBvbBwbnibBxbBybBzbnibBAbBBbBCbnibphaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbBrbBDbBEbBFbBGbBraanaanaanaanaanaanaanaanaanbBHbBIbBJbBJbyuaanbBKbBIbBIbBLbBIbBIbBIbyuaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbnibdSbeFbdSbnibeGbeHbeGbnibfHbfIbfHbnibphaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbBrbBTbBUbBVbBWbBraanaanbBKbBIbBIbBIbBIbBIbBIbBIbBIbBXbBXbBIbBIbBIbBIbBYbBZbBYbBYbBYbyuaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbnibdSbfJbdSbnibeGbgsbeGbnibfHbhNbfHbnibphaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbBrbCdbCebCfbCgbBraanbBKbBIbBIbChbChbChbCibCjbCkbClbBYbBYbCmbCnbCobBIbBYbBZbBYbBYbBYaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbnibnibnibnibnibnibnibnibnibnibnibnibnibphbyubyuaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbBrbCpbCqbCqbCrbBraanbBKbBIbCsbBYbBYbBYbCtbBYbBYbBYbBYbBYbCubBYbCobCtbBYbBZbBYbBYbBYaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbBrbCvbCwbCxbCybBraanbBKbBIbCzbBYbBYbBYbCtbBYbBYbBYbBYbBYbCubBYbBYbCtbBYbBZbBYbBYbBYaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbBrbBrbBrbBrbBrbBraanbBKbBIbCAbBYbBYbBYbCBbBYbBYbBYbBYbBYbCCbCDbCEbCFbCEbCGbBYbBYbBYbyuaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbBKbBIbBIbCHbCHbCIbBIbCJbCKbCLbCMbCDbCNbCObCPbBIbBYbBYbBYbCQbBHaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacbBHbBIbBIbBIbBIbBIbCRbCSbCTbCUbCVbCWbCXbCYbBIbBIbBIbBIbBHbBHaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanbBIbBIbBIbCZbDabDabDabBIbBIbBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaanaanaanaanaanaanaanaanaanaanbBIbDabDabCZbDabDabDabDabDabBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaanaanaanaanaanaanaanaanaanaanbBIbDbbDabDcbDdbDabDabDabDbbBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaanaanaanaanaanaanaanaanaanaanbBIbBIbDebDabDabDabDfbDebBIbBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaanaanaanaanaanaanaanaanaanaanbBIbBIbBIbBIbDgbBIbBIbBIbBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaacaacaacaacaacaacaacaacaanbBIbBIbDabDabDabDabDabDabDabBIbBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaacaacaacaacaacaanaanaacbBIbBIbDabDabDabDabDabDabDabDabDabBIbBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaacaacaacaacaacaanaanaacbBIbDabDabDabDabDabDhbDabDabDabDabDabBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaacaacaacaacaacaanaanaacbBIbDabDabDabDabDabDibDabDabDabDabDabBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaacaacaacaacaacaanaanaacbBIbDabDabDabDabDabDjbDabDabDabDabDabBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaacaacaacaacaacaanaanaacbBIbDabDabDabDabDkbDlbDmbDabDabDabDabBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaacaacaacaacaacaanaanaacbBIbDabDabDabDabDabDabDabDabDabDabDabBIaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaanaanaacaacaacaacaacaacaacaacaanaanaacbBIbBIbDabDabDabDabDabDabDabDabDabBIbBIaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaanaanaacaanbBIbBIbDabDabDabDabDabDabDabBIbBIaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaanaacaanaanbBIbBIbBIbBIbBIbBIbBIbBIbBIaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaadaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaadaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaanaadaadaadaadaadaadaadaadaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacbDnaacaacaacaacaacaacaacaacaacaacaacbDnaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbDnbDnbDnaacaacaacaacaacaacaacbDnaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacbDobDpbDpbDnbDpbDqbDqbDrbDnbDpbDsaacbDnaacaacbDnaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacbDtbDubDvbDwbDxbDvbDybDvbDzbDpbDpaacbDnbDnaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacbDAbDtbDBbDvbDvbDvbDvbDvbDvbDvbDCbDDbDsbDnaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacbDAbDtbDEbDFbDGbDHbDIbDJbDKbDvbDpbDpaacbDsbDnbDsaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacbDpbDLbDnbDpbDpbDpbDrbDpbDMbDpaacaacaacaacbDnbDnbDNaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacbDnaacaacaacaacaacaacaacbDnaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbDnbDnaacaacbDnaacaacaacaacbDnaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index 09b5c8ea93..ed4b9fb9da 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -1,123275 +1,6262 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/unsimulated/wall/planetary/borealis2, -/area/borealis2/outdoors) -"aab" = ( -/turf/simulated/wall, -/area/borealis2/outdoors/grounds) -"aac" = ( -/obj/structure/grille, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aad" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"aae" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"aaf" = ( -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior) -"aag" = ( -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aah" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aai" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aaj" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aak" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/shuttle/escape/station) -"aal" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aam" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aan" = ( -/turf/simulated/wall, -/area/storage/auxillary) -"aao" = ( -/turf/simulated/wall/titanium, -/area/borealis2/outdoors/grounds) -"aap" = ( -/obj/structure/fence/corner{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"aaq" = ( -/obj/structure/fence/door, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"aar" = ( -/turf/unsimulated/wall/planetary/borealis2, -/area/borealis2/outdoors/exterior) -"aas" = ( -/obj/structure/fence/door, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior) -"aat" = ( -/obj/structure/fence/corner, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior) -"aau" = ( -/obj/structure/lattice, -/obj/structure/largecrate/birds, -/turf/simulated/open, -/area/storage/auxillary) -"aav" = ( -/obj/structure/largecrate/animal/cow, -/turf/simulated/floor, -/area/storage/auxillary) -"aaw" = ( -/turf/simulated/floor, -/area/storage/auxillary) -"aax" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aay" = ( -/obj/structure/largecrate, -/turf/simulated/floor, -/area/storage/auxillary) -"aaz" = ( -/obj/cryogaia_away_spawner/wilds, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"aaA" = ( -/obj/structure/flora/tree/winter, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"aaB" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/shuttle/specops/station) -"aaC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"aaD" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"aaE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds) -"aaF" = ( -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds) -"aaG" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external, -/obj/structure/fans/tiny{ - name = "Thermal Regulator Vent" - }, -/turf/snow/drift{ - dir = 4 - }, -/area/storage/auxillary) -"aaH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"aaI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"aaJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"aaK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"aaL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds) -"aaM" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall, -/area/borealis2/outdoors/grounds) -"aaN" = ( -/obj/machinery/trailblazer/red, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aaO" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aaP" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/skipjack_station/northeast_solars) -"aaQ" = ( -/obj/structure/flora/tree/winter1, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"aaR" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "specops_dock_outer"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "specops_dock_airlock"; - name = "exterior access button"; - pixel_x = -5; - pixel_y = -26; - req_one_access = list(13) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/shield_diffuser, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/tiled/dark, -/area/borealis2/outdoors/grounds) -"aaS" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "specops_dock_pump" - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds) -"aaT" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "specops_dock_airlock"; - pixel_x = 0; - pixel_y = 30; - req_one_access = list(13); - tag_airpump = "specops_dock_pump"; - tag_chamber_sensor = "specops_dock_sensor"; - tag_exterior_door = "specops_dock_outer"; - tag_interior_door = "specops_dock_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "specops_dock_sensor"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds) -"aaU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "specops_dock_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13) - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/tiled/dark, -/area/borealis2/outdoors/grounds) -"aaV" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "specops_dock_airlock"; - name = "interior access button"; - pixel_x = -28; - pixel_y = 26; - req_one_access = list(13) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds) -"aaW" = ( -/obj/machinery/door/airlock/centcom{ - locked = 0; - name = "Restricted Area"; - opacity = 1; - req_access = list(103) - }, -/obj/machinery/shield_diffuser, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/borealis2/outdoors/grounds) -"aaX" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aaY" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"aaZ" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"aba" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"abb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"abc" = ( -/obj/structure/sign/warning/secure_area, -/turf/simulated/wall, -/area/borealis2/outdoors/grounds) -"abd" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"abe" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"abf" = ( -/obj/structure/flora/bush, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"abg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"abh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds) -"abi" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"abj" = ( -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"abk" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"abl" = ( -/mob/living/simple_mob/animal/passive/gaslamp/snow, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"abm" = ( -/turf/simulated/wall, -/area/hallway/secondary/exit) -"abn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"abo" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "Escape_exit_north_exterior"; - locked = 1 - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "Escape_exit_north_control"; - pixel_x = 25; - pixel_y = 7 - }, -/turf/simulated/floor/plating/snow/plating, -/area/hallway/secondary/exit) -"abp" = ( -/obj/cryogaia_away_spawner/cryogaia, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"abq" = ( -/turf/unsimulated/wall/planetary/borealis2, -/area/borealis2/outdoors/grounds) -"abr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"abs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"abt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"abu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"abv" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"abw" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"abx" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Escape_exit_north_control"; - name = "Escape North Controller"; - pixel_x = 25; - pixel_y = 7; - tag_exterior_door = "Escape_exit_north_exterior"; - tag_interior_door = "Escape_exit_north_interior" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 5 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"aby" = ( -/turf/simulated/wall, -/area/security/checkpoint) -"abz" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"abA" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_north_starboard_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13) - }, -/obj/machinery/mech_sensor{ - dir = 8; - frequency = 1380; - id_tag = "escape_dock_north_mech"; - pixel_y = 19 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit) -"abB" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "escape_dock_north_starboard_pump" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/secondary/exit) -"abC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "escape_dock_snorth_airlock"; - master_tag = "escape_dock"; - pixel_y = 30; - req_one_access = list(13); - tag_airlock_mech_sensor = "escape_dock_north_starboard_mech"; - tag_airpump = "escape_dock_north_starboard_pump"; - tag_chamber_sensor = "escape_dock_north_starboard_sensor"; - tag_exterior_door = "escape_dock_north_starboard_outer"; - tag_interior_door = "escape_dock_north_starboard_inner"; - tag_shuttle_mech_sensor = "shuttle_dock_north_starboard_mech" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/secondary/exit) -"abD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_north_starboard_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13) - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit) -"abE" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"abF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"abG" = ( -/obj/structure/disposalpipe/trunk, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"abH" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"abI" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"abJ" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/thermoregulator/cryogaia{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"abK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"abL" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"abM" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"abN" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"abO" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"abP" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/skipjack_station/northwest_solars) -"abQ" = ( -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/syndicate_station/north) -"abR" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_north_starboard_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13) - }, -/obj/machinery/mech_sensor{ - dir = 8; - frequency = 1380; - id_tag = "escape_dock_north_mech"; - pixel_y = -19 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "escape_dock_north_starboard_airlock"; - name = "exterior access button"; - pixel_x = -4; - pixel_y = -26; - req_one_access = list(13) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit) -"abS" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "escape_dock_north_starboard_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "escape_dock_north_starboard_sensor"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/secondary/exit) -"abT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/secondary/exit) -"abU" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_north_starboard_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13) - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit) -"abV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"abW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"abX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"abY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"abZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"aca" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - id_tag = "Escape_exit_north_interior"; - locked = 1 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "Escape_exit_north_control"; - pixel_x = 25; - pixel_y = 7 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acb" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"acc" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"acd" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"ace" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"acf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"acg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"ach" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"aci" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"acj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ack" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acl" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acn" = ( -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aco" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Spaceport Security Airlock"; - req_access = list(63) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"acp" = ( -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"acq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"acr" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"acs" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"act" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"acu" = ( -/turf/simulated/wall, -/area/chapel/monastery) -"acv" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"acw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"acx" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acB" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"acG" = ( -/obj/structure/bed/chair, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"acH" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"acI" = ( -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"acJ" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "32-2" - }, -/turf/simulated/open, -/area/chapel/monastery) -"acK" = ( -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"acL" = ( -/turf/simulated/floor/wood, -/area/chapel/monastery) -"acM" = ( -/obj/structure/table/glass, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"acN" = ( -/obj/structure/table/glass, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"acO" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"acP" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"acS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"acV" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"acW" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"acX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"acY" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "residential_station_north_pump" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - id_tag = "residential_shuttle_station"; - pixel_y = 30; - tag_airlock_mech_sensor = "residential_station_north_mech"; - tag_airpump = "residential_station_north_pump"; - tag_chamber_sensor = "residential_station_north_sensor"; - tag_exterior_door = "residential_station_north_outer"; - tag_interior_door = "residential_station_north_inner" - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/machinery/airlock_sensor{ - id_tag = "residential_station_north_sensor"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/checkpoint) -"acZ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "residential_station_north_outer"; - locked = 1; - name = "Residential Airlock" - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"ada" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adb" = ( -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"adc" = ( -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"add" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 8; - listening = 1; - name = "Common Channel"; - pixel_x = -21; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"ade" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"adf" = ( -/obj/machinery/camera/autoname, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"adg" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"adh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"adi" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"adj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"adk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"adl" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Spaceport Security Airlock"; - req_access = list(63) - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"adm" = ( -/obj/structure/transit_tube{ - icon_state = "D-SE" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"adn" = ( -/obj/structure/transit_tube{ - icon_state = "E-SW" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"ado" = ( -/obj/structure/transit_tube{ - icon_state = "E-W-Pass" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"adp" = ( -/obj/structure/transit_tube, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"adq" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/transit_tube, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"adr" = ( -/obj/structure/transit_tube, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"ads" = ( -/obj/structure/transit_tube/station, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adt" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adv" = ( -/obj/structure/coatrack, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adw" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"adx" = ( -/obj/machinery/bookbinder, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"ady" = ( -/obj/machinery/door/airlock{ - name = "Room 1" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/chapel/monastery) -"adz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"adA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 - }, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"adB" = ( -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit_link) -"adC" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"adD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"adE" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "residential_transfer"; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"adF" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "residential_transfer"; - layer = 3.1; - name = "Residential shutters" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"adG" = ( -/turf/simulated/wall, -/area/hallway/secondary/exit_link) -"adH" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/hallway/secondary/exit_link) -"adI" = ( -/obj/structure/transit_tube{ - icon_state = "NE-SW" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"adJ" = ( -/obj/structure/transit_tube{ - icon_state = "D-NW" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"adK" = ( -/obj/machinery/camera/network/civilian{ - c_tag = "Monastary Entry Port"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adP" = ( -/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/dark, -/area/chapel/monastery) -"adQ" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adR" = ( -/turf/simulated/open, -/area/chapel/monastery) -"adS" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adT" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adU" = ( -/obj/machinery/door/airlock/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"adW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"adX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"adY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"adZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aea" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"aeb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"aec" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aed" = ( -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aee" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_south_starboard_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "escape_dock_south_starboard_airlock"; - name = "exterior access button"; - pixel_x = -4; - pixel_y = 26; - req_one_access = list(13) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit) -"aef" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "escape_dock_south_starboard_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "escape_dock_south_starboard_sensor"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/secondary/exit) -"aeg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/secondary/exit) -"aeh" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_south_starboard_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13) - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit) -"aei" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aej" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aek" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ael" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aem" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aen" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aeo" = ( -/obj/machinery/door/airlock/glass, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aep" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"aeq" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"aer" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"aes" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"aet" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"aeu" = ( -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - id_tag = "Monastary_Exit_Interior" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "Monastary_Exit"; - pixel_x = 26; - pixel_y = -6 - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery) -"aev" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"aew" = ( -/obj/structure/railing{ - dir = 1 - }, -/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/dark, -/area/chapel/monastery) -"aex" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "Monastary Hall Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"aey" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"aez" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"aeA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aeB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aeC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "Monastary Central Hall Fore"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aeD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aeE" = ( -/obj/machinery/door/airlock{ - name = "Room 2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/chapel/monastery) -"aeF" = ( -/obj/machinery/light/small, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"aeG" = ( -/obj/structure/closet/cabinet, -/turf/simulated/floor/wood, -/area/borealis2/outdoors/grounds) -"aeH" = ( -/obj/structure/table/woodentable, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/wood, -/area/borealis2/outdoors/grounds) -"aeI" = ( -/obj/machinery/cooker/grill, -/turf/simulated/floor/wood, -/area/borealis2/outdoors/grounds) -"aeJ" = ( -/obj/structure/closet/crate/freezer/meat, -/turf/simulated/floor/wood, -/area/borealis2/outdoors/grounds) -"aeK" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_south_starboard_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit) -"aeL" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "escape_dock_south_starboard_pump" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/secondary/exit) -"aeM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "escape_dock_ssouth_airlock"; - master_tag = "escape_dock"; - pixel_y = -30; - req_one_access = list(13); - tag_airlock_mech_sensor = "escape_dock_south_starboard_mech"; - tag_airpump = "escape_dock_south_starboard_pump"; - tag_chamber_sensor = "escape_dock_south_starboard_sensor"; - tag_exterior_door = "escape_dock_south_starboard_outer"; - tag_interior_door = "escape_dock_south_starboard_inner"; - tag_shuttle_mech_sensor = "shuttle_dock_south_starboard_mech" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/hallway/secondary/exit) -"aeN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_south_starboard_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13) - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit) -"aeO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aeP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aeQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aeR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aeS" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aeT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aeU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aeV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aeW" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/hallway/secondary/exit) -"aeX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"aeY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"aeZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"afa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"afb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"afc" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"afd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit_link) -"afe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit_link) -"aff" = ( -/obj/structure/railing, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"afg" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"afh" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/chapel/monastery) -"afi" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Monastary_Exit"; - name = "Monastary Exit Controller"; - pixel_x = 26; - pixel_y = 0; - tag_exterior_door = "Monastary_Exit_Exterior"; - tag_interior_door = "Monastary_Exit_Interior" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/chapel/monastery) -"afj" = ( -/turf/simulated/wall, -/area/chapel/monastery/kitchen) -"afk" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery/kitchen) -"afl" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"afm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"afn" = ( -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"afo" = ( -/turf/simulated/floor/wood, -/area/borealis2/outdoors/grounds) -"afp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"afq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"afr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"afs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aft" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"afu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"afv" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"afw" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"afx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"afy" = ( -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"afz" = ( -/obj/machinery/door/airlock/glass, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"afA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/structure/noticeboard/airlock{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"afB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"afC" = ( -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"afD" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"afE" = ( -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"afF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"afG" = ( -/obj/structure/transit_tube/station, -/obj/structure/transit_tube_pod{ - icon_state = "pod"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit_link) -"afH" = ( -/obj/structure/transit_tube, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit_link) -"afI" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/transit_tube, -/turf/simulated/floor/tiled/steel, -/area/hallway/secondary/exit_link) -"afJ" = ( -/obj/structure/transit_tube{ - dir = 7 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"afK" = ( -/obj/structure/transit_tube{ - icon_state = "W-NE" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"afL" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/chapel/monastery) -"afM" = ( -/obj/machinery/power/thermoregulator/cryogaia{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/chapel/monastery) -"afN" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"afO" = ( -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"afP" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"afQ" = ( -/obj/structure/bed/chair/wood/wings, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"afR" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"afS" = ( -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"afT" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"afU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/bench/wooden, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"afV" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"afW" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"afX" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/item/seeds/random, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"afY" = ( -/obj/structure/bed/pod, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"afZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"aga" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/beach/sand/desert, -/area/borealis2/outdoors/grounds) -"agb" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/beach/sand/desert, -/area/borealis2/outdoors/grounds) -"agc" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/beach/sand/desert, -/area/borealis2/outdoors/grounds) -"agd" = ( -/obj/structure/flora/pottedplant/large, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"age" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agf" = ( -/obj/machinery/light, -/obj/machinery/embedded_controller/radio/docking_port_multi{ - child_names_txt = "Airlock One;Airlock Two;Airlock Three;Airlock Four"; - child_tags_txt = "escape_dock_snorth_airlock;escape_dock_ssouth_airlock"; - frequency = 1380; - id_tag = "escape_dock"; - pixel_x = 0; - pixel_y = -25; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass{ - name = "Emergency Cold Apparel" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agj" = ( -/obj/machinery/door/airlock/glass{ - name = "Emergency Cold Apparel" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agk" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/docking_lounge) -"agl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"agm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"agn" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/shuttle/arrival/station) -"ago" = ( -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = "1379"; - id_tag = "Monastary_Exit_Exterior" - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "Monastary_Exit"; - pixel_x = 26; - pixel_y = -6 - }, -/turf/simulated/floor/plating/snow/plating, -/area/chapel/monastery) -"agp" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"agq" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"agr" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ags" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"agt" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"agu" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 8 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"agv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"agw" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"agx" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"agy" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/item/seeds/random, -/obj/item/seeds/lavenderseed, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"agz" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/item/seeds/lavenderseed, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"agA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"agB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"agC" = ( -/obj/structure/curtain/open/bed, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"agD" = ( -/obj/structure/curtain/bed, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"agE" = ( -/obj/structure/curtain/bed, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"agF" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/beach/sand/desert, -/area/borealis2/outdoors/grounds) -"agG" = ( -/obj/structure/bonfire/permanent, -/turf/simulated/floor/beach/sand/desert, -/area/borealis2/outdoors/grounds) -"agH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/beach/sand/desert, -/area/borealis2/outdoors/grounds) -"agI" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - id_tag = "Escape_exit_south_interior"; - locked = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "Escape_exit_south_control"; - pixel_x = 26; - pixel_y = -6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agL" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/obj/item/clothing/shoes/boots/winter, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"agN" = ( -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright{ - name = "Shower" - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/secondary/entry/docking_lounge) -"agO" = ( -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/secondary/entry/docking_lounge) -"agP" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/white, -/area/hallway/secondary/entry/docking_lounge) -"agQ" = ( -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"agR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"agS" = ( -/obj/structure/railing{ - dir = 2; - flags = null - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"agT" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery/kitchen) -"agU" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"agV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"agW" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"agX" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"agY" = ( -/obj/effect/floor_decal/corner/green/full, -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 1 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"agZ" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 1 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"aha" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ahb" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"ahc" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"ahd" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"ahe" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"ahf" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"ahg" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/item/seeds/lustflower, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"ahh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/civilian{ - c_tag = "Monastary Central Hall Starboard"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"ahi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"ahj" = ( -/turf/simulated/wall/wood, -/area/borealis2/outdoors/grounds) -"ahk" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/beach/sand/desert, -/area/borealis2/outdoors/grounds) -"ahl" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/beach/sand/desert, -/area/borealis2/outdoors/grounds) -"ahm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/beach/sand/desert, -/area/borealis2/outdoors/grounds) -"ahn" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"aho" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"ahp" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Escape_exit_south_control"; - name = "Escape South Controller"; - pixel_x = 25; - pixel_y = -5; - tag_exterior_door = "Escape_exit_south_exterior"; - tag_interior_door = "Escape_exit_south_interior" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 5 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"ahq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ahr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ahs" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/obj/item/clothing/shoes/boots/winter, -/obj/item/weapon/ice_pick, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"aht" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/secondary/entry/docking_lounge) -"ahu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/secondary/entry/docking_lounge) -"ahv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/secondary/entry/docking_lounge) -"ahw" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/camera/network/civilian{ - c_tag = "Monastary Livery"; - dir = 4 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ahx" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ahy" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ahz" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ahA" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ahB" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ahC" = ( -/obj/machinery/door/airlock/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery/kitchen) -"ahD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"ahE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"ahF" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"ahG" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"ahH" = ( -/obj/structure/sink/puddle, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"ahI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"ahJ" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"ahK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"ahL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"ahM" = ( -/turf/simulated/floor/plating, -/area/construction/Storage) -"ahN" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/construction/Storage) -"ahO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ahP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ahQ" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"ahR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"ahS" = ( -/obj/machinery/power/thermoregulator/cryogaia{ - dir = 8; - pixel_x = 30 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/exit) -"ahT" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ahU" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/hallway/secondary/entry/docking_lounge) -"ahV" = ( -/obj/structure/sign/warning/evac, -/turf/simulated/wall, -/area/hallway/secondary/entry/docking_lounge) -"ahW" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ahX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ahY" = ( -/obj/machinery/seed_storage/garden, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ahZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"aia" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"aib" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"aic" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/obj/structure/bed/chair/wood/wings, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"aid" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"aie" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/civilian{ - c_tag = "Monastary Central Hall Port"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aif" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/item/seeds/wheatseed, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"aig" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/item/seeds/wheatseed, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"aih" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"aii" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aij" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"aik" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/fans/tiny{ - name = "Thermal Regulator Vent" - }, -/obj/machinery/door/airlock/glass_external/freezable, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"ail" = ( -/obj/structure/sign/warning/hot_exhaust, -/turf/simulated/wall, -/area/borealis2/outdoors/grounds) -"aim" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"ain" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"aio" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"aip" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "Escape_exit_south_exterior"; - locked = 1 - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "Escape_exit_south_control"; - pixel_x = 25; - pixel_y = -7 - }, -/turf/simulated/floor/plating/snow/plating, -/area/hallway/secondary/exit) -"aiq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/structure/noticeboard/airlock{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"air" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ais" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ait" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/cups, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aiu" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aiv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aiw" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aix" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aiy" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aiz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"aiA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"aiB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"aiC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"aiD" = ( -/obj/machinery/vending/hydronutrients, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"aiE" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"aiF" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"aiG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aiH" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/item/seeds/harebell, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"aiI" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"aiJ" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"aiK" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"aiL" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"aiM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aiN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"aiO" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aiP" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aiQ" = ( -/obj/structure/sign/warning/hot_exhaust{ - pixel_y = 32 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aiR" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aiS" = ( -/obj/effect/floor_decal/snow/floor/surround{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aiT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"aiU" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/entry/docking_lounge) -"aiV" = ( -/obj/machinery/power/thermoregulator/cryogaia{ - pixel_y = 30 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/entry/docking_lounge) -"aiW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"aiX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aiY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aiZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aja" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajc" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajd" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aje" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "arrivals_dock_north_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13) - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/entry/docking_lounge) -"ajf" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "arrivals_dock_north_airlock"; - master_tag = "arrivals_dock"; - pixel_y = 30; - req_one_access = list(13); - tag_airlock_mech_sensor = "arrivals_dock_north_mech"; - tag_airpump = "arrivals_dock_north_pump"; - tag_chamber_sensor = "arrivals_dock_north_sensor"; - tag_exterior_door = "arrivals_dock_north_outer"; - tag_interior_door = "arrivals_dock_north_inner"; - tag_shuttle_mech_sensor = "shuttle_dock_north_mech" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/entry/docking_lounge) -"ajg" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "arrivals_dock_north_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "arrivals_dock_north_sensor"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/entry/docking_lounge) -"ajh" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "arrivals_dock_north_outer"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "arrivals_dock_north_airlock"; - name = "exterior access button"; - pixel_x = 4; - pixel_y = -26; - req_one_access = list(13) - }, -/obj/machinery/mech_sensor{ - dir = 8; - frequency = 1380; - id_tag = "arrival_dock_north_mech"; - pixel_y = -19 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/entry/docking_lounge) -"aji" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/machinery/seed_extractor, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ajj" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/yellow, -/area/chapel/monastery/kitchen) -"ajk" = ( -/obj/machinery/light, -/obj/structure/table/bench/wooden, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"ajl" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/material/minihoe, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/device/analyzer/plant_analyzer, -/turf/simulated/floor/grass2, -/area/chapel/monastery) -"ajm" = ( -/obj/structure/curtain/bed, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery) -"ajn" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"ajo" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges3{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"ajp" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"ajq" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "Arrivals_exit_exterior"; - locked = 1 - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "Arrivals_exit"; - pixel_x = -7; - pixel_y = -25 - }, -/turf/simulated/floor/plating/snow/plating, -/area/hallway/secondary/entry/docking_lounge) -"ajr" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/entry/docking_lounge) -"ajs" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/entry/docking_lounge) -"ajt" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - id_tag = "Arrivals_exit_interior"; - locked = 1 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "Arrivals_exit"; - pixel_x = -7; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aju" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajv" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajx" = ( -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"ajz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"ajA" = ( -/turf/simulated/wall, -/area/chapel/monastery/brew) -"ajB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/surround, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"ajC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"ajD" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/entry/docking_lounge) -"ajE" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Arrivals_exit"; - pixel_y = -25; - tag_exterior_door = "Arrivals_exit_exterior"; - tag_interior_door = "Arrivals_exit_interior" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/entry/docking_lounge) -"ajF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/table/rack/shelf, -/obj/item/weapon/shovel, -/obj/item/weapon/ice_pick, -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajG" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajH" = ( -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajI" = ( -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajJ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajK" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajL" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ajM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"ajN" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/hallway/secondary/entry/docking_lounge) -"ajO" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery/recreation) -"ajP" = ( -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"ajQ" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"ajR" = ( -/obj/machinery/washing_machine, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"ajS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"ajT" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"ajU" = ( -/turf/simulated/wall, -/area/chapel/monastery/recreation) -"ajV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"ajW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/civilian{ - c_tag = "Monastary Central Aft" - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"ajX" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"ajY" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"ajZ" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"aka" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"akb" = ( -/turf/simulated/wall, -/area/maintenance/medbay) -"akc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"akd" = ( -/turf/simulated/wall, -/area/storage/emergency_storage/emergency5) -"ake" = ( -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency5) -"akf" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Visitor's Dinning"; - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"akg" = ( -/obj/structure/table/reinforced, -/obj/item/device/paicard, -/obj/item/clothing/head/soft/grey, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"akh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aki" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"akj" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"akk" = ( -/obj/structure/closet/wardrobe/monastary, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"akl" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"akm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"akn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"ako" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"akp" = ( -/obj/machinery/door/airlock/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery/recreation) -"akq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"akr" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"aks" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"akt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"aku" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery) -"akv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/steel, -/area/chapel/monastery) -"akw" = ( -/obj/machinery/door/airlock/freezer, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/chapel/monastery/brew) -"akx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"aky" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"akz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"akA" = ( -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"akB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/medbay) -"akC" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/medbay) -"akD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/medbay) -"akE" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/medbay) -"akF" = ( -/turf/simulated/floor, -/area/maintenance/medbay) -"akG" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/storage/emergency_storage/emergency5) -"akH" = ( -/turf/simulated/floor, -/area/storage/emergency_storage/emergency5) -"akI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"akJ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"akK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"akL" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"akM" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/camera/network/northern_star{ - c_tag = "DOCK - Dock 2 Aft"; - dir = 8 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"akN" = ( -/obj/structure/showcase/yw/plaque, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds) -"akO" = ( -/obj/structure/undies_wardrobe, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"akP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"akQ" = ( -/obj/structure/table/glass, -/obj/item/device/universal_translator, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"akR" = ( -/obj/structure/table/glass, -/obj/item/device/instrument/violin, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"akS" = ( -/turf/simulated/wall, -/area/chapel/monastery/atmos) -"akT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Pump Station"; - req_one_access = list(11,24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"akU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Pump Station"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"akV" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 8; - listening = 1; - name = "Common Channel"; - pixel_x = -21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"akW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"akX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"akY" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"akZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"ala" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"alb" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/medbay) -"alc" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/medbay) -"ald" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/medbay) -"ale" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/simulated/floor, -/area/maintenance/medbay) -"alf" = ( -/obj/item/weapon/farmbot_arm_assembly, -/turf/simulated/floor, -/area/maintenance/medbay) -"alg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/medbay) -"alh" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency5) -"ali" = ( -/obj/machinery/light/small, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency5) -"alj" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor, -/area/storage/emergency_storage/emergency5) -"alk" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"all" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/hand_labeler, -/obj/item/device/communicator, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"alm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aln" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"alo" = ( -/obj/structure/closet/wardrobe/monastary, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"alp" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"alq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"alr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"als" = ( -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"alt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alv" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/random/tech_supply, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/sensor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 6 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"aly" = ( -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 4; - name = "Pump station in"; - target_pressure = 4500 - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alA" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alB" = ( -/obj/machinery/chem_master/condimaster, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"alC" = ( -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"alD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"alE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"alF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"alG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"alH" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"alI" = ( -/turf/simulated/wall, -/area/medical/medbay_primary_storage) -"alJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/medical, -/turf/simulated/floor, -/area/maintenance/medbay) -"alK" = ( -/turf/simulated/wall, -/area/crew_quarters/heads/cmo) -"alL" = ( -/turf/simulated/wall, -/area/medical/medbaymain) -"alM" = ( -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage/emergency5) -"alN" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"alO" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"alP" = ( -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"alQ" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"alR" = ( -/obj/structure/fitness/punchingbag, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"alS" = ( -/obj/structure/fitness/punchingbag, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"alT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"alU" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"alV" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 8; - target_pressure = 4500 - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"alZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"ama" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"amb" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"amc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"amd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"ame" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"amf" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"amg" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"amh" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"ami" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Storage" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"amj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/vending/medical, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"amk" = ( -/obj/structure/table/rack, -/obj/item/device/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/item/device/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"aml" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/syringes{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/syringes, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"amm" = ( -/obj/structure/table/reinforced, -/obj/item/device/paicard, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"amn" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"amo" = ( -/obj/structure/filingcabinet/chestdrawer{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"amp" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/device/pda/heads/cmo, -/obj/item/weapon/cmo_disk_holder, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "CMO's office" - }, -/obj/item/device/defib_kit/compact/combat/loaded, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"amq" = ( -/obj/item/weapon/paper_bin, -/obj/item/weapon/clipboard, -/obj/item/weapon/stamp/cmo, -/obj/item/weapon/folder/white_cmo, -/obj/item/weapon/pen/multi, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"amr" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio{ - frequency = 1487; - name = "Medbay Emergency Radio Link" - }, -/obj/item/device/megaphone, -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"ams" = ( -/turf/simulated/floor/grass, -/area/medical/medbaymain) -"amt" = ( -/obj/item/stolenpackage, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"amu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/medbay) -"amv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor, -/area/hallway/secondary/entry/docking_lounge) -"amw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"amx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"amy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"amz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"amA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"amB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"amC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"amD" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"amE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"amF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"amG" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/chapel/monastery/recreation) -"amH" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"amI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"amJ" = ( -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"amK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"amL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"amM" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable/green, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Monastery" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"amN" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Monastary Substation Bypass" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"amO" = ( -/obj/structure/reagent_dispensers/beerkeg/vat, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"amP" = ( -/obj/structure/reagent_dispensers/beerkeg/vat, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"amQ" = ( -/obj/structure/reagent_dispensers/beerkeg/vat, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"amR" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/reagent_dispensers/winevat, -/obj/machinery/camera/network/civilian{ - c_tag = "Monastary Freezer"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"amS" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/machinery/light/small, -/obj/structure/reagent_dispensers/winevat, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"amT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/reagent_dispensers/winevat, -/turf/simulated/floor/tiled/freezer, -/area/chapel/monastery/brew) -"amU" = ( -/turf/simulated/wall, -/area/maintenance/substation/medical) -"amV" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/weapon/soap/nanotrasen, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"amW" = ( -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"amX" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/toxin, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"amY" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/box/nifsofts_medical, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"amZ" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/masks{ - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"ana" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "cmooffice"; - name = "CMO Office Privacy Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"anb" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "CMO's Office" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"anc" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Control"; - pixel_x = -28; - pixel_y = 36; - req_access = list(5) - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "virologyquar"; - name = "Virology Emergency Lockdown Control"; - pixel_x = -28; - pixel_y = 28; - req_access = list(5) - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "cmooffice"; - name = "CMO Privacy Shutters"; - pixel_x = -38; - pixel_y = 28 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the CMO's office."; - id = "cmodoor"; - name = "CMO Office Door Control"; - pixel_x = -38; - pixel_y = 36 - }, -/obj/effect/landmark/start{ - name = "Chief Medical Officer" - }, -/obj/structure/bed/chair/office/dark, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"and" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"ane" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/belt/medical, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_x = 32; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"anf" = ( -/turf/simulated/wall, -/area/medical/resleeving) -"ang" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall, -/area/medical/resleeving) -"anh" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/medical/medbaymain) -"ani" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/maintenance/medbay) -"anj" = ( -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ank" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"anl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"anm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ann" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ano" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"anp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"anq" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"anr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"ans" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "arrivals_dock_south_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13) - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/entry/docking_lounge) -"ant" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "arrivals_dock_south_airlock"; - master_tag = "arrivals_dock"; - pixel_y = -30; - req_one_access = list(13); - tag_airlock_mech_sensor = "arrivals_dock_south_mech"; - tag_airpump = "arrivals_dock_south_pump"; - tag_chamber_sensor = "arrivals_dock_south_sensor"; - tag_exterior_door = "arrivals_dock_south_outer"; - tag_interior_door = "arrivals_dock_south_inner"; - tag_shuttle_mech_sensor = "shuttle_dock_south_mech" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/entry/docking_lounge) -"anu" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "residential_station_north_inner"; - locked = 1; - name = "Airlock" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"anv" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "arrivals_dock_south_outer"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "arrivals_dock_south_airlock"; - name = "exterior access button"; - pixel_x = 4; - pixel_y = 26; - req_one_access = list(13) - }, -/obj/machinery/mech_sensor{ - dir = 8; - frequency = 1380; - id_tag = "arrivals_dock_south_mech"; - pixel_y = 19 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/entry/docking_lounge) -"anw" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"anx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/red{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"any" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 10; - icon_state = "intact" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"anz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"anA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"anB" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"anC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"anD" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"anE" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Medical Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/medical) -"anF" = ( -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Substation - Medical" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/medical) -"anG" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Medbay Subgrid"; - name_tag = "Medbay Subgrid" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/medical) -"anH" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/firstaid/adv, -/obj/item/weapon/storage/firstaid/adv, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"anI" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/weapon/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"anJ" = ( -/obj/structure/table/standard, -/obj/item/weapon/packageWrap, -/obj/item/weapon/hand_labeler, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/recharger, -/obj/item/device/sleevemate, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"anK" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"anL" = ( -/obj/item/toy/figure/cmo, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"anM" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"anN" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"anO" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/mob/living/simple_mob/animal/passive/cat/runtime, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"anP" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"anQ" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "cmooffice"; - name = "CMO Office Privacy Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"anR" = ( -/obj/machinery/computer/transhuman/resleeving, -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/windowtint{ - id = "resleeve_tint"; - pixel_x = 6; - pixel_y = 25 - }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"anS" = ( -/obj/machinery/clonepod/transhuman, -/obj/item/device/radio/intercom/department/medbay{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"anT" = ( -/obj/machinery/transhuman/resleever, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Resleeving" - }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"anU" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"anV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "resleeve_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "resleeve_tint" - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "resleeve_tint" - }, -/obj/structure/window/reinforced/polarized{ - id = "resleeve_tint" - }, -/turf/simulated/floor/plating, -/area/medical/resleeving) -"anW" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"anX" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/medical/medbaymain) -"anY" = ( -/obj/structure/closet/l3closet/janitor, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/obj/item/clothing/shoes/boots/winter, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"anZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/medical/medbaymain) -"aoa" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/iv_drip, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aob" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/spray/cleaner{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/device/defib_kit/loaded, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aoc" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aod" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aoe" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aof" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aog" = ( -/obj/structure/table/standard, -/obj/item/weapon/coin/silver, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aoh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue, -/obj/machinery/computer/guestpass{ - dir = 1; - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aoi" = ( -/obj/machinery/embedded_controller/radio/docking_port_multi{ - child_names_txt = "Airlock One;Airlock Two"; - child_tags_txt = "arrivals_dock_north_airlock;arrivals_dock_south_airlock"; - frequency = 1380; - id_tag = "arrivals_dock"; - pixel_x = 0; - pixel_y = -25; - req_one_access = list(13) - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aoj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aok" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aol" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/simulated/wall, -/area/hallway/secondary/entry/docking_lounge) -"aom" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"aon" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"aoo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/random/tech_supply, -/obj/random/maintenance/engineering, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"aop" = ( -/obj/machinery/atmospherics/tvalve/digital/mirrored/bypass{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Pump Station"; - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"aoq" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/structure/cable/heavyduty{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"aor" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red, -/turf/simulated/floor/tiled, -/area/chapel/monastery/atmos) -"aos" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door{ - id = "bridgearmoury"; - pixel_x = 30; - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aot" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aou" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aov" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aow" = ( -/obj/machinery/door/airlock/engineering{ - name = "Medbay Substation"; - req_one_access = list(11,24,5) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor, -/area/maintenance/substation/medical) -"aox" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"aoy" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/medical) -"aoz" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "32-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Medical substation"; - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/substation/medical) -"aoA" = ( -/obj/machinery/iv_drip, -/obj/item/weapon/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"aoB" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/fire{ - layer = 2.9; - pixel_x = 2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"aoC" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/firstaid/o2{ - layer = 2.8; - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/storage/firstaid/o2, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"aoD" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"aoE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"aoF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"aoG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"aoH" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"aoI" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/modular_computer/console/preset/command{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"aoJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"aoK" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"aoL" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"aoM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - id_tag = "ResleevingDoor"; - name = "Resleeving Lab"; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/resleeving) -"aoN" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aoO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aoP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aoQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aoR" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aoS" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aoT" = ( -/turf/simulated/wall, -/area/medical/reception) -"aoU" = ( -/obj/structure/sign/nosmoking_2, -/turf/simulated/wall, -/area/medical/reception) -"aoV" = ( -/obj/machinery/atm, -/turf/simulated/wall, -/area/hallway/secondary/entry/docking_lounge) -"aoW" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aoX" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/docking_lounge) -"aoY" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"aoZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/chapel/monastery/atmos) -"apa" = ( -/turf/simulated/wall, -/area/security/outpost) -"apb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"apc" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner/blue, -/area/borealis2/elevator/medbay) -"apd" = ( -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/borealis2/elevator/medbay) -"ape" = ( -/obj/machinery/door/airlock/engineering{ - name = "Medbay Substation"; - req_one_access = list(11,24,5) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/maintenance/substation/medical) -"apf" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/floor_decal/corner/paleblue/full, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"apg" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"aph" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"api" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"apj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"apk" = ( -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/storage/belt/medical, -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"apl" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/flashlight/pen, -/obj/item/device/flashlight/pen, -/obj/item/device/flashlight/pen, -/obj/item/device/flashlight/pen, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"apm" = ( -/obj/effect/floor_decal/corner/blue/full, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/structure/flora/pottedplant/crystal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"apn" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"apo" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"app" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"apq" = ( -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"apr" = ( -/obj/machinery/photocopier, -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"aps" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/effect/floor_decal/corner/lime/full, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"apt" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"apu" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/backup_kit, -/obj/item/weapon/storage/box/backup_kit, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/sleevemate, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"apv" = ( -/obj/structure/closet/wardrobe/genetics_white, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"apw" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/vending/medical, -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"apx" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"apy" = ( -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"apz" = ( -/obj/machinery/sleeper{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/full, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"apA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"apB" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/smartfridge/chemistry/chemvator, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"apC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"apD" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/holoplant, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"apE" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"apF" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"apG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/computer/transhuman/designer, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"apH" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "medbay reception" - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"apI" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"apJ" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"apK" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/box/cups, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"apL" = ( -/obj/structure/sign/redcross{ - desc = "The Star of Life, a symbol of Medical Aid."; - icon_state = "lifestar"; - name = "Medbay" - }, -/turf/simulated/wall, -/area/medical/reception) -"apM" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"apN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"apO" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"apP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"apQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"apR" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"apS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"apT" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"apU" = ( -/obj/machinery/vending/security, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"apV" = ( -/obj/structure/closet/secure_closet/security, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"apW" = ( -/turf/simulated/open, -/area/borealis2/elevator/medbay) -"apX" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"apY" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/medical/medbay_primary_storage) -"apZ" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Staff Room"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"aqa" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "cmooffice"; - name = "CMO Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"aqb" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "cmooffice"; - name = "CMO Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"aqc" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - id_tag = "cmodoor"; - name = "CMO's Office"; - req_access = list(40) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"aqd" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - id_tag = "cmodoor"; - name = "CMO's Office"; - req_access = list(40) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"aqe" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "cmooffice"; - name = "CMO Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"aqf" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "cmooffice"; - name = "CMO Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"aqg" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - id_tag = "ResleevingDoor"; - name = "Resleeving Lab"; - req_access = list(5) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/resleeving) -"aqh" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "psych"; - name = "Mental Health Privacy Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized{ - id = "resleeve_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "resleeve_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "resleeve_tint" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/medical/resleeving) -"aqi" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "psych"; - name = "Mental Health Privacy Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "resleeve_tint" - }, -/obj/structure/window/reinforced/polarized{ - id = "resleeve_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "resleeve_tint" - }, -/turf/simulated/floor/plating, -/area/medical/resleeving) -"aqj" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall, -/area/medical/resleeving) -"aqk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/bodyscanner, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aql" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aqm" = ( -/obj/machinery/sleep_console{ - dir = 1; - pixel_y = 10 - }, -/obj/effect/floor_decal/corner/lime/full, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aqn" = ( -/obj/machinery/atmospherics/unary/cryo_cell{ - dir = 2; - layer = 3.3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/medical/medbaymain) -"aqo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - autoclose = 1; - dir = 2; - id_tag = "medbayfoyer"; - name = "Medical Bay"; - req_access = list(5); - req_one_access = list(5) - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aqp" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"aqq" = ( -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"aqr" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"aqs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"aqt" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"aqu" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"aqv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aqw" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aqx" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aqy" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aqz" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aqA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"aqB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/window/brigdoor/southright{ - name = "Combat Armor" - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"aqC" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"aqD" = ( -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aqE" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aqF" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aqG" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aqH" = ( -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/grounds) -"aqI" = ( -/turf/simulated/floor/tiled/white, -/area/borealis2/elevator/medbay) -"aqJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqL" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Primary Port Hall" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqP" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqQ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqR" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqS" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - canhear_range = 5; - dir = 1; - frequency = 1487; - icon_state = "intercom"; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = 21 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqT" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqU" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqX" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqY" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aqZ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"ara" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"ard" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"are" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Medbay"; - sortType = "Medbay" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"arf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"arg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"arh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"ari" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"arj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"ark" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"arl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"arm" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"arn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"aro" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"arp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"arq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"arr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"ars" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/bridge, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"art" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aru" = ( -/turf/simulated/wall, -/area/janitor) -"arv" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/power) -"arw" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"arx" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"ary" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"arz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"arA" = ( -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"arB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/outpost) -"arC" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/security{ - c_tag = "Security Post Cell"; - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"arD" = ( -/obj/structure/lattice, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"arE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"arF" = ( -/obj/effect/floor_decal/corner/paleblue/full, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arI" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arJ" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arO" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arP" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arQ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/light, -/obj/structure/sign/goldenplaque{ - desc = "Done No Harm."; - name = "Best Doctor 2552"; - pixel_y = -32 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "CMO Office"; - sortType = "CMO Office" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arR" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arT" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Primary Hall"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arU" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arV" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arW" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arX" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"arY" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"arZ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"asa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"asb" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"asc" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Virology Viral Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"asd" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"ase" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"asf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"asg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"ash" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - dir = 1; - pixel_y = -30 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"asi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"asj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"ask" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"asl" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"asm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"asn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"aso" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"asp" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/janitor) -"asq" = ( -/obj/structure/mopbucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"asr" = ( -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = 28 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/mousetraps, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"ass" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"ast" = ( -/turf/simulated/wall/r_wall, -/area/janitor) -"asu" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"asv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance/sec{ - name = "Security Maintenance"; - req_access = list(63); - req_one_access = list(1) - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"asw" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/nifsofts_engineering, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"asx" = ( -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/power) -"asy" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"asz" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"asA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"asB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"asC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"asD" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"asE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"asF" = ( -/obj/machinery/door/window/brigdoor/southleft{ - dir = 8; - id = "security post cell"; - name = "Security Post Cell"; - req_access = list(2) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"asG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"asH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"asI" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"asJ" = ( -/turf/simulated/wall, -/area/medical/patient_a) -"asK" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Patient Ward" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"asL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_medical{ - name = "Patient Ward" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/pink, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"asM" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/medical/patient_d) -"asN" = ( -/turf/simulated/wall, -/area/medical/patient_d) -"asO" = ( -/turf/simulated/wall, -/area/medical/ward) -"asP" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/medical/ward) -"asQ" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Patient Ward" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"asR" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall, -/area/medical/ward) -"asS" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"asT" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"asU" = ( -/obj/structure/noticeboard, -/turf/simulated/wall, -/area/medical/medbay_emt_bay) -"asV" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/medical/medbay_emt_bay) -"asW" = ( -/turf/simulated/wall, -/area/medical/medbay_emt_bay) -"asX" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"asY" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"asZ" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/spray/cleaner{ - pixel_x = -5 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/item/device/sleevemate, -/obj/item/weapon/storage/box/body_record_disk, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"ata" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/computer/crew, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atb" = ( -/obj/machinery/door/window/northleft{ - dir = 1; - icon_state = "left"; - name = "Medbay Reception"; - req_access = list(5) - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atc" = ( -/obj/machinery/computer/crew, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atd" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Medbay Reception"; - req_access = list(5) - }, -/obj/item/weapon/folder/white, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"ate" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/obj/item/device/radio/phone/medbay, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the brig foyer."; - id = "medbayfoyer"; - name = "Medbay Foyer Doors"; - pixel_x = 26; - pixel_y = -6; - req_access = list() - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Examination Room"; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atg" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/structure/window/reinforced/tinted, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"ath" = ( -/obj/structure/sign/examroom, -/turf/simulated/wall, -/area/medical/reception) -"ati" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Janitorial Desk"; - icon_state = "left"; - dir = 2 - }, -/obj/machinery/door/window/eastleft{ - name = "Janitorial Desk"; - icon_state = "left"; - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "janitor_blast"; - layer = 3.3; - name = "Janitorial Shutters" - }, -/turf/simulated/floor/tiled, -/area/janitor) -"atj" = ( -/turf/simulated/floor/tiled, -/area/janitor) -"atk" = ( -/obj/structure/janitorialcart, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"atl" = ( -/turf/simulated/wall/r_wall, -/area/security/nuke_storage) -"atm" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"atn" = ( -/obj/machinery/door/airlock/glass_security, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"ato" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"atp" = ( -/obj/structure/closet/secure_closet/brig{ - id = "security post cell"; - name = "Security Post Locker" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small/flicker, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"atq" = ( -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/obj/machinery/iv_drip, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_a) -"atr" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_a) -"ats" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/obj/machinery/button/windowtint{ - id = "pr1_window_tint"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_a) -"att" = ( -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "pr1_window_tint" - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 2; - id = "pr1_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "pr1_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "pr1_window_tint" - }, -/turf/simulated/floor, -/area/medical/patient_a) -"atu" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"atv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/pink{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"atw" = ( -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "pr4_window_tint" - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 2; - id = "pr4_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "pr4_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "pr4_window_tint" - }, -/turf/simulated/floor, -/area/medical/patient_d) -"atx" = ( -/obj/machinery/button/windowtint{ - id = "pr4_window_tint"; - pixel_y = 26 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_d) -"aty" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_d) -"atz" = ( -/obj/machinery/iv_drip, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/pink/full{ - dir = 1 - }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_d) -"atA" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"atB" = ( -/obj/structure/bed/padded, -/obj/structure/curtain/open/privacy, -/obj/item/weapon/bedsheet/medical, -/obj/effect/floor_decal/corner/pink{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"atC" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"atD" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"atE" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner/pink/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"atF" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/medical/ward) -"atG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"atH" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"atI" = ( -/turf/simulated/floor, -/area/medical/medbay_emt_bay) -"atJ" = ( -/obj/machinery/mech_recharger, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/medbay_emt_bay) -"atK" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall, -/area/medical/medbay_emt_bay) -"atL" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"atM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"atN" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the brig foyer."; - id = "medbayfoyer"; - name = "Medbay Foyer Doors"; - pixel_x = 0; - pixel_y = 6; - req_access = list() - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Paramedic" - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atR" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atS" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/computer/med_data/laptop, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atT" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/medical/reception) -"atU" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"atV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"atW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"atX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"atY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"atZ" = ( -/obj/machinery/light_switch{ - pixel_x = -34; - pixel_y = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "janitor_blast"; - name = "Privacy Shutters"; - pixel_x = -24; - pixel_y = 12; - pixel_z = 0 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aua" = ( -/obj/effect/landmark/start{ - name = "Janitor" - }, -/turf/simulated/floor/tiled, -/area/janitor) -"aub" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"auc" = ( -/obj/structure/safe, -/obj/item/clothing/under/color/yellow, -/obj/item/key, -/obj/item/toy/katana, -/obj/item/weapon/moneybag/vault, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"aud" = ( -/obj/structure/closet/secure_closet/freezer/money, -/obj/item/weapon/storage/secure/briefcase/money{ - desc = "An sleek tidy briefcase."; - name = "secure briefcase" - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"aue" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/suit/space/void/wizard, -/obj/item/clothing/head/helmet/space/void/wizard, -/obj/structure/table/rack, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"auf" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/nuclearbomb, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"aug" = ( -/obj/structure/filingcabinet/security{ - name = "Security Records" - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"auh" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/weapon/storage/box/handcuffs, -/obj/item/weapon/storage/box/donut, -/obj/machinery/camera/network/security{ - c_tag = "Security Post Control"; - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"aui" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"auj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_security, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"auk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"aul" = ( -/obj/machinery/door_timer{ - id = "security post cell"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"aum" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/surround{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aun" = ( -/obj/machinery/door/blast/regular{ - id = "mechbay"; - name = "Mech Bay" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"auo" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/borealis2/elevator/medbay) -"aup" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor, -/area/maintenance/medbay) -"auq" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/obj/structure/bed/chair/office/light, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology lab"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_a) -"aur" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_a) -"aus" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_a) -"aut" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Patient Room A" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_a) -"auu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"auv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"auw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Patient Room D" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_d) -"aux" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_d) -"auy" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_d) -"auz" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/bed/chair/office/light, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Patient Room D"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_d) -"auA" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall, -/area/medical/patient_d) -"auB" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"auC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"auD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"auE" = ( -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"auF" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"auG" = ( -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"auH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "First-Aid Station"; - req_one_access = list(5,10,63) - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"auI" = ( -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"auJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/medical/medbay_emt_bay) -"auK" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel, -/area/medical/medbay_emt_bay) -"auL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/fireaxecabinet{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/steel, -/area/medical/medbay_emt_bay) -"auM" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"auN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"auO" = ( -/obj/machinery/door/window/westright{ - name = "Medbay Reception"; - req_access = list(5) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"auP" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"auQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"auR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/filingcabinet/medical{ - desc = "A large cabinet with hard copy medical records."; - name = "Medical Records" - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"auS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/box/backup_kit, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"auT" = ( -/obj/item/weapon/backup_implanter{ - pixel_y = -12 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = -5 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 2 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 9 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"auU" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"auV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"auW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"auX" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access = list(26) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"auY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"auZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/janitor) -"ava" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"avb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"avc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"avd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"ave" = ( -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"avf" = ( -/obj/structure/filingcabinet/medical{ - desc = "A large cabinet with hard copy medical records."; - name = "Medical Records" - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"avg" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/bridge) -"avh" = ( -/obj/structure/railing, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/power) -"avi" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"avj" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"avk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"avl" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"avm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"avn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"avo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"avp" = ( -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - id_tag = "SecurityPost_Exit_Interior"; - locked = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "SecurityPost_Exit"; - pixel_x = 6; - pixel_y = -26; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"avq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/outpost) -"avr" = ( -/obj/machinery/power/thermoregulator/cryogaia{ - pixel_y = 30 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/outpost) -"avs" = ( -/obj/machinery/door/airlock/glass_external/freezable{ - locked = 1 - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "SecurityPost_Exit"; - pixel_x = 6; - pixel_y = -26; - req_one_access = list(1) - }, -/turf/simulated/floor/plating/snow/plating, -/area/security/outpost) -"avt" = ( -/obj/effect/floor_decal/snow/floor/edges3{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"avu" = ( -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"avv" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"avw" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"avx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"avy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"avz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"avA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/medbay) -"avB" = ( -/obj/effect/floor_decal/corner/pink/full, -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_a) -"avC" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/structure/table/glass, -/obj/item/weapon/paper_bin, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_a) -"avD" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/simulated/floor/tiled/white, -/area/medical/patient_a) -"avE" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"avF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/pink, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"avG" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_d) -"avH" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/structure/table/glass, -/obj/item/weapon/paper_bin, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/white, -/area/medical/patient_d) -"avI" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/obj/effect/floor_decal/corner/pink/full{ - dir = 4 - }, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_d) -"avJ" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/floor_decal/corner/pink{ - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"avK" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"avL" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"avM" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Patient Ward" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"avN" = ( -/obj/effect/floor_decal/corner/paleblue, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"avO" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/item/clothing/accessory/storage/black_vest, -/obj/random/medical, -/obj/random/medical, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"avP" = ( -/obj/structure/table/rack, -/obj/machinery/door/window/westright{ - name = "EVA Suit Storage"; - req_access = list(5) - }, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/clothing/shoes/boots/winter/medical, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay EMT office"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_bay) -"avQ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"avR" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"avS" = ( -/turf/simulated/wall, -/area/medical/exam_room) -"avT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Examination Room"; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"avU" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/medical/exam_room) -"avV" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"avW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"avX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"avY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"avZ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"awa" = ( -/obj/structure/closet/jcloset, -/obj/item/weapon/soap/nanotrasen, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/full, -/turf/simulated/floor/tiled, -/area/janitor) -"awb" = ( -/obj/structure/closet/jcloset, -/obj/item/weapon/soap/nanotrasen, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/obj/item/clothing/shoes/boots/winter, -/turf/simulated/floor/tiled, -/area/janitor) -"awc" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/janitor) -"awd" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/secure/large/reinforced{ - anchored = 1; - desc = "A hefty, reinforced metal crate with an electronic locking system. It's securely bolted to the floor and cannot be moved."; - name = "gun safe"; - req_access = list(1) - }, -/obj/item/weapon/gun/projectile/revolver/consul, -/obj/item/ammo_magazine/s44, -/obj/item/ammo_magazine/s44, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"awe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"awf" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/mob/living/simple_mob/animal/passive/mouse/brown/Tom, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"awg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"awh" = ( -/obj/machinery/camera/network/command{ - c_tag = "COM - Vault"; - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"awi" = ( -/obj/machinery/power/sensor{ - name = "Powernet Senor- Surface Civilian Subgrid"; - name_tag = "Surface Civilian Subgrid" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian) -"awj" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"awk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"awl" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"awm" = ( -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/power) -"awn" = ( -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/power) -"awo" = ( -/obj/structure/table/standard, -/obj/item/weapon/cell/device/weapon{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/cell/device/weapon{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/cell/device/weapon, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"awp" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/outpost) -"awq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/rack/shelf, -/obj/machinery/light, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security, -/obj/item/clothing/shoes/boots/winter/security, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"awr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security, -/obj/item/clothing/shoes/boots/winter/security, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"aws" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/security/outpost) -"awt" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "SecurityPost_Exit"; - name = "Security Post Exit Controller"; - pixel_x = 6; - pixel_y = -26; - tag_exterior_door = "SecurityPost_Exit_Exterior"; - tag_interior_door = "SecurityPost_Exit_Interior" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 6 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/security/outpost) -"awu" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/surround, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"awv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aww" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"awx" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"awy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"awz" = ( -/obj/structure/closet, -/obj/item/stack/material/steel{ - amount = 4 - }, -/obj/item/stack/rods{ - amount = 2 - }, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/medbay) -"awA" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Recovery Wing"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"awB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"awC" = ( -/obj/structure/noticeboard/medical, -/turf/simulated/wall, -/area/medical/patient_d) -"awD" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/floor_decal/corner/pink{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"awE" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"awF" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"awG" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/random/medical, -/obj/random/medical, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"awH" = ( -/obj/structure/window/reinforced, -/obj/structure/table/rack, -/obj/machinery/door/window/westleft{ - name = "EVA Suit Storage"; - req_access = list(5) - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/item/weapon/tank/oxygen, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_bay) -"awI" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"awJ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"awK" = ( -/obj/structure/window/reinforced/polarized{ - id = "exam" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "exam" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "exam" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "exam" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/medical/exam_room) -"awL" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/closet/secure_closet/medical_wall{ - name = "Pill Cabinet"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"awM" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"awN" = ( -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"awO" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"awP" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/device/healthanalyzer, -/obj/item/device/universal_translator, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"awQ" = ( -/obj/structure/table/glass, -/obj/random/medical, -/obj/random/medical, -/obj/item/device/glasses_kit, -/obj/effect/floor_decal/corner/pink{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"awR" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"awS" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"awT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"awU" = ( -/obj/item/weapon/coin/silver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/weapon/coin/silver{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/closet/crate/secure{ - name = "Silver Crate"; - req_access = list(19) - }, -/obj/item/weapon/coin/silver{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"awV" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"awW" = ( -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/gold, -/obj/structure/closet/crate/secure{ - name = "Gold Crate"; - req_access = list(19) - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"awX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"awY" = ( -/turf/simulated/wall/r_wall, -/area/bridge_hallway) -"awZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"axa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 8 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"axb" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"axc" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"axd" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"axe" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"axf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/security/outpost) -"axg" = ( -/obj/effect/floor_decal/snow/floor/edges3, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"axh" = ( -/obj/item/weapon/caution/cone, -/turf/simulated/floor, -/area/maintenance/medbay) -"axi" = ( -/turf/simulated/wall, -/area/medical/patient_b) -"axj" = ( -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/obj/machinery/iv_drip, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_b) -"axk" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_b) -"axl" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 36 - }, -/obj/machinery/button/windowtint{ - id = "pr2_window_tint"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_b) -"axm" = ( -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "pr1_window_tint" - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 2; - id = "pr2_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "pr2_window_tint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "pr2_window_tint" - }, -/turf/simulated/floor, -/area/medical/patient_b) -"axn" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"axo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/pink{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"axp" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"axq" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"axr" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"axs" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/pink/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"axt" = ( -/turf/simulated/wall, -/area/medical/patient_wing) -"axu" = ( -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/pink/full, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"axv" = ( -/obj/structure/bed/padded, -/obj/structure/curtain/open/privacy, -/obj/item/weapon/bedsheet/medical, -/obj/effect/floor_decal/corner/pink{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"axw" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"axx" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Recovery Ward"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"axy" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/pink{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"axz" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/machinery/computer/cryopod{ - pixel_x = 32 - }, -/obj/machinery/cryopod, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"axA" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"axB" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"axC" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"axD" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Paramedic" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"axE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"axF" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"axG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "First-Aid Station"; - req_one_access = list(5,10,63) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"axH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"axI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"axJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Examination Room"; - req_access = list(5) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"axK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"axL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"axM" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"axN" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_x = 25; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"axO" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"axP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"axQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"axR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"axS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Civilian Upper Substation"; - req_one_access = list(11) - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian) -"axT" = ( -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Surface Civilian" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian) -"axU" = ( -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian) -"axV" = ( -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian) -"axW" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/silver, -/obj/item/stack/material/silver, -/obj/item/stack/material/silver, -/obj/item/stack/material/gold, -/obj/item/stack/material/gold, -/obj/item/stack/material/gold, -/obj/item/weapon/storage/belt/champion, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"axX" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"axY" = ( -/obj/structure/closet/secure_closet/freezer/money, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/item/weapon/storage/secure/briefcase/money{ - desc = "An sleek tidy briefcase."; - name = "secure briefcase" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"axZ" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aya" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/bridge_hallway) -"ayb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"ayc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/space, -/area/maintenance/bridge) -"ayd" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aye" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/visible/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"ayf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"ayg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"ayh" = ( -/obj/effect/decal/cleanable/blood/oil{ - name = "oil" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"ayi" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/obj/structure/bed/chair/office/light, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Patient Room A"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_b) -"ayj" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_b) -"ayk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_b) -"ayl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Patient Room B" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_b) -"aym" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"ayn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"ayo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"ayp" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"ayq" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"ayr" = ( -/obj/machinery/vending/medical, -/obj/effect/floor_decal/corner/pink/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"ays" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "Surgery"; - name = "Pre-Op Prep Room"; - req_access = list(5) - }, -/obj/machinery/holosign/surgery, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"ayt" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "Surgery"; - name = "Surgical Wing"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/holosign/surgery, -/obj/effect/floor_decal/corner/pink{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"ayu" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "Surgery"; - name = "Surgical Wing"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/holosign/surgery, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"ayv" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"ayw" = ( -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"ayx" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/medical/equipped, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"ayy" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_emt_bay) -"ayz" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"ayA" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Lower Annex"; - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"ayB" = ( -/obj/structure/sign/examroom, -/turf/simulated/wall, -/area/medical/exam_room) -"ayC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/pink{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"ayD" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/weapon/clipboard, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"ayE" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"ayF" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/computer/med_data/laptop, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"ayG" = ( -/obj/structure/bed/padded, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 27; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"ayH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"ayI" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"ayJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"ayK" = ( -/turf/simulated/wall, -/area/maintenance/substation/civilian) -"ayL" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Surface Civilian Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian) -"ayM" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian) -"ayN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian) -"ayO" = ( -/obj/machinery/door/airlock/vault/bolted{ - req_access = list(53) - }, -/obj/machinery/door/blast/regular{ - dir = 8; - id = "Vault2"; - layer = 3.3; - name = "Vault Blast Door" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"ayP" = ( -/obj/machinery/door/airlock/vault/bolted{ - req_access = list(53) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/blast/regular{ - dir = 8; - id = "Vault2"; - layer = 3.3; - name = "Vault Blast Door" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"ayQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/bridge) -"ayR" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"ayS" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"ayT" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/wall/r_wall, -/area/bridge_hallway) -"ayU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"ayV" = ( -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"ayW" = ( -/obj/structure/cable/heavyduty, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"ayX" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"ayY" = ( -/obj/effect/floor_decal/corner/pink/full, -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_b) -"ayZ" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/structure/table/glass, -/obj/item/weapon/paper_bin, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/white, -/area/medical/patient_b) -"aza" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_b) -"azb" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "Surgery"; - name = "Surgical Wing"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/holosign/surgery, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"azc" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/medical/patient_wing) -"azd" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "Surgery"; - name = "Surgical Wing"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/holosign/surgery, -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"aze" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azf" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azh" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azi" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azj" = ( -/obj/machinery/vending/medical, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azk" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/masks, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azl" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azm" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azn" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"azo" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/vending/wallmed1{ - layer = 3.3; - name = "Emergency NanoMed"; - pixel_x = 28; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"azp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/pink/full, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"azq" = ( -/obj/structure/filingcabinet/medical{ - desc = "A large cabinet with hard copy medical records."; - name = "Medical Records" - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"azr" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"azs" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"azt" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/machinery/button/windowtint{ - id = "exam"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"azu" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Exam room"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"azv" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"azw" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner/pink/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"azx" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = 8 - }, -/turf/simulated/wall, -/area/medical/exam_room) -"azy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"azz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"azA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"azB" = ( -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 32 - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"azC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian) -"azD" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian) -"azE" = ( -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"azF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue, -/area/bridge_hallway) -"azG" = ( -/obj/machinery/button/remote/blast_door{ - id = "Vault2"; - pixel_x = 28; - pixel_y = 6; - req_access = list(19) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue, -/area/bridge_hallway) -"azH" = ( -/obj/machinery/door/airlock/maintenance/command{ - req_one_access = list(19) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/bridge_hallway) -"azI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"azJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"azK" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "32-1" - }, -/turf/simulated/open, -/area/bridge_hallway) -"azL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"azM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"azN" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azS" = ( -/obj/item/device/radio/intercom/department/medbay{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azT" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azU" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"azZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAb" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAc" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/reagent_containers/food/drinks/britcup, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAd" = ( -/obj/structure/closet/wardrobe/medic_white, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAe" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAf" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAg" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "Surgery"; - name = "Surgical Wing"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/holosign/surgery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAh" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aAi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aAj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aAk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aAl" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"aAm" = ( -/turf/simulated/open, -/area/hallway/primary/central_one) -"aAn" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"aAo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Civilian Upper Substation"; - req_one_access = list(11) - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian) -"aAp" = ( -/turf/simulated/wall, -/area/bridge_hallway) -"aAq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aAr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aAs" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aAt" = ( -/obj/machinery/door/airlock/command, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aAu" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) -"aAv" = ( -/obj/structure/fireplace{ - pixel_y = -15 - }, -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) -"aAw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aAx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aAy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aAz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Surgery Wing Maintenance Access"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/surgery_hallway) -"aAA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAB" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAC" = ( -/obj/effect/floor_decal/corner/pink, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAD" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/pink, -/obj/machinery/camera/network/medbay{ - c_tag = "Surgery Wing Port"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/pink{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/pink, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/pink{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/pink, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/pink{ - dir = 10 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Surgery Wing Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAQ" = ( -/obj/effect/floor_decal/corner/pink{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAS" = ( -/obj/effect/floor_decal/corner/pink, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAT" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "Surgery"; - name = "Surgical Wing"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/holosign/surgery, -/obj/effect/floor_decal/corner/pink{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) -"aAU" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aAV" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aAW" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aAX" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aAY" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aAZ" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - canhear_range = 5; - dir = 1; - frequency = 1487; - icon_state = "intercom"; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aBa" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aBb" = ( -/obj/machinery/vending/medical, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aBc" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/table/glass, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aBd" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/central_one) -"aBe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aBf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aBg" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"aBh" = ( -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"aBi" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"aBj" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aBk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aBl" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aBm" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = "sbridgedoor"; - name = "Command Department"; - req_access = list(19) - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBn" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBu" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge Hallway Fore Starboard" - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aBy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cap_office"; - layer = 3.1; - name = "Colony Directo's Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aBz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aBA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aBB" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aBC" = ( -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aBD" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aBE" = ( -/obj/machinery/camera/network/command{ - c_tag = "Colony Director's office North" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aBF" = ( -/obj/machinery/computer/arcade, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aBG" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aBH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aBI" = ( -/turf/simulated/wall, -/area/medical/surgery_storage) -"aBJ" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre Storage"; - req_access = list(45) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aBK" = ( -/turf/simulated/wall, -/area/medical/surgeryobs) -"aBL" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "surgery_observation"; - name = "Observation Room"; - req_access = newlist() - }, -/obj/machinery/holosign/surgery, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aBM" = ( -/turf/simulated/wall, -/area/medical/surgery2) -"aBN" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "surgeryobs"; - name = "Operating Theatre Privacy Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "surgeryobs" - }, -/turf/simulated/floor/plating, -/area/medical/surgery2) -"aBO" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre 2"; - req_access = list(45) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aBP" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/medical/surgery2) -"aBQ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/medical/surgery) -"aBR" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre 1"; - req_access = list(45) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aBS" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "surgeryobs2"; - name = "Operating Theatre Privacy Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "surgeryobs" - }, -/turf/simulated/floor/plating, -/area/medical/surgery) -"aBT" = ( -/turf/simulated/wall, -/area/medical/surgery) -"aBU" = ( -/turf/simulated/wall, -/area/medical/medbay4) -"aBV" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/paleblue/full, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aBW" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aBX" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aBY" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aBZ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aCa" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aCb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"aCc" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Secondary Entry"; - req_one_access = list(5) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/central_one) -"aCd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aCe" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aCf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aCg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction/wildcard/flipped{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aCh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aCi" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge North Entrance"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aCj" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = "sbridgedoor"; - name = "Command Department"; - req_access = list(19) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCk" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge Hallway Fore Port"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCw" = ( -/obj/machinery/door/airlock/command{ - id_tag = "captaindoor"; - name = "Colony Director's Office"; - req_access = list(20); - req_one_access = list(20) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aCx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aCy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aCz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aCA" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aCB" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donut, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aCC" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aCD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aCE" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/weapon/melee/chainofcommand, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aCF" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"aCG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aCH" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aCI" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aCJ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Surgery Storage" - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aCK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aCL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aCM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aCN" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "surgeryobs"; - name = "Operating Theatre Privacy Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "surgeryobs2" - }, -/turf/simulated/floor/plating, -/area/medical/surgeryobs) -"aCO" = ( -/obj/machinery/computer/med_data, -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aCP" = ( -/obj/machinery/camera/network/medbay{ - dir = 2 - }, -/obj/structure/closet/secure_closet/medical2, -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aCQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aCR" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aCS" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/medical/surgery2) -"aCT" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aCU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aCV" = ( -/obj/machinery/camera/network/medbay{ - dir = 2 - }, -/obj/structure/closet/secure_closet/medical2, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aCW" = ( -/obj/machinery/computer/med_data, -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aCX" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aCY" = ( -/turf/simulated/wall, -/area/medical/psych) -"aCZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - id_tag = "mentaldoor"; - name = "Mental Health"; - req_access = list(64) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/holofloor/tiled/dark, -/area/medical/psych) -"aDa" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "mental_health" - }, -/obj/structure/window/reinforced/polarized{ - id = "mental_health" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "mental_health" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "mental_health" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/medical/psych) -"aDb" = ( -/turf/simulated/wall, -/area/hallway/primary/central_one) -"aDc" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aDd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aDe" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aDf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aDg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aDh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aDi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aDj" = ( -/obj/machinery/computer/id_restorer, -/turf/simulated/wall, -/area/crew_quarters/heads/hop) -"aDk" = ( -/turf/simulated/wall, -/area/crew_quarters/heads/hop) -"aDl" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hop) -"aDm" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aDn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aDo" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aDp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-10" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aDq" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDr" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDs" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aDt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aDu" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aDv" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aDw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aDx" = ( -/obj/structure/ladder/updown, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aDy" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/engineeringatmos{ - name = "Pipe-Power Floor Transfer" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/medbay) -"aDz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aDA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aDB" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aDC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Operating Theatre Maintenance Access"; - req_access = list(45) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aDD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aDE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aDF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aDG" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aDH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aDI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aDJ" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aDK" = ( -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aDL" = ( -/obj/structure/table/standard, -/obj/machinery/button/windowtint{ - id = "surgeryobs2"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/item/stack/nanopaste, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aDM" = ( -/obj/structure/table/standard, -/obj/machinery/button/windowtint{ - id = "surgeryobs"; - pixel_x = -26; - pixel_y = 0 - }, -/obj/item/stack/nanopaste, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aDN" = ( -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aDO" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aDP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aDQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aDR" = ( -/turf/simulated/wall, -/area/maintenance/medbay_aft) -"aDS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Surgery Wing Maintenance Access"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_aft) -"aDT" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/medical/psych) -"aDU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/medical/psych) -"aDV" = ( -/turf/simulated/floor/wood, -/area/medical/psych) -"aDW" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"aDX" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder, -/turf/simulated/floor/wood, -/area/medical/psych) -"aDY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/medical/psych) -"aDZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aEa" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aEb" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aEc" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aEd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aEe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aEf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aEg" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = -25; - pixel_y = 5 - }, -/obj/machinery/button/remote/blast_door{ - id = "hop_office_line"; - name = "Line Shutters"; - pixel_x = -35; - pixel_y = 7 - }, -/obj/machinery/button/remote/blast_door{ - id = "hop_office_desk"; - name = "Desk shutter Control"; - pixel_x = -35; - pixel_y = -7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aEh" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/computer/guestpass{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/item/weapon/folder/blue_hop, -/obj/item/weapon/pen, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aEi" = ( -/obj/machinery/vending/cart, -/obj/machinery/button/remote/blast_door{ - id = "hop_office_desk"; - name = "Desk shutter Control"; - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aEj" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 30 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aEk" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aEl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aEm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - id = "mechbay"; - name = "Mech Bay" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"aEn" = ( -/obj/machinery/door/blast/regular{ - id = "Bridgearmoury"; - name = "Bridge Holdout Armoury" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aEo" = ( -/turf/simulated/floor/tiled/dark, -/area/maintenance/bridge) -"aEp" = ( -/obj/item/weapon/book/manual/nuclear, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aEq" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aEr" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aEs" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Captain's Office" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aEt" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aEu" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall, -/area/maintenance/medbay) -"aEv" = ( -/obj/structure/closet/crate/medical, -/obj/item/weapon/surgical/surgicaldrill, -/obj/item/weapon/surgical/FixOVein, -/obj/item/weapon/surgical/circular_saw, -/obj/item/weapon/surgical/scalpel, -/obj/item/stack/medical/advanced/bruise_pack, -/obj/item/weapon/surgical/retractor, -/obj/item/weapon/surgical/hemostat, -/obj/item/weapon/surgical/cautery, -/obj/item/weapon/surgical/bonesetter, -/obj/item/weapon/surgical/bonegel, -/obj/item/stack/nanopaste, -/obj/item/weapon/autopsy_scanner, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aEw" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aEx" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/machinery/organ_printer/flesh/full, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aEy" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/simulated/floor/tiled/freezer, -/area/medical/surgery_storage) -"aEz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aEA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aEB" = ( -/obj/structure/closet, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"aEC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aED" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aEE" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Surgery 2"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aEF" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Surgery 1"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aEG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aEH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aEI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"aEJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aEK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aEL" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"aEM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"aEN" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"aEO" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen/fountain, -/turf/simulated/floor/wood, -/area/medical/psych) -"aEP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/button/windowtint{ - id = "mental_health"; - pixel_x = -24; - pixel_y = 10 - }, -/obj/effect/landmark/start{ - name = "Psychiatrist" - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"aEQ" = ( -/obj/structure/filingcabinet/medical{ - desc = "A large cabinet with hard copy medical records."; - name = "Medical Records" - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"aER" = ( -/obj/structure/closet/secure_closet{ - name = "Psychiatrist's Locker"; - req_access = list(64) - }, -/obj/item/clothing/suit/straight_jacket{ - layer = 3 - }, -/obj/item/weapon/reagent_containers/glass/bottle/stoxin, -/obj/item/weapon/reagent_containers/pill/methylphenidate, -/obj/item/weapon/reagent_containers/pill/citalopram, -/obj/item/weapon/reagent_containers/pill/citalopram, -/obj/item/weapon/reagent_containers/pill/methylphenidate, -/obj/item/weapon/reagent_containers/syringe, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/hallway/primary/central_one) -"aES" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aET" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aEU" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aEV" = ( -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aEW" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aEX" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aEY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aEZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aFa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/rust/mono_rusted2, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "hop_office_line"; - name = "HoP Office Line Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aFb" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aFc" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "hop_office_desk"; - name = "HoP Office Privacy Shutters"; - opacity = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 8; - icon_state = "left"; - name = "Reception Window" - }, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Head of Personnel's Desk"; - req_access = list(57) - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aFd" = ( -/obj/effect/landmark/start{ - name = "Head of Personnel" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aFe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aFf" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aFg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aFh" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = list(57) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aFi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aFj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aFk" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aFl" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = list(19); - req_one_access = list(19) - }, -/obj/item/weapon/gun/energy/protector, -/obj/item/weapon/gun/energy/protector, -/obj/item/weapon/gun/energy/protector, -/turf/simulated/floor/tiled/dark, -/area/maintenance/bridge) -"aFm" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aFn" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aFo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aFp" = ( -/mob/living/simple_mob/animal/passive/fox/renault, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aFq" = ( -/obj/structure/bed/chair/office/light, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aFr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aFs" = ( -/obj/structure/disposalpipe/up, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/medbay) -"aFt" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/medbay) -"aFu" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aFv" = ( -/obj/item/weapon/storage/box/cups{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/table/standard, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Surgery Observation 2"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aFw" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/lime/full, -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aFx" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/corner/lime, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aFy" = ( -/obj/machinery/optable, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/oxygen_pump/anesthetic{ - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aFz" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/firstaid/surgery, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"aFA" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/firstaid/surgery, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aFB" = ( -/obj/machinery/optable, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/oxygen_pump/anesthetic{ - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/lime, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aFC" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aFD" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"aFE" = ( -/obj/item/weapon/storage/box/cups{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/table/standard, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay break room"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgeryobs) -"aFF" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Psychiatrists Office"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"aFG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/medical/psych) -"aFH" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/wood, -/area/medical/psych) -"aFI" = ( -/obj/structure/bookcase, -/turf/simulated/wall, -/area/medical/psych) -"aFJ" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/simulated/floor/wood, -/area/hallway/primary/central_one) -"aFK" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aFL" = ( -/obj/structure/sink/puddle, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aFM" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aFN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aFO" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "hop_office_line"; - name = "HoP Office Line Shutters"; - opacity = 0 - }, -/obj/machinery/flasher{ - id = "hopflash" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"aFP" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aFQ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "hop_office_desk"; - name = "HoP Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"aFR" = ( -/obj/machinery/computer/card{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aFS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/hop) -"aFT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/hop) -"aFU" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/omnihud, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aFV" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"aFW" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aFX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aFY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aFZ" = ( -/obj/structure/table/rack, -/obj/item/weapon/soap/deluxe, -/obj/item/weapon/towel/random, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aGa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aGb" = ( -/obj/machinery/shower{ - pixel_y = 2 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aGc" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/matches, -/obj/item/clothing/mask/smokable/cigarette/cigar, -/obj/item/weapon/reagent_containers/food/drinks/flask{ - pixel_x = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aGd" = ( -/obj/structure/table/woodentable, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/item/device/megaphone, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aGe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aGf" = ( -/obj/item/weapon/pen/blue, -/obj/item/weapon/pen/red{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aGg" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/blue_captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aGh" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/skills, -/obj/item/device/perfect_tele{ - name = "Director's translocator" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aGi" = ( -/obj/structure/flora/tree/pine, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"aGj" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aGk" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aGl" = ( -/obj/structure/disposalpipe/down{ - dir = 4 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/medbay) -"aGm" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aGn" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "32-4" - }, -/obj/structure/disposalpipe/broken{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/medbay) -"aGo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aGp" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"aGq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aGr" = ( -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"aGs" = ( -/obj/structure/closet/crate, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/obj/random/maintenance/clean, -/obj/item/weapon/handcuffs/fuzzy, -/turf/simulated/floor, -/area/maintenance/medbay) -"aGt" = ( -/obj/machinery/floodlight, -/turf/simulated/floor, -/area/maintenance/medbay) -"aGu" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall, -/area/medical/surgery2) -"aGv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"aGw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"aGx" = ( -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"aGy" = ( -/obj/machinery/door/morgue{ - dir = 2; - name = "Private Study"; - req_access = list(37) - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"aGz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"aGA" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aGB" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aGC" = ( -/obj/structure/safe/floor{ - name = "Vault of Memories" - }, -/obj/item/weapon/dnainjector/tourmut{ - name = "\improper DNA injector (???)" - }, -/obj/item/weapon/dnainjector/hallucination{ - name = "\improper DNA injector (???)" - }, -/obj/item/weapon/dnainjector/firemut{ - name = "\improper DNA injector (???)" - }, -/obj/item/weapon/dnainjector/firemut{ - name = "\improper DNA injector (???)" - }, -/obj/item/clothing/under/rank/geneticist{ - desc = "This strange uniform brings back a weird feeling of deja vu, and faint memories.."; - name = "strange jumpsuit" - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aGD" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aGE" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aGF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aGG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"aGH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aGI" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "hop_office_line"; - name = "HoP Office Line Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"aGJ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aGK" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "hop_office_desk"; - name = "HoP Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/cable/green, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"aGL" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aGM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/hop) -"aGN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/mob/living/simple_mob/animal/passive/dog/corgi/Ian, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/hop) -"aGO" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Personnel's Office" - }, -/obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aGP" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aGQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aGR" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aGS" = ( -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/bridge) -"aGT" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aGU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aGV" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aGW" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) -"aGX" = ( -/obj/structure/closet/secure_closet/captains, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command, -/obj/item/clothing/shoes/boots/winter/command{ - name = "colony director's snow boots" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aGY" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Colony Director" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aGZ" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/obj/item/weapon/card/id/gold/captain/spare, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aHa" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aHb" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"aHc" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges3{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aHd" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aHe" = ( -/obj/machinery/door/window/brigdoor/westleft{ - name = "Security Checkpoint"; - req_access = list(1) - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aHf" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/medbay) -"aHg" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/briefcase{ - pixel_x = -2; - pixel_y = -5 - }, -/obj/item/weapon/storage/briefcase{ - pixel_x = 3; - pixel_y = 0 - }, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aHh" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aHi" = ( -/obj/structure/closet/lawcloset, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aHj" = ( -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aHk" = ( -/obj/item/device/taperecorder{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/camera{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/weapon/storage/secure/briefcase, -/obj/structure/closet, -/obj/item/weapon/storage/secure/briefcase, -/obj/item/device/taperecorder{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/camera{ - pixel_x = 3; - pixel_y = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aHl" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Internal Affairs" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aHm" = ( -/obj/machinery/photocopier, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aHn" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aHo" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/clipboard, -/obj/item/weapon/clipboard, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/status_display{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aHp" = ( -/turf/simulated/wall, -/area/lawoffice) -"aHq" = ( -/obj/structure/table/woodentable, -/obj/machinery/light, -/obj/item/device/universal_translator, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"aHr" = ( -/obj/structure/table/woodentable, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"aHs" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"aHt" = ( -/obj/structure/bed/psych, -/obj/machinery/light, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"aHu" = ( -/obj/machinery/vending/snack, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"aHv" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aHw" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aHx" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aHy" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aHz" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aHA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aHB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "hop_office_line"; - name = "HoP Office Line Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aHC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aHD" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/obj/machinery/camera/network/command{ - c_tag = "Head of Personnel"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aHE" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"aHF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/hop) -"aHG" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/obj/machinery/light_switch{ - pixel_x = 34; - pixel_y = 0 - }, -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aHH" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge Hallway Aft"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aHI" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/captain) -"aHJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aHK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aHL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aHM" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aHN" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aHO" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aHP" = ( -/turf/simulated/wall, -/area/maintenance/auxsolarport) -"aHQ" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aHR" = ( -/obj/structure/sign/warning/lethal_turrets, -/turf/simulated/wall, -/area/borealis2/outdoors/grounds) -"aHS" = ( -/obj/structure/grille, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/security/airlock) -"aHT" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/security/airlock) -"aHU" = ( -/obj/machinery/porta_turret/stationary, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/security/airlock) -"aHV" = ( -/turf/simulated/wall/r_wall, -/area/security/armoury) -"aHW" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start{ - name = "Internal Affairs Agent" - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aHX" = ( -/turf/simulated/floor/plating, -/area/maintenance/medbay_aft) -"aHY" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"aHZ" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aIa" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aIb" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aIc" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aId" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aIe" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/red, -/obj/item/weapon/pen/multi, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aIf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/hop) -"aIg" = ( -/obj/machinery/account_database, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aIh" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aIi" = ( -/obj/machinery/door/airlock/maintenance/command{ - req_one_access = list(12) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/bridge_hallway) -"aIj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/camera/network/command{ - c_tag = "Colony Director's bedroom"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aIk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aIl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aIm" = ( -/obj/machinery/door/airlock/command{ - name = "Colony Director's Quarters"; - req_access = list(20) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"aIn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aIo" = ( -/obj/structure/table/rack, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/armor/captain, -/obj/item/clothing/head/helmet/space/capspace, -/obj/machinery/newscaster/security_unit{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aIp" = ( -/obj/structure/displaycase, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aIq" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/keycard_auth{ - pixel_y = -32 - }, -/obj/machinery/camera/network/command{ - c_tag = "Colony Director's Office South"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aIr" = ( -/obj/structure/table/woodentable, -/obj/machinery/button/remote/blast_door{ - id = "cap_office"; - name = "Security Shutters"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/item/weapon/disk/nuclear, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aIs" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aIt" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aIu" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Solar Farm Input"; - name_tag = "Solar Farm Input" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aIv" = ( -/obj/structure/grille, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aIw" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/closet/crate/solar, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aIx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/closet/crate/solar, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aIy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard, -/obj/item/clothing/gloves/yellow, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aIz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/lime, -/obj/structure/table/standard, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aIA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aIB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aIC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aID" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aIE" = ( -/obj/structure/grille, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aIF" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aIG" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aIH" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aII" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aIJ" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aIK" = ( -/turf/simulated/wall/r_wall, -/area/security/airlock) -"aIL" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor{ - name = "Riot Armor"; - icon_state = "leftsecure"; - dir = 2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/autolathe{ - hacked = 1; - name = "unlocked autolathe" - }, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aIM" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/arm_guard/riot, -/obj/item/clothing/shoes/leg_guard/riot, -/obj/item/clothing/suit/armor/riot/alt, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/melee/baton/loaded, -/obj/machinery/door/window/brigdoor/northright{ - dir = 2; - icon_state = "rightsecure"; - name = "Riot Armor" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aIN" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/arm_guard/riot, -/obj/item/clothing/shoes/leg_guard/riot, -/obj/item/clothing/suit/armor/riot/alt, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/melee/baton/loaded, -/obj/machinery/door/window/brigdoor{ - name = "Riot Armor"; - icon_state = "leftsecure"; - dir = 2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aIO" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/arm_guard/riot, -/obj/item/clothing/shoes/leg_guard/riot, -/obj/item/clothing/suit/armor/riot/alt, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/melee/baton/loaded, -/obj/machinery/door/window/brigdoor/northright{ - dir = 2; - icon_state = "rightsecure"; - name = "Riot Armor" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aIP" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/empslite{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aIQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/handcuffs{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/weapon/storage/box/chemimp{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/trackimp, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/camera/network/security{ - c_tag = "armoury" - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aIR" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/eastleft{ - icon_state = "leftsecure"; - dir = 2 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aIS" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/eastleft{ - icon_state = "leftsecure"; - dir = 2 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aIT" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/eastright{ - icon_state = "rightsecure"; - dir = 2 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aIU" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gunbox{ - pixel_y = 6 - }, -/obj/item/gunbox{ - pixel_y = -3 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aIV" = ( -/obj/machinery/suit_cycler/security{ - req_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aIW" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aIX" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aIY" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/weapon/pen/red{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/weapon/material/ashtray/plastic{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aIZ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder{ - pixel_x = -4 - }, -/obj/item/weapon/folder/red{ - pixel_y = 3 - }, -/obj/item/weapon/folder/blue{ - pixel_x = 5 - }, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/stamp/internalaffairs, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJa" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/weapon/pen/red{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/weapon/material/ashtray/plastic{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJb" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder{ - pixel_x = -4 - }, -/obj/item/weapon/folder/red{ - pixel_y = 3 - }, -/obj/item/weapon/folder/blue{ - pixel_x = 5 - }, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/stamp/internalaffairs, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJc" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJd" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "lawyer_blast" - }, -/turf/simulated/floor/plating, -/area/lawoffice) -"aJe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aJf" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/sink/kitchen{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aJg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aJh" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aJi" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aJj" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aJk" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aJl" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aJm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aJn" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aJo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aJp" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/clipboard, -/obj/item/weapon/stamp/hop, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aJq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aJr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aJs" = ( -/obj/structure/closet/secure_closet/hop, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aJt" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aJu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aJv" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aJw" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aJx" = ( -/obj/structure/bed/double, -/obj/item/weapon/bedsheet/captaindouble, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aJy" = ( -/obj/structure/closet/wardrobe/captain, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aJz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/stool, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aJA" = ( -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Solar Farm - SMES 1" - }, -/obj/structure/cable/heavyduty, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aJB" = ( -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Solar Farm - SMES 2" - }, -/obj/structure/cable/heavyduty, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aJC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Solar Farm - SMES 3" - }, -/obj/structure/cable/heavyduty, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aJD" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Solar Farm Output"; - name_tag = "Solar Farm Output" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aJE" = ( -/obj/structure/closet/crate/secure/large/reinforced{ - anchored = 1; - desc = "A hefty, reinforced metal crate with an electronic locking system. It's securely bolted to the floor and cannot be moved."; - name = "gun safe"; - req_access = list(58) - }, -/obj/item/weapon/gun/projectile/shotgun/pump/combat, -/obj/item/weapon/gun/projectile/shotgun/pump/combat, -/obj/item/weapon/gun/projectile/automatic/z8, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aJF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aJG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aJH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aJI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aJJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aJK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aJL" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Energy" - }, -/obj/item/weapon/gun/energy/sniperrifle, -/obj/item/weapon/gun/energy/ionrifle, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aJM" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJS" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aJU" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock{ - name = "Internal Affairs"; - req_access = list(38) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/lawoffice) -"aJV" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_aft) -"aJW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay_aft) -"aJX" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/medbay_aft) -"aJY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aJZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aKa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aKb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aKc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aKd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aKe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aKf" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = list(57) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aKg" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aKh" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aKi" = ( -/obj/structure/closet/secure_closet/hop2, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop) -"aKj" = ( -/obj/machinery/door/airlock/maintenance/command{ - req_one_access = list(19) - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor, -/area/maintenance/bridge) -"aKk" = ( -/turf/simulated/wall, -/area/maintenance/bridge) -"aKl" = ( -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aKm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/solar_control, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aKn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aKo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aKp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aKq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"aKr" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aKs" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall, -/area/borealis2/outdoors/grounds) -"aKt" = ( -/obj/machinery/camera/network/security{ - c_tag = "Security Firing Range"; - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/brigdoor/northright{ - dir = 4 - }, -/obj/item/weapon/gun/projectile/automatic/wt550, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/weapon/gun/projectile/automatic/wt550, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aKu" = ( -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aKv" = ( -/obj/structure/table/rack, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aKw" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/empslite{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aKx" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/handcuffs{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/weapon/storage/box/chemimp{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/trackimp, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aKy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aKz" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/item/weapon/storage/box/shotgunshells, -/obj/item/weapon/storage/box/shotgunshells, -/obj/item/weapon/storage/box/shotgunammo, -/obj/machinery/door/window/brigdoor/northright{ - dir = 8; - name = "LETHALS"; - req_access = list(1) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aKA" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/arm_guard/bulletproof, -/obj/item/clothing/shoes/leg_guard/bulletproof, -/obj/item/clothing/suit/armor/bulletproof/alt, -/obj/item/clothing/head/helmet/bulletproof, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/eastleft, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aKB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aKC" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/northright{ - dir = 8; - name = "Combat Armor" - }, -/obj/item/clothing/gloves/arm_guard/combat, -/obj/item/clothing/shoes/leg_guard/combat, -/obj/item/clothing/suit/armor/combat, -/obj/item/clothing/head/helmet/combat, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aKD" = ( -/obj/machinery/camera/network/civilian{ - dir = 5 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aKE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aKF" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/hallway/primary/central_one) -"aKG" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"aKH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aKI" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aKJ" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"aKK" = ( -/turf/simulated/wall/r_wall, -/area/bridge) -"aKL" = ( -/obj/machinery/newscaster/security_unit, -/turf/simulated/wall/r_wall, -/area/bridge) -"aKM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge) -"aKN" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = "sbridgedoor"; - name = "Bridge"; - req_access = list(19) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aKO" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aKP" = ( -/obj/machinery/door/airlock/maintenance/command{ - req_one_access = list(12) - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/bridge) -"aKQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aKR" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aKS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aKT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aKU" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aKV" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aKW" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aKX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/multi_tile/metal/mait, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/maintenance/auxsolarport) -"aKY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/maintenance/auxsolarport) -"aKZ" = ( -/obj/machinery/trailblazer/blue, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"aLa" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/item/weapon/gun/projectile/shotgun/pump{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/gun/projectile/shotgun/pump, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Ballistics" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aLb" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/table/rack, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m9mmt, -/obj/item/ammo_magazine/m9mmt, -/obj/item/ammo_magazine/m9mmt, -/obj/item/ammo_magazine/m9mmt, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 8; - name = "LETHALS"; - req_access = list(1) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aLc" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/arm_guard/bulletproof, -/obj/item/clothing/shoes/leg_guard/bulletproof, -/obj/item/clothing/suit/armor/bulletproof/alt, -/obj/item/clothing/head/helmet/bulletproof, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/eastright, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aLd" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aLe" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Unlocked Autolathe" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aLf" = ( -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = -26 - }, -/obj/machinery/button/windowtint{ - id = "lawyer_blast"; - pixel_x = 0; - pixel_y = -36 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aLg" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aLh" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aLi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aLj" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-06" - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aLk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/security) -"aLl" = ( -/turf/simulated/wall, -/area/crew_quarters/kitchen) -"aLm" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aLn" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/maintenance/central) -"aLo" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aLp" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/open, -/area/crew_quarters/kitchen) -"aLq" = ( -/obj/machinery/chem_master, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aLr" = ( -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"aLs" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"aLt" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"aLu" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"aLv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/item/weapon/flag, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aLw" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/hallway/secondary/entry/docking_lounge) -"aLx" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio, -/obj/item/device/radio{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/machinery/recharger, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aLy" = ( -/obj/machinery/computer/atmoscontrol{ - name = "\improper Auxiliary Atmospherics Computer" - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aLz" = ( -/obj/machinery/computer/power_monitor, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge Fore" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aLA" = ( -/obj/machinery/computer/rcon, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aLB" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aLC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aLD" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aLE" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/command) -"aLF" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - name = "Electrical Maintenance"; - req_access = list(19) - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"aLG" = ( -/turf/simulated/wall/r_wall, -/area/bridge/blueshield) -"aLH" = ( -/obj/machinery/door/airlock/maintenance/command{ - req_one_access = list(19) - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/bridge/blueshield) -"aLI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aLJ" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aLK" = ( -/turf/simulated/wall, -/area/borealis2/outdoors/exterior/explore1) -"aLL" = ( -/obj/structure/grille/broken, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aLM" = ( -/obj/structure/grille, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aLN" = ( -/obj/structure/girder, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aLO" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aLP" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aLQ" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aLR" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aLS" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/flasher/portable, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aLT" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/flasher/portable, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aLU" = ( -/obj/structure/closet/bombclosetsecurity, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aLV" = ( -/obj/machinery/mech_recharger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aLW" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/northright{ - dir = 8; - name = "Ammo" - }, -/obj/structure/table/rack, -/obj/item/weapon/storage/box/flashshells, -/obj/item/weapon/storage/box/beanbags, -/obj/item/weapon/storage/box/beanbags, -/obj/item/weapon/storage/box/stunshells, -/obj/item/weapon/storage/box/stunshells, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aLX" = ( -/obj/structure/table/rack, -/obj/machinery/door/window/brigdoor/eastleft, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/item/weapon/gun/energy/gun{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/gun/energy/gun, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aLY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aLZ" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/arm_guard/laserproof, -/obj/item/clothing/shoes/leg_guard/laserproof, -/obj/item/clothing/suit/armor/laserproof{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/clothing/head/helmet/laserproof, -/obj/machinery/door/window/brigdoor/eastright{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aMa" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/simulated/floor, -/area/maintenance/substation/security) -"aMb" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) -"aMc" = ( -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Substation - Security" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/security) -"aMd" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Security Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/security) -"aMe" = ( -/turf/simulated/wall/r_wall, -/area/lawoffice) -"aMf" = ( -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/open, -/area/crew_quarters/kitchen) -"aMg" = ( -/obj/machinery/atm, -/turf/simulated/wall, -/area/hallway/primary/central_one) -"aMh" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/weapon/reagent_containers/food/condiment/enzyme, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aMi" = ( -/obj/structure/table/standard, -/obj/machinery/light, -/obj/structure/closet/secure_closet/medical_wall{ - name = "anesthetic closet"; - pixel_x = 32; - req_access = list(29) - }, -/obj/item/weapon/tank/anesthetic, -/obj/item/weapon/tank/anesthetic, -/obj/item/weapon/tank/anesthetic, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/obj/item/weapon/storage/box/gloves, -/obj/item/device/defib_kit/jumper_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"aMj" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/central) -"aMk" = ( -/obj/machinery/computer/timeclock/premade/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aMl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aMm" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge) -"aMn" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/secure/briefcase, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aMo" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aMp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aMq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Command Secretary" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aMr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aMs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aMt" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall, -/area/bridge) -"aMu" = ( -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"aMv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"aMw" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Command Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"aMx" = ( -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aMy" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aMz" = ( -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aMA" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aMB" = ( -/obj/structure/closet/secure_closet/blueshield, -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aMC" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/old_tile/gray, -/area/borealis2/outdoors/exterior/explore1) -"aMD" = ( -/obj/item/weapon/material/shard, -/turf/simulated/floor/tiled/old_tile/gray, -/area/borealis2/outdoors/exterior/explore1) -"aME" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/old_tile/gray, -/area/borealis2/outdoors/exterior/explore1) -"aMF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 10 - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/exterior/explore1) -"aMG" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aMH" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aMI" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aMJ" = ( -/obj/structure/table/standard, -/obj/item/weapon/cell/device/weapon{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/cell/device/weapon{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/cell/device/weapon, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/machinery/recharger/wallcharger{ - dir = 1; - pixel_x = 4; - pixel_y = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aMK" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aML" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/item/ammo_magazine/m9mmt/rubber, -/obj/item/ammo_magazine/m9mmt/rubber, -/obj/item/ammo_magazine/m9mmt/rubber, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 1; - name = "Ammo"; - req_access = list(1) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/ammo_magazine/m9mmt/rubber, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aMM" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/eastright, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/weapon/gun/energy/laser{ - pixel_y = 2 - }, -/obj/item/weapon/gun/energy/laser{ - pixel_y = -2 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aMN" = ( -/obj/machinery/button/remote/blast_door{ - id = "ArmorAc2"; - name = "Armory Quick Deploy"; - pixel_x = -23; - pixel_y = -23; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aMO" = ( -/obj/structure/table/rack, -/obj/item/clothing/gloves/arm_guard/laserproof, -/obj/item/clothing/shoes/leg_guard/laserproof, -/obj/item/clothing/suit/armor/laserproof{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/clothing/head/helmet/laserproof, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"aMP" = ( -/turf/simulated/floor/plating, -/area/maintenance/substation/security) -"aMQ" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Security Subgrid"; - name_tag = "Security Subgrid" - }, -/turf/simulated/floor, -/area/maintenance/substation/security) -"aMR" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/security) -"aMS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/security) -"aMT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Security Substation"; - req_one_access = list(1,11,24) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor, -/area/maintenance/substation/security) -"aMU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/security) -"aMV" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/security) -"aMW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/security) -"aMX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/security) -"aMY" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance"; - req_access = list(28) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/crew_quarters/kitchen) -"aMZ" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aNa" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/extinguisher_cabinet{ - pixel_x = -4; - pixel_y = 30 - }, -/obj/machinery/button/remote/blast_door{ - id = "kitchen"; - name = "Kitchen shutters"; - pixel_x = 8; - pixel_y = 25 - }, -/obj/machinery/cooker/grill, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aNb" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aNc" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/armor/vest/alt, -/obj/item/clothing/suit/armor/vest/alt, -/obj/item/clothing/suit/armor/vest/alt, -/obj/item/clothing/suit/armor/vest/alt, -/obj/item/clothing/suit/armor/vest/alt, -/obj/item/clothing/suit/armor/vest/alt, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/brigdoor/southleft, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aNd" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aNe" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge) -"aNf" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNh" = ( -/obj/machinery/button/remote/blast_door{ - id = "bridge blast"; - name = "Bridge Blastdoors"; - pixel_x = -10; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNl" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge_hallway) -"aNm" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"aNn" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"aNo" = ( -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Substation - Command" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"aNp" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/medical, -/obj/random/maintenance/clean, -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/maintenance/bridge) -"aNq" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/bridge) -"aNr" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/bridge) -"aNs" = ( -/obj/structure/table/rack, -/obj/item/weapon/flame/lighter/zippo/blue, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aNt" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aNu" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aNv" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aNw" = ( -/turf/simulated/floor/tiled/old_tile/gray, -/area/borealis2/outdoors/exterior/explore1) -"aNx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/airlock/security{ - name = "Equipment Storage"; - req_access = list(3) - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aNy" = ( -/obj/structure/sign/department/armory, -/turf/simulated/wall/r_wall, -/area/security/armoury) -"aNz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - dir = 8; - id = "ArmorAc2"; - layer = 3.3; - name = "Quick Deployment" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/armoury) -"aNA" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - dir = 8; - id = "ArmorAc2"; - layer = 3.3; - name = "Quick Deployment" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/security/armoury) -"aNB" = ( -/turf/simulated/wall, -/area/security/armoury) -"aNC" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/security) -"aND" = ( -/obj/machinery/door/airlock/engineering{ - name = "Security Substation"; - req_one_access = list(1,11,24) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/security) -"aNE" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/wall/r_wall, -/area/maintenance/substation/security) -"aNF" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/security) -"aNG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/security) -"aNH" = ( -/turf/simulated/wall, -/area/crew_quarters/bar) -"aNI" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aNJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aNK" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aNL" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aNM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aNN" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aNO" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNQ" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -12 - }, -/turf/simulated/wall, -/area/bridge) -"aNR" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNS" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aNU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - name = "Electrical Maintenance"; - req_access = list(19) - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"aNV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"aNW" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Command Subgrid"; - name_tag = "Command Subgrid" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor, -/area/maintenance/substation/command) -"aNX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"aNY" = ( -/turf/simulated/wall/r_wall, -/area/bridge/meeting_room) -"aNZ" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/machinery/camera/network/command{ - c_tag = "Blueshield"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aOa" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aOb" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aOc" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aOd" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/simulated/floor/tiled/old_tile/gray, -/area/borealis2/outdoors/exterior/explore1) -"aOe" = ( -/obj/effect/decal/remains/posi, -/turf/simulated/floor/tiled/old_tile/gray, -/area/borealis2/outdoors/exterior/explore1) -"aOf" = ( -/turf/simulated/wall/r_wall, -/area/security/warden) -"aOg" = ( -/obj/machinery/camera/network/security{ - c_tag = "Warden"; - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/tool/crowbar, -/obj/machinery/newscaster/security_unit{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/item/weapon/hand_labeler, -/obj/item/device/retail_scanner/security{ - name = "fine payment scanner" - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aOh" = ( -/obj/machinery/status_display{ - density = 0; - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/warden, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/gun/projectile/shotgun/pump/combat{ - ammo_type = /obj/item/ammo_casing/a12g/beanbag; - desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; - name = "warden's shotgun" - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aOi" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aOj" = ( -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aOk" = ( -/obj/machinery/computer/security, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aOl" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel, -/area/security/warden) -"aOm" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/southright, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aOn" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/machinery/vending/security/yw, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"aOo" = ( -/obj/machinery/button/remote/blast_door{ - id = "ArmorAc2"; - name = "Armory Quick Deploy"; - pixel_x = -23; - pixel_y = 23; - req_access = list(3) - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aOp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aOq" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/southleft, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/weapon/gun/energy/ionrifle/pistol, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aOr" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/suit/storage/vest/heavy/officer, -/obj/item/clothing/suit/storage/vest/heavy/officer, -/obj/item/clothing/suit/storage/vest/heavy/officer, -/obj/item/clothing/suit/storage/vest/heavy/officer, -/obj/item/clothing/suit/storage/vest/heavy/officer, -/obj/item/clothing/suit/storage/vest/heavy/officer, -/obj/machinery/door/window/brigdoor/southright{ - name = "Combat Armor" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aOs" = ( -/turf/simulated/wall, -/area/security/breakroom) -"aOt" = ( -/obj/structure/bed/chair, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aOu" = ( -/obj/structure/bed/chair, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aOv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Break room" - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aOw" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aOx" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aOy" = ( -/turf/simulated/wall/r_wall, -/area/security/breakroom) -"aOz" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/machinery/camera/network/civilian{ - c_tag = "Library Fore"; - dir = 2 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/chem_master, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aOA" = ( -/obj/structure/closet/secure_closet/bar{ - req_access = list(25) - }, -/obj/item/weapon/storage/secure/safe{ - pixel_z = 30 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aOB" = ( -/obj/structure/closet/gmcloset{ - icon_closed = "black"; - icon_state = "black"; - name = "formal wardrobe" - }, -/obj/item/glass_jar, -/obj/item/device/retail_scanner/civilian, -/obj/item/device/retail_scanner/civilian, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aOC" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - req_access = list(150) - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aOD" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aOE" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aOF" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aOG" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aOH" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard, -/obj/item/weapon/material/kitchen/rollingpin, -/obj/item/weapon/material/knife/butch, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aOI" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aOJ" = ( -/obj/machinery/cooker/fryer, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aOK" = ( -/obj/machinery/cooker/oven, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aOL" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aOM" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/crew_quarters/kitchen) -"aON" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aOO" = ( -/obj/structure/table/reinforced, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/device/aicard, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aOP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aOQ" = ( -/obj/machinery/computer/aifixer{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aOR" = ( -/turf/simulated/wall, -/area/bridge) -"aOS" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/device/multitool, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/structure/fireaxecabinet{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aOT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aOU" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aOV" = ( -/obj/structure/sign/department/conference_room, -/turf/simulated/wall/r_wall, -/area/bridge/meeting_room) -"aOW" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aOX" = ( -/obj/machinery/requests_console/preset/bridge{ - pixel_y = 32 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command Meeting Room" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aOY" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aOZ" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aPa" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aPb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/bridge/blueshield) -"aPc" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"aPd" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aPe" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aPf" = ( -/turf/simulated/wall, -/area/security/airlock) -"aPg" = ( -/obj/structure/sign/warning/lethal_turrets, -/turf/simulated/wall, -/area/security/airlock) -"aPh" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -24 - }, -/obj/structure/table/steel, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/red, -/obj/item/weapon/pen, -/obj/item/device/radio{ - pixel_x = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aPi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aPk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aPl" = ( -/obj/structure/table/steel, -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/red, -/obj/item/weapon/pen, -/obj/item/device/binoculars, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Warden's Desk"; - req_access = list(3) - }, -/obj/machinery/door/window/brigdoor/eastright, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aPm" = ( -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aPn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aPo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aPp" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aPq" = ( -/obj/structure/table/glass, -/obj/item/weapon/deck/cards, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aPr" = ( -/obj/structure/table/glass, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aPs" = ( -/obj/effect/landmark/start{ - name = "Bartender" - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aPt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aPu" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/donkpockets, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aPv" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access = list(25) - }, -/turf/simulated/floor, -/area/crew_quarters/bar) -"aPw" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aPx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aPy" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/sign/securearea{ - desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; - icon_state = "monkey_painting"; - name = "Mr. Deempisi portrait"; - pixel_x = 28; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aPz" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aPA" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aPB" = ( -/obj/machinery/cooker/cereal, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aPC" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aPD" = ( -/obj/machinery/cooker/candy, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aPE" = ( -/obj/machinery/smartfridge/plantvator, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) -"aPF" = ( -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aPG" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"aPH" = ( -/turf/simulated/floor/greengrid, -/area/hallway/primary/central_one) -"aPI" = ( -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/hallway/primary/central_one) -"aPJ" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"aPK" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aPL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sunnybush, -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aPM" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin, -/obj/item/weapon/folder/red, -/obj/item/weapon/folder/blue, -/obj/item/weapon/pen, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aPN" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/donut, -/obj/machinery/keycard_auth{ - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aPO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aPP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction{ - name = "Primary Tool Storage"; - sortType = "Primary Tool Storage" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aPQ" = ( -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command, -/obj/structure/table/rack, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command, -/obj/item/clothing/shoes/boots/winter/climbing, -/obj/item/clothing/shoes/boots/winter/climbing, -/obj/item/device/gps/command, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aPR" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/bridge) -"aPS" = ( -/obj/structure/table/woodentable, -/obj/machinery/chemical_dispenser/bar_soft, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aPT" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Command Conf Room" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aPU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aPV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aPW" = ( -/obj/structure/bed/chair/comfy/black, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aPX" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aPY" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = "sbridgedoor"; - name = "Command Department"; - req_access = list(19) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aPZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aQa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aQb" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aQc" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"aQd" = ( -/obj/effect/floor_decal/rust/mono_rusted2, -/turf/simulated/wall, -/area/borealis2/outdoors/exterior/explore1) -"aQe" = ( -/obj/effect/floor_decal/rust/mono_rusted3, -/turf/simulated/wall, -/area/borealis2/outdoors/exterior/explore1) -"aQf" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aQg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/security/airlock) -"aQh" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) -"aQi" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) -"aQj" = ( -/obj/machinery/power/thermoregulator/cryogaia{ - pixel_y = 30 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) -"aQk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf, -/obj/item/weapon/shovel, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/item/weapon/ice_pick, -/turf/simulated/floor/tiled, -/area/security/airlock) -"aQl" = ( -/obj/machinery/turretid/lethal{ - pixel_y = 32 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/airlock) -"aQm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/machinery/photocopier/faxmachine, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 8; - listening = 1; - name = "Common Channel"; - pixel_x = -21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aQn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aQo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aQp" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access = list(3) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aQq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aQr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aQs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - c_tag = "Prison Disposal Processing"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aQt" = ( -/obj/machinery/newscaster/security_unit, -/turf/simulated/wall/r_wall, -/area/security/breakroom) -"aQu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aQv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aQw" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aQx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aQy" = ( -/obj/structure/table/steel, -/obj/machinery/microwave, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 26; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/security/breakroom) -"aQz" = ( -/obj/structure/table/woodentable, -/obj/machinery/reagentgrinder, -/obj/item/weapon/reagent_containers/food/drinks/shaker, -/obj/item/weapon/packageWrap, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = -22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aQA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aQB" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/beanbags, -/obj/item/weapon/gun/projectile/shotgun/doublebarrel, -/obj/item/weapon/paper{ - info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; - name = "Shotgun permit" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aQC" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aQD" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aQE" = ( -/obj/machinery/vending/dinnerware, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aQF" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aQG" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/landmark/start{ - name = "Chef" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aQH" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aQI" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aQJ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aQK" = ( -/obj/structure/table/marble, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "kitchen"; - layer = 3.1; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"aQL" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"aQM" = ( -/obj/item/weapon/paper/shieldgen, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/hallway/primary/central_one) -"aQN" = ( -/obj/machinery/computer/station_alert/all{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aQO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aQP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "bridge blast"; - name = "Bridge Blastdoors"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aQQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aQR" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge Aft"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aQS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aQT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aQU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aQV" = ( -/obj/machinery/door/airlock/command{ - name = "Conference Room"; - req_access = list(19) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge) -"aQW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aQX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aQY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aQZ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Command Secretary" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aRa" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/manual/security_space_law, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aRb" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/red, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aRc" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Command Secretary" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aRd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aRe" = ( -/obj/machinery/door/airlock/maintenance/command{ - req_one_access = list(19) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/bridge/blueshield) -"aRf" = ( -/obj/machinery/door/airlock/maintenance/command{ - req_one_access = list(19) - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/bridge) -"aRg" = ( -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aRh" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aRi" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aRj" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aRk" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "Security_exit_exterior"; - locked = 1 - }, -/obj/machinery/access_button{ - master_tag = "Security_exit_control"; - pixel_x = -6; - pixel_y = -25; - req_one_access = list(1) - }, -/turf/simulated/floor/plating/snow/plating, -/area/security/airlock) -"aRl" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) -"aRm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) -"aRn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) -"aRo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - id_tag = "Security_exit_interior"; - locked = 1 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "Security_exit_control"; - pixel_x = -6; - pixel_y = -25; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aRp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aRq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aRr" = ( -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = -26; - pixel_y = 22 - }, -/obj/machinery/computer/prisoner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aRs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aRt" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aRu" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel, -/area/security/warden) -"aRv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aRw" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/deployable/barrier, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aRx" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/deployable/barrier, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aRy" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/security/breakroom) -"aRz" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Break Room"; - req_access = list(1) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/security/breakroom) -"aRA" = ( -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access = list(25) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aRB" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/wall, -/area/crew_quarters/bar) -"aRC" = ( -/obj/machinery/smartfridge/drinks, -/turf/simulated/wall, -/area/crew_quarters/bar) -"aRD" = ( -/obj/structure/table/marble, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchen"; - layer = 3.1; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"aRE" = ( -/obj/structure/table/marble, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchen"; - layer = 3.1; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"aRF" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/food/drinks/flask/barflask, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/button/holosign{ - id = "barsign"; - pixel_x = -25 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aRG" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/crew_quarters/bar) -"aRH" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Kitchen"; - req_access = list(28) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"aRI" = ( -/obj/machinery/holosign/bar{ - id = "barsign" - }, -/turf/simulated/wall, -/area/crew_quarters/bar) -"aRJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/hallway/primary/central_one) -"aRK" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aRL" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge) -"aRM" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge) -"aRN" = ( -/obj/machinery/computer/communications{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aRO" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aRP" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aRQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aRR" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/start{ - name = "Command Secretary" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aRS" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aRT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aRU" = ( -/obj/machinery/door/airlock/command{ - name = "Conference Room"; - req_access = list(19) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/bridge) -"aRV" = ( -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aRW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aRX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aRY" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aRZ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aSa" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aSb" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aSc" = ( -/obj/machinery/button/windowtint{ - id = "comconference"; - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aSd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aSe" = ( -/obj/machinery/door/airlock/maintenance/command{ - req_one_access = list(19) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/bridge) -"aSf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aSg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aSh" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aSi" = ( -/obj/structure/disposalpipe/down, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/bridge) -"aSj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall, -/area/maintenance/bridge) -"aSk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/maintenance/bridge) -"aSl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall, -/area/maintenance/bridge) -"aSm" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/surround, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aSn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) -"aSo" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Security_exit_control"; - name = "Security Exit Controller"; - pixel_x = -5; - pixel_y = -25; - tag_exterior_door = "Security_exit_exterior"; - tag_interior_door = "Security_exit_interior" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) -"aSp" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Expedition Airlock"; - dir = 1 - }, -/obj/machinery/space_heater, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) -"aSq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/security/brig) -"aSr" = ( -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aSs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/noticeboard/airlock{ - pixel_y = -30 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aSt" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aSu" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Firing Range"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/device/radio/intercom/department/security{ - dir = 8; - icon_state = "secintercom"; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aSv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Warden" - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aSw" = ( -/obj/structure/table/steel, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/stamp/denied{ - pixel_x = 5 - }, -/obj/item/weapon/stamp/ward, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aSx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aSy" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/warden) -"aSz" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aSA" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/box/seccarts{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/handcuffs, -/obj/item/weapon/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aSB" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/weapon/reagent_containers/spray/pepper, -/obj/item/device/uv_light, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/item/clothing/under/det/waistcoat, -/obj/item/weapon/gun/energy/stunrevolver, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"aSC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"aSD" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/deployable/barrier, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aSE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/deployable/barrier, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aSF" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall, -/area/security/briefing_room) -"aSG" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"aSH" = ( -/turf/simulated/floor/carpet, -/area/security/briefing_room) -"aSI" = ( -/obj/effect/landmark/start{ - name = "Head of Security" - }, -/obj/structure/bed/chair/comfy/black{ - dir = 2 - }, -/turf/simulated/floor/carpet, -/area/security/briefing_room) -"aSJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet, -/area/security/briefing_room) -"aSK" = ( -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aSL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/sec{ - name = "Security Maintenance"; - req_access = list(1,12) - }, -/turf/simulated/floor, -/area/security/briefing_room) -"aSM" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/book/manual/barman_recipes, -/obj/item/clothing/head/that{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/tool/screwdriver, -/obj/item/weapon/flame/lighter/zippo, -/obj/machinery/light_switch{ - pixel_x = -36; - pixel_y = 0 - }, -/obj/machinery/button/remote/blast_door{ - id = "bar"; - name = "Bar Shutters"; - pixel_x = -26; - pixel_y = 0 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aSN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aSO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aSP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aSQ" = ( -/obj/machinery/chemical_dispenser/bar_alc/full{ - pixel_y = 32 - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aSR" = ( -/obj/machinery/vending/cola, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"aSS" = ( -/obj/machinery/media/jukebox, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aST" = ( -/obj/item/weapon/stool/padded{ - pixel_y = 5 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"aSU" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/effect/floor_decal/spline/plain, -/obj/item/weapon/stool/padded{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"aSV" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/item/weapon/stool/padded{ - pixel_y = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"aSW" = ( -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/device/flashlight/lamp/green, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aSX" = ( -/obj/structure/device/piano{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aSY" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aSZ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aTa" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - icon_state = "spline_fancy"; - dir = 10 - }, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aTb" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aTc" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/ids, -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aTd" = ( -/obj/machinery/computer/card{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aTe" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/full, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aTf" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aTg" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/bridge) -"aTh" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = "sbridgedoor"; - name = "Bridge"; - req_access = list(19) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aTi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-09"; - name = "Steve"; - pixel_y = 15 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aTj" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aTk" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"aTl" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"aTm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aTn" = ( -/turf/simulated/wall/r_wall, -/area/teleporter) -"aTo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aTp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aTq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aTr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aTs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction/wildcard/flipped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aTt" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aTu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aTv" = ( -/obj/structure/disposalpipe/sortjunction/untagged{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"aTw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall, -/area/maintenance/bridge) -"aTx" = ( -/obj/effect/floor_decal/rust/mono_rusted1, -/turf/simulated/wall, -/area/borealis2/outdoors/exterior/explore1) -"aTy" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aTz" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Security Maintenance"; - req_one_access = list(1,18) - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/security/airlock) -"aTA" = ( -/turf/simulated/wall/r_wall, -/area/security/security_aid_station) -"aTB" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aTC" = ( -/obj/structure/table/steel, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Warden's Desk"; - req_access = list(1) - }, -/obj/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Warden's Desk"; - req_access = list(3) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aTD" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel, -/area/security/warden) -"aTE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access = list(3) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"aTF" = ( -/turf/simulated/wall, -/area/security/warden) -"aTG" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_equiptment_storage) -"aTH" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_equiptment_storage) -"aTI" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = null; - layer = 2.8; - name = "Security"; - req_access = list(1) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/red, -/area/security/security_equiptment_storage) -"aTJ" = ( -/turf/simulated/wall, -/area/security/security_equiptment_storage) -"aTK" = ( -/turf/simulated/wall/r_wall, -/area/security/briefing_room) -"aTL" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/photocopier/faxmachine, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aTM" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aTN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aTO" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aTP" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/weapon/reagent_containers/spray/pepper, -/obj/item/device/uv_light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/device/radio/intercom/department/security{ - dir = 8; - icon_state = "secintercom"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/item/clothing/under/det/black, -/obj/item/weapon/gun/projectile/colt/detective, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"aTQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aTR" = ( -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aTS" = ( -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Bar"; - req_access = list(25) - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aTT" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aTU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aTV" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aTW" = ( -/obj/structure/sign/department/shield, -/turf/simulated/wall, -/area/hallway/primary/central_one) -"aTX" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/central_one) -"aTY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - icon_state = "spline_fancy"; - dir = 10 - }, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aTZ" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aUa" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge) -"aUb" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge) -"aUc" = ( -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aUd" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge) -"aUe" = ( -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aUf" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized{ - id = "comconference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "comconference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "comconference" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"aUg" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized{ - id = "comconference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "comconference" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"aUh" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized{ - id = "comconference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "comconference" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "comconference" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"aUi" = ( -/obj/machinery/door/airlock/maintenance/command{ - req_one_access = list(19) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor, -/area/maintenance/bridge) -"aUj" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aUk" = ( -/obj/machinery/door/airlock/maintenance/cargo{ - req_access = list(50); - req_one_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/quartermaster/disposals) -"aUl" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/quartermaster/disposals) -"aUm" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/obj/structure/disposaloutlet, -/turf/simulated/floor, -/area/quartermaster/disposals) -"aUn" = ( -/turf/simulated/wall, -/area/quartermaster/disposals) -"aUo" = ( -/obj/effect/floor_decal/rust/color_rustedfull, -/obj/machinery/door/airlock/glass_external/public, -/turf/simulated/floor/tiled/old_tile/gray, -/area/borealis2/outdoors/exterior/explore1) -"aUp" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/down, -/obj/structure/cable/green{ - icon_state = "32-2" - }, -/turf/simulated/open, -/area/security/airlock) -"aUq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/security/airlock) -"aUr" = ( -/obj/structure/table/standard, -/obj/item/bodybag/cryobag{ - pixel_x = 6 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/random/firstaid, -/turf/simulated/floor/tiled/white, -/area/security/security_aid_station) -"aUs" = ( -/obj/structure/table/standard, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/item/weapon/reagent_containers/hypospray/autoinjector, -/obj/item/weapon/reagent_containers/hypospray/autoinjector, -/obj/item/weapon/reagent_containers/hypospray/autoinjector, -/turf/simulated/floor/tiled/white, -/area/security/security_aid_station) -"aUt" = ( -/obj/structure/table/standard, -/obj/item/device/healthanalyzer, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 10 - }, -/obj/item/stack/medical/ointment{ - pixel_y = 10 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/random/medical/lite, -/turf/simulated/floor/tiled/white, -/area/security/security_aid_station) -"aUu" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/security/security_aid_station) -"aUv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aUw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aUx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aUy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aUz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aUA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aUB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aUC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aUD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aUE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aUF" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aUG" = ( -/obj/structure/flora/pottedplant, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aUH" = ( -/turf/simulated/wall, -/area/security/briefing_room) -"aUI" = ( -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/security_space_law, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aUJ" = ( -/obj/item/weapon/folder/red, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aUK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aUL" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aUM" = ( -/obj/item/weapon/folder/red, -/obj/structure/table/glass, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aUN" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/crew_quarters/bar) -"aUO" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "bar"; - layer = 3.1; - name = "Bar Shutters" - }, -/obj/structure/table/marble, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aUP" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "bar"; - layer = 3.1; - name = "Bar Shutters" - }, -/obj/machinery/cash_register/civilian{ - dir = 1 - }, -/obj/structure/table/marble, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aUQ" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aUR" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aUS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aUT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aUU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aUV" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aUW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aUX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aUY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aUZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aVa" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aVb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - icon_state = "spline_fancy"; - dir = 10 - }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aVc" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aVd" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aVe" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aVf" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/item/weapon/flag, -/turf/simulated/floor/grass, -/area/hallway/primary/central_one) -"aVg" = ( -/obj/structure/sign/department/bridge, -/turf/simulated/wall/r_wall, -/area/bridge) -"aVh" = ( -/obj/machinery/door/airlock/glass_command{ - id_tag = "sbridgedoor"; - name = "Command Department"; - req_access = list(19) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge) -"aVi" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aVj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aVk" = ( -/obj/machinery/vending/cigarette{ - name = "Cigarette machine"; - prices = list(); - products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aVl" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aVm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aVn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aVo" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aVp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aVq" = ( -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/teleporter) -"aVr" = ( -/obj/machinery/camera/network/command{ - c_tag = "COM - Bridge Starboard" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/teleporter) -"aVs" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aVt" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aVu" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_tele, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aVv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/disposals) -"aVw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall, -/area/quartermaster/disposals) -"aVx" = ( -/obj/machinery/conveyor{ - dir = 3; - id = "packageSort1" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor{ - dir = 1 - }, -/area/quartermaster/disposals) -"aVy" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"aVz" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/overlay/snow/floor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aVA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/security/airlock) -"aVB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/security/airlock) -"aVC" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/security/security_aid_station) -"aVD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/security/security_aid_station) -"aVE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/security/security_aid_station) -"aVF" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Medical"; - req_access = newlist() - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/security_aid_station) -"aVG" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aVH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aVI" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aVJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aVK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Brig Port"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aVL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aVM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aVN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aVO" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aVP" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/item/clothing/shoes/boots/winter/security, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security, -/obj/item/clothing/shoes/boots/winter/security, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aVQ" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"aVR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aVS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aVT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aVU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Briefing"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aVV" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aVW" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aVX" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aVY" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aVZ" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aWa" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aWb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aWc" = ( -/obj/structure/bed/chair/wood/wings, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aWd" = ( -/obj/structure/bed/chair/wood/wings, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aWe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aWf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aWg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aWh" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Bar" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aWi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge Aft Entrance" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWn" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWo" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWp" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWq" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aWv" = ( -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_access = list(17) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/teleporter) -"aWw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aWx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aWy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aWz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aWA" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/teleporter) -"aWB" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aWC" = ( -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aWD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable, -/turf/simulated/floor/tiled, -/area/quartermaster/disposals) -"aWE" = ( -/obj/item/weapon/stool, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/disposals) -"aWF" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "packageSort1" - }, -/turf/simulated/floor{ - dir = 1 - }, -/area/quartermaster/disposals) -"aWG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/quartermaster/disposals) -"aWH" = ( -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 10 - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/exterior/explore1) -"aWI" = ( -/turf/simulated/wall/r_wall, -/area/security/security_cell_hallway) -"aWJ" = ( -/obj/structure/bed/roller, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/security/security_aid_station) -"aWK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/security/security_aid_station) -"aWL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Medical Station"; - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/security/security_aid_station) -"aWM" = ( -/turf/simulated/wall, -/area/security/security_aid_station) -"aWN" = ( -/turf/simulated/wall, -/area/security/security_cell_hallway) -"aWO" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"aWP" = ( -/obj/machinery/requests_console/preset/security, -/turf/simulated/wall, -/area/security/security_cell_hallway) -"aWQ" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aWR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aWS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aWT" = ( -/obj/structure/table/rack/shelf, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/item/clothing/shoes/boots/winter/security, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security, -/obj/item/clothing/shoes/boots/winter/security, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled, -/area/security/brig) -"aWU" = ( -/obj/item/weapon/folder/red, -/obj/item/clothing/glasses/hud/security, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aWV" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aWW" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aWX" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aWY" = ( -/obj/item/weapon/folder/red, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/security/briefing_room) -"aWZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor, -/area/crew_quarters/bar) -"aXa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aXb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aXc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aXd" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aXe" = ( -/obj/structure/table/gamblingtable, -/obj/item/weapon/dice, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aXf" = ( -/obj/structure/table/gamblingtable, -/obj/item/weapon/deck/cards, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aXg" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aXh" = ( -/obj/item/weapon/material/kitchen/utensil/fork, -/obj/item/weapon/material/kitchen/utensil/spoon{ - pixel_x = 2 - }, -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aXi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"aXj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"aXn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXp" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"aXq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXy" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aXA" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"aXB" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/teleporter) -"aXC" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/teleporter) -"aXD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aXE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/teleporter) -"aXF" = ( -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/teleporter) -"aXG" = ( -/obj/machinery/teleport/station, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aXH" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/disposals) -"aXI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/disposals) -"aXJ" = ( -/obj/structure/grille, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "Cell 1 Blastdoor"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/security/security_cell_hallway) -"aXK" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/obj/machinery/camera/network/prison{ - c_tag = "Brig Cell 1"; - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"aXL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"aXM" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aXN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aXO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aXP" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aXQ" = ( -/obj/structure/table/standard, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aXR" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aXS" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aXT" = ( -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aXU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aXV" = ( -/turf/simulated/open, -/area/security/security_cell_hallway) -"aXW" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/security/security_cell_hallway) -"aXX" = ( -/obj/structure/table/glass, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/toy/xmas_cracker, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aXY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aXZ" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aYa" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/item/device/radio/intercom/department/security{ - dir = 4; - icon_state = "secintercom"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aYb" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aYc" = ( -/obj/item/weapon/material/kitchen/utensil/fork, -/obj/item/weapon/material/kitchen/utensil/spoon{ - pixel_x = 2 - }, -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aYd" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aYe" = ( -/obj/structure/bed/chair/comfy/black, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aYf" = ( -/obj/structure/coatrack, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aYg" = ( -/obj/structure/table/gamblingtable, -/obj/item/weapon/deck/cah/black, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aYh" = ( -/obj/structure/table/gamblingtable, -/obj/item/weapon/deck/cah, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aYi" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aYj" = ( -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/structure/table/woodentable, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aYk" = ( -/obj/structure/sign/department/bar{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aYl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aYm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aYn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aYo" = ( -/turf/simulated/wall, -/area/storage/primary) -"aYp" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/primary) -"aYq" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/storage/primary) -"aYr" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/sign/department/ass, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/storage/primary) -"aYs" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/primary) -"aYt" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/storage/art) -"aYu" = ( -/turf/simulated/wall, -/area/storage/art) -"aYv" = ( -/obj/machinery/door/airlock/glass{ - name = "Art Storage" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/art) -"aYw" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/storage/art) -"aYx" = ( -/turf/simulated/floor/carpet, -/area/hallway/primary/starboard) -"aYy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/hallway/primary/starboard) -"aYz" = ( -/turf/simulated/wall, -/area/hallway/primary/starboard) -"aYA" = ( -/turf/simulated/wall, -/area/storage/emergency_storage/emergency) -"aYB" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/int{ - name = "Emergency Storage"; - req_one_access = list() - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"aYC" = ( -/obj/structure/closet/crate, -/obj/item/weapon/tool/crowbar, -/turf/simulated/floor/tiled, -/area/teleporter) -"aYD" = ( -/obj/structure/closet/crate, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/teleporter) -"aYE" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/teleporter) -"aYF" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aYG" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aYH" = ( -/obj/machinery/teleport/hub, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aYI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/cargo{ - c_tag = "Trash Chute"; - dir = 4; - name = "security camera" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/disposals) -"aYJ" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort1" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/disposals) -"aYK" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/rust/color_rustedfull, -/obj/machinery/door/airlock/glass_external/public, -/turf/simulated/floor/tiled/old_tile/gray, -/area/borealis2/outdoors/exterior/explore1) -"aYL" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aYM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "Cell 1 Blastdoor"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/security_cell_hallway) -"aYN" = ( -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/structure/bed/padded, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"aYO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"aYP" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aYQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aYR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aYS" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aYT" = ( -/obj/structure/railing, -/turf/simulated/open, -/area/security/security_cell_hallway) -"aYU" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"aYV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 25; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aYW" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/security/briefing_room) -"aYX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Break Room" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/security/briefing_room) -"aYY" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aYZ" = ( -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/weapon/flame/candle, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"aZa" = ( -/turf/simulated/wall, -/area/crew_quarters/barrestroom) -"aZb" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"aZc" = ( -/obj/structure/sign/double/barsign, -/turf/simulated/wall, -/area/crew_quarters/bar) -"aZd" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"aZe" = ( -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/hallway/primary/central_one) -"aZh" = ( -/obj/structure/table/glass, -/turf/simulated/floor/carpet, -/area/hallway/primary/central_one) -"aZi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/hallway/primary/central_one) -"aZj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"aZk" = ( -/obj/machinery/requests_console{ - department = "Tool Storage"; - departmentType = 0; - pixel_y = 30 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/storage/primary) -"aZl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"aZm" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"aZn" = ( -/obj/machinery/camera/network/civilian{ - c_tag = "CIV - Primary Tool Storage"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"aZo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"aZp" = ( -/obj/machinery/vending/assist, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"aZq" = ( -/obj/structure/table/standard, -/obj/item/device/camera_film{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/device/camera_film{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/storage/art) -"aZr" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/fancy/crayons, -/obj/item/weapon/storage/fancy/crayons, -/turf/simulated/floor/tiled, -/area/storage/art) -"aZs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/storage/art) -"aZt" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/simulated/floor/tiled, -/area/storage/art) -"aZu" = ( -/obj/structure/table/standard, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"aZv" = ( -/obj/structure/table/glass, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/hallway/primary/starboard) -"aZw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"aZx" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/hallway/primary/starboard) -"aZy" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"aZz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"aZA" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"aZB" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aZC" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aZD" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aZE" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aZF" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aZG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/disposals) -"aZH" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "packageSort1" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor{ - dir = 1 - }, -/area/quartermaster/disposals) -"aZI" = ( -/turf/simulated/wall, -/area/quartermaster/warehouse) -"aZJ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aZK" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aZL" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aZM" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aZN" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"aZO" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aZP" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aZQ" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aZR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"aZS" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"aZT" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Cell 1 Blastdoor"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 8; - id = "Cell 1"; - name = "Cell 1"; - req_access = list(2) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"aZU" = ( -/obj/machinery/button/remote/blast_door{ - id = "Cell 1 Blastdoor"; - name = "Cell 1 Door"; - pixel_x = -32; - pixel_y = 28; - req_access = list(2) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door_timer/cell_3{ - id = "Cell 1"; - name = "Cell 1"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"aZV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aZW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aZX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"aZY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"aZZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"baa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"bab" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"bac" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"bad" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_cell_hallway) -"bae" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"baf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"bag" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"bah" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"bai" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"baj" = ( -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"bak" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"bal" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"bam" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"ban" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"bao" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"bap" = ( -/turf/simulated/wall/r_wall, -/area/security/brig) -"baq" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/bar) -"bar" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/barrestroom) -"bas" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bat" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 26 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bau" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bav" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"baw" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bax" = ( -/turf/simulated/floor/plating, -/area/crew_quarters/barrestroom) -"bay" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"baz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"baA" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"baB" = ( -/obj/structure/table/glass, -/obj/machinery/light, -/turf/simulated/floor/carpet, -/area/hallway/primary/central_one) -"baC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"baD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"baE" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 8; - listening = 1; - name = "Common Channel"; - pixel_x = -21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"baF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"baG" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"baH" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"baI" = ( -/obj/machinery/vending/tool, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"baJ" = ( -/obj/structure/table/standard, -/obj/item/device/camera, -/obj/item/device/camera{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/storage/art) -"baK" = ( -/turf/simulated/floor/tiled, -/area/storage/art) -"baL" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/storage/art) -"baM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"baN" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/hand_labeler, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"baO" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/hallway/primary/starboard) -"baP" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"baQ" = ( -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"baR" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"baS" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"baT" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/box/cups, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"baU" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Delivery Office"; - req_access = list(50); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/disposals) -"baV" = ( -/obj/structure/sign/warning/mail_delivery, -/turf/simulated/wall, -/area/quartermaster/disposals) -"baW" = ( -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/rust, -/obj/structure/window/reinforced/tinted, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/disposals) -"baX" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"baY" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/module/power_control, -/obj/item/weapon/cell{ - maxcharge = 2000 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"baZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bba" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bbb" = ( -/obj/structure/closet/crate/medical, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bbc" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"bbd" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bbe" = ( -/turf/simulated/shuttle/wall, -/area/shuttle/prison/prison) -"bbf" = ( -/obj/structure/shuttle/window, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/shuttle/prison/prison) -"bbg" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bbh" = ( -/turf/simulated/wall/r_wall, -/area/security/labor) -"bbi" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Labor Camp dock"; - req_access = list(1) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/labor) -"bbj" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/security/labor) -"bbk" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/labor) -"bbl" = ( -/obj/machinery/button/remote/blast_door{ - id = "Cell 3 Blastdoor"; - name = "Cell 3 Door"; - pixel_x = -1; - pixel_y = -28; - req_access = list(2) - }, -/obj/machinery/door_timer/cell_3{ - pixel_x = -32 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bbm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bbn" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bbo" = ( -/obj/machinery/door_timer/cell_3{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bbp" = ( -/obj/machinery/button/remote/blast_door{ - id = "Cell 2 Blastdoor"; - name = "Cell 2 Door"; - pixel_x = -1; - pixel_y = -28; - req_access = list(2) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/camera/network/security{ - c_tag = "SEC - Cell Hallway"; - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bbq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bbr" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bbs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"bbt" = ( -/obj/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"bbu" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/red, -/obj/machinery/camera/network/security{ - c_tag = "Security Brig Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"bbv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"bbw" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"bbx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"bby" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"bbz" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/sec{ - name = "Security Maintenance"; - req_access = list(1,12) - }, -/turf/simulated/floor, -/area/security/brig) -"bbA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/security) -"bbB" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/sec{ - name = "Security Maintenance"; - req_access = list(1,12) - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/security/security_bathroom) -"bbC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bbD" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bbE" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bbF" = ( -/obj/structure/curtain/open/shower/security, -/obj/machinery/shower, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bbG" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bbH" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bbI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bbJ" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bbK" = ( -/turf/simulated/wall, -/area/security/lobby) -"bbL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Security Lobby" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/security/lobby) -"bbM" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/security/lobby) -"bbN" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/security/lobby) -"bbO" = ( -/turf/simulated/wall, -/area/hallway/primary/aft) -"bbP" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bbQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bbR" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/ai_status_display{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"bbS" = ( -/turf/simulated/floor/tiled, -/area/storage/primary) -"bbT" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/storage/primary) -"bbU" = ( -/obj/machinery/lapvend, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"bbV" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/weapon/pen/red{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"bbW" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/weapon/tape_roll{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/tape_roll, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"bbX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"bbY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"bbZ" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/device/taperecorder, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"bca" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/carpet, -/area/hallway/primary/starboard) -"bcb" = ( -/obj/structure/table/glass, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet, -/area/hallway/primary/starboard) -"bcc" = ( -/obj/structure/closet/firecloset/full/double, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"bcd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"bce" = ( -/obj/structure/table/standard, -/obj/item/device/t_scanner, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/random/maintenance/cargo, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"bcf" = ( -/obj/structure/table/bench/padded, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bcg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bch" = ( -/obj/structure/table/bench/padded, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bci" = ( -/obj/structure/table/bench/padded, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bcj" = ( -/obj/structure/flora/pottedplant/largebush, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bck" = ( -/obj/structure/sign/department/mail, -/turf/simulated/wall, -/area/quartermaster/delivery) -"bcl" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bcm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/camera/network/cargo{ - c_tag = "Delivery office" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bcn" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bco" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bcp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bcq" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/structure/disposalpipe/sortjunction/wildcard, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bcr" = ( -/turf/simulated/wall, -/area/quartermaster/delivery) -"bcs" = ( -/obj/machinery/camera/network/cargo{ - c_tag = "CRG - Cargo Warehouse"; - dir = 4; - name = "security camera" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bct" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"bcu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bcv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bcw" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bcx" = ( -/turf/simulated/shuttle/floor/red, -/area/shuttle/prison/prison) -"bcy" = ( -/turf/simulated/wall, -/area/security/labor) -"bcz" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southleft{ - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"bcA" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"bcB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"bcC" = ( -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"bcD" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"bcE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "Cell 3 Blastdoor"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/security/security_cell_hallway) -"bcF" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Cell 3 Blastdoor"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/window/brigdoor/southleft{ - id = "Cell 3"; - name = "Cell 3"; - req_access = list(2) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bcG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "Cell 2 Blastdoor"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/security/security_cell_hallway) -"bcH" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Cell 2 Blastdoor"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/window/brigdoor/southleft{ - id = "Cell 2"; - name = "Cell 2"; - req_access = list(2) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bcI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/security{ - name = "Interrogation Observation"; - req_access = list(63) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/interrogation) -"bcJ" = ( -/turf/simulated/wall, -/area/security/interrogation) -"bcK" = ( -/obj/structure/sign/department/interrogation, -/turf/simulated/wall, -/area/security/interrogation) -"bcL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access = list(63) - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bcM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bcN" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bcO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bcP" = ( -/turf/simulated/wall/r_wall, -/area/security/hallway) -"bcQ" = ( -/turf/simulated/wall, -/area/security/security_bathroom) -"bcR" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bcS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bcT" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bcU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bcV" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bcW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/toilet{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bcX" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bcY" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/barrestroom) -"bcZ" = ( -/turf/simulated/wall/r_wall, -/area/security/lobby) -"bda" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"bdb" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/security/lobby) -"bdc" = ( -/obj/structure/table/standard, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/security_space_law, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"bdd" = ( -/obj/structure/closet, -/obj/random/maintenance/security, -/obj/random/contraband, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/hallway/primary/aft) -"bde" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bdf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bdg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"bdh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"bdi" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"bdj" = ( -/obj/machinery/door/airlock/glass{ - name = "Art Storage" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/art) -"bdk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/hallway/primary/starboard) -"bdl" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/int{ - name = "Emergency Storage"; - req_one_access = list() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/storage/emergency_storage/emergency) -"bdm" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bdn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bdo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bdp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bdq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bdr" = ( -/obj/machinery/door/airlock/glass_mining{ - id_tag = "cargodoor"; - name = "Cargo Office"; - req_access = list(31); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/delivery) -"bds" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bdt" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bdu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bdv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bdw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bdx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bdy" = ( -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "qm_warehouse"; - name = "Warehouse Shutters" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/delivery) -"bdz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bdA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bdB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bdC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bdD" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bdE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/shuttle/floor/red, -/area/shuttle/prison/prison) -"bdF" = ( -/obj/machinery/door/unpowered/shuttle, -/obj/structure/fans/tiny{ - name = "Thermal Regulator Vent" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/prison/prison) -"bdG" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external{ - locked = 1 - }, -/turf/simulated/floor/plating/snow/plating, -/area/security/labor) -"bdH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/labor) -"bdI" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/labor) -"bdJ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external, -/turf/snow/drift{ - dir = 4 - }, -/area/security/labor) -"bdK" = ( -/obj/machinery/suit_cycler/security{ - req_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"bdL" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bdM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bdN" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"bdO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bdP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bdQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bdR" = ( -/obj/structure/bed/chair, -/obj/machinery/camera/network/interrogation, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bdS" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bdT" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bdU" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bdV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bdW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bdX" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bdY" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bdZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"bea" = ( -/obj/structure/curtain/open/shower/security, -/obj/machinery/shower{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/security_bathroom) -"beb" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bec" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bed" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "BrigFoyer"; - layer = 2.8; - name = "Security Wing"; - req_access = list(63) - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/red, -/area/security/lobby) -"bee" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/lobby) -"bef" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"beg" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/security/lobby) -"beh" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/sunglasses{ - desc = "My vision is augmented"; - icon_state = "sun"; - name = "Augmented shades" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/aft) -"bei" = ( -/obj/machinery/computer/timeclock/premade/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bej" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bek" = ( -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bel" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/primary) -"bem" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"ben" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"beo" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bep" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"beq" = ( -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"ber" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bes" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bet" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"beu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bev" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bew" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bex" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bey" = ( -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bez" = ( -/obj/machinery/door/airlock/glass_mining{ - id_tag = "cargodoor"; - name = "Cargo Office"; - req_access = list(31); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/delivery) -"beA" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"beB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"beC" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"beD" = ( -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"beE" = ( -/obj/machinery/button/remote/blast_door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = 26; - pixel_y = -6; - req_access = list(31) - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"beF" = ( -/obj/machinery/button/remote/blast_door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -26; - pixel_y = -6; - req_access = list(31) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"beG" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"beH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"beI" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"beJ" = ( -/obj/effect/floor_decal/rust/color_rustedfull, -/obj/machinery/door/airlock/glass_external/freezable, -/turf/simulated/floor/tiled/old_tile/gray, -/area/borealis2/outdoors/exterior/explore1) -"beK" = ( -/obj/structure/grille, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"beL" = ( -/obj/machinery/door/unpowered/shuttle, -/turf/simulated/shuttle/floor, -/area/shuttle/prison/prison) -"beM" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/box/trackimp, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"beN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"beO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"beP" = ( -/obj/structure/closet/secure_closet/brig, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"beQ" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/obj/machinery/camera/network/prison{ - c_tag = "Brig Cell 3"; - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"beR" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"beS" = ( -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/structure/bed/padded, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"beT" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/machinery/camera/network/prison{ - c_tag = "Prison Visitation"; - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"beU" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/structure/bed/padded, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) -"beV" = ( -/obj/item/device/radio/intercom/interrogation{ - dir = 8; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/interrogation{ - c_tag = "Interrogation Viewing"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"beW" = ( -/obj/machinery/computer/security/telescreen{ - layer = 4; - name = "Observation Screen"; - network = list("Interrogation"); - pixel_x = 34; - pixel_y = 0 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"beX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"beY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/obj/item/device/taperecorder, -/obj/item/device/radio/intercom/interrogation{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"beZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bfa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access = list(63) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bfb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bfc" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bfd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bfe" = ( -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bff" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bfg" = ( -/turf/simulated/wall/r_wall, -/area/security/security_bathroom) -"bfh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/security{ - name = "Equipment Cleaning" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/security_bathroom) -"bfi" = ( -/turf/simulated/wall, -/area/security/hallway) -"bfj" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/security/hallway) -"bfk" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"bfl" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/donut, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"bfm" = ( -/obj/structure/cable/heavyduty, -/obj/structure/cable/orange{ - icon_state = "0-1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/workshop) -"bfn" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"bfo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bfp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bfq" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "BrigFoyer"; - layer = 2.8; - name = "Security Wing"; - req_access = list(63) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/red, -/area/security/lobby) -"bfr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/lobby) -"bfs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/lobby) -"bft" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Lobby"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/lobby) -"bfu" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/storage/vest/hoscoat/jensen{ - armor = list("melee" = 30, "bullet" = 20, "laser" = 20, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); - desc = "Its an old dusty trenchcoat...what a shame"; - name = "Trenchcoat" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/aft) -"bfv" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bfw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bfx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bfy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfL" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bfN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bfO" = ( -/obj/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bfP" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bfQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bfR" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bfS" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Mailing Room"; - req_access = list(50) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bfT" = ( -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bfU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bfV" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bfW" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bfX" = ( -/obj/machinery/button/remote/blast_door{ - id = "warehouse"; - name = "Warehouse Door Control"; - pixel_x = -26; - pixel_y = -38; - req_access = list(31) - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bfY" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"bfZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"bga" = ( -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"bgb" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"bgc" = ( -/turf/simulated/shuttle/floor, -/area/shuttle/prison/prison) -"bgd" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/coin/iron, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"bge" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"bgf" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/camera/network/security{ - c_tag = "Security Labor Transfer"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"bgg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bgh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bgi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bgj" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bgk" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) -"bgl" = ( -/obj/structure/table/standard, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bgm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bgn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bgo" = ( -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bgp" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bgq" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bgr" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bgs" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bgt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bgu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bgv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bgw" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/clothing/glasses/welding, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/camera/network/research, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/computer/guestpass{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel, -/area/rnd/lab) -"bgx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bgy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"bgz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/main) -"bgA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bgB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bgC" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"bgD" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/security/lobby) -"bgE" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 1; - name = "Secure Door" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bgF" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor/southright{ - dir = 1; - name = "Secure Door" - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bgG" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/security/lobby) -"bgH" = ( -/obj/structure/symbol/ca, -/turf/simulated/wall, -/area/hallway/primary/aft) -"bgI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bgJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bgK" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bgL" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bgM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bgN" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bgO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bgP" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bgQ" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bgR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bgS" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bgT" = ( -/turf/simulated/wall, -/area/assembly/robotics) -"bgU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bgV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bgW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bgX" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bgY" = ( -/obj/machinery/computer/supplycomp{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"bgZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/quartermaster/delivery) -"bha" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/camera/network/cargo{ - dir = 4; - name = "security camera" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bhb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bhc" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bhd" = ( -/obj/structure/table/steel, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bhe" = ( -/obj/structure/table/steel, -/obj/item/weapon/wrapping_paper, -/obj/item/weapon/wrapping_paper, -/obj/item/weapon/wrapping_paper, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bhf" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) -"bhg" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"bhh" = ( -/obj/structure/closet/crate/internals, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"bhi" = ( -/obj/structure/closet/crate/freezer, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"bhj" = ( -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bhk" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bhl" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bhm" = ( -/obj/effect/floor_decal/snow/floor/edges3, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"bhn" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/prison/prison) -"bho" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/security/labor) -"bhp" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/security/labor) -"bhq" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/labor) -"bhr" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/storage/tech) -"bhs" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/analyzer, -/obj/item/device/analyzer, -/turf/simulated/floor/plating, -/area/storage/tech) -"bht" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/circuitboard/autolathe, -/obj/item/weapon/circuitboard/partslathe, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor, -/area/storage/tech) -"bhu" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/unary_atmos/heater, -/obj/item/weapon/circuitboard/unary_atmos/cooler{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bhv" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/capacitor, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bhw" = ( -/obj/machinery/vending/assist, -/turf/simulated/floor, -/area/storage/tech) -"bhx" = ( -/turf/simulated/wall/r_wall, -/area/storage/tech) -"bhy" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hos) -"bhz" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Hallway Port"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bhA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bhB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bhC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bhD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bhE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bhF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bhG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bhH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bhI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Hallway Center"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bhJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bhK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bhL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bhM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bhN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bhO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bhP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bhQ" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bhR" = ( -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the brig foyer."; - id = "BrigFoyer"; - name = "Brig Foyer Doors"; - pixel_x = -6; - pixel_y = 26; - req_access = list(63) - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bhS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bhT" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bhU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bhV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bhW" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bhX" = ( -/turf/simulated/wall, -/area/rnd/lab) -"bhY" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/rnd/lab) -"bhZ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"bia" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - name = "Robotics Desk"; - req_access = list(29) - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bib" = ( -/obj/machinery/computer/rdconsole/robotics, -/obj/machinery/alarm{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bic" = ( -/obj/item/weapon/book/manual/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bid" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bie" = ( -/turf/simulated/floor/plating, -/area/hallway/primary/starboard) -"bif" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"big" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bih" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bii" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bij" = ( -/obj/structure/sign/department/cargo, -/turf/simulated/wall, -/area/quartermaster/office) -"bik" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"bil" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Mailing Room"; - req_access = list(50) - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bim" = ( -/turf/simulated/wall, -/area/quartermaster/office) -"bin" = ( -/obj/machinery/door/airlock/glass_mining{ - id_tag = "cargodoor"; - name = "Cargo Office"; - req_access = list(31); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/office) -"bio" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "warehouse"; - name = "Warehouse Shutters" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/warehouse) -"bip" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "warehouse"; - name = "Warehouse Shutters" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/warehouse) -"biq" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bir" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/flamp/noshade, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bis" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bit" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"biu" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/light/flamp/noshade, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"biv" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 9 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"biw" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"bix" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"biy" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/prison/prison) -"biz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/storage/tech) -"biA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/storage/tech) -"biB" = ( -/turf/simulated/floor, -/area/storage/tech) -"biC" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/storage/tech) -"biD" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/bag/circuits/basic, -/turf/simulated/floor, -/area/storage/tech) -"biE" = ( -/turf/simulated/floor/plating, -/area/storage/tech) -"biF" = ( -/obj/structure/flora/pottedplant/crystal, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"biG" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/item/clothing/accessory/permit/gun, -/obj/item/clothing/accessory/permit/gun, -/obj/item/clothing/accessory/permit/gun, -/obj/item/clothing/accessory/permit/gun, -/obj/item/clothing/accessory/permit/gun, -/obj/item/weapon/paper{ - desc = ""; - info = "In the event that more weapon permits are needed, please fax Central Command to request more. Please also include a reason for the request. Blank permits will be shipped to cargo for pickup. If long-term permits are desired, please contact your NanoTrasen Employee Representitive for more information."; - name = "note from CentCom about permits" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"biH" = ( -/obj/item/modular_computer/console/preset/command, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"biI" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"biJ" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"biK" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"biL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "hos" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "hos" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "hos" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "hos" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hos) -"biM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"biN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/hallway) -"biO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/hallway) -"biP" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/security/hallway) -"biQ" = ( -/turf/simulated/wall, -/area/security/security_processing) -"biR" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Security Processing"; - req_access = list(1) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/security_processing) -"biS" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/security_processing) -"biT" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/security_processing) -"biU" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/security_processing) -"biV" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Firing Range"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"biW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"biX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"biY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"biZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/security/main) -"bja" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bjb" = ( -/obj/machinery/door/window/brigdoor/westleft{ - name = "Security Checkpoint"; - req_access = list(1) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bjc" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bjd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bje" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bjf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bjg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bjh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bji" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bjj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bjk" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bjl" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"bjm" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"bjn" = ( -/obj/machinery/r_n_d/protolathe, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"bjo" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bjp" = ( -/obj/machinery/computer/supplycomp/control{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bjq" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/pen, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bjr" = ( -/obj/item/weapon/stock_parts/console_screen, -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bjs" = ( -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/obj/item/device/flash, -/obj/item/device/flash, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bjt" = ( -/obj/item/weapon/stool/padded, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bju" = ( -/obj/structure/closet{ - name = "materials" - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bjv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/mecha_part_fabricator, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bjw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/pros_fabricator, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bjx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/device/robotanalyzer, -/obj/item/device/robotanalyzer, -/obj/item/device/mmi/digital/posibrain, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bjy" = ( -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bjz" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bjA" = ( -/obj/structure/reagent_dispensers/acid{ - density = 0; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/chargebay) -"bjB" = ( -/turf/simulated/wall, -/area/assembly/chargebay) -"bjC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bjD" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bjE" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 8; - listening = 1; - name = "Common Channel"; - pixel_x = -21; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bjF" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bjG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bjH" = ( -/obj/structure/bed/chair{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"bjI" = ( -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/structure/table/standard, -/obj/item/weapon/stamp/cargo, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bjJ" = ( -/obj/machinery/camera/network/cargo, -/obj/structure/flora/pottedplant/xmas, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bjK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bjL" = ( -/obj/machinery/status_display/supply_display, -/turf/simulated/wall, -/area/quartermaster/office) -"bjM" = ( -/obj/machinery/navbeacon/delivery/south{ - location = "QM #2" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bjN" = ( -/obj/machinery/navbeacon/delivery/south{ - location = "QM #3" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bjO" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bjP" = ( -/obj/machinery/button/remote/blast_door{ - id = "warehouse"; - name = "Warehouse Door Control"; - pixel_x = 6; - pixel_y = 26; - req_access = list(31) - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bjQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bjR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bjS" = ( -/obj/structure/closet/emcloset, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bjT" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/weapon/stamp/cargo, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/cargo, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bjU" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/weapon/storage/backpack/dufflebag, -/obj/item/weapon/stamp/cargo, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/cargo, -/obj/item/clothing/shoes/boots/winter/supply{ - name = "cargo snow boots" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bjV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bjW" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bjX" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/supply/station) -"bjY" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bjZ" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/shuttle/prison/prison) -"bka" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/hallway/secondary/exit) -"bkb" = ( -/turf/simulated/wall/r_wall, -/area/storage/secure) -"bkc" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/storage/tech) -"bkd" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/weapon/circuitboard/transhuman_synthprinter{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/weapon/circuitboard/rdconsole{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/destructive_analyzer, -/obj/item/weapon/circuitboard/protolathe{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/rdserver{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/storage/tech) -"bke" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/arcade/orion_trail{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/jukebox{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/circuitboard/message_monitor{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/arcade/battle{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bkf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/storage/tech) -"bkg" = ( -/obj/structure/table/steel, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5; - pixel_y = 0 - }, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = 5; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/storage/tech) -"bkh" = ( -/obj/structure/closet/secure_closet/hos, -/obj/item/clothing/suit/space/void/security/fluff/hos{ - armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10); - species_restricted = null - }, -/obj/item/clothing/head/helmet/space/void/security/fluff/hos{ - armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10); - species_restricted = null - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bki" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bkj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bkk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bkl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bkm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - id_tag = "HoSdoor"; - name = "Head of Security"; - req_access = list(58) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/hos) -"bkn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bko" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bkp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "HoS Office"; - sortType = "HoS Office" - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"bkq" = ( -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"bkr" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/security/security_processing) -"bks" = ( -/obj/structure/table/steel, -/obj/item/device/camera, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bkt" = ( -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"bku" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bkv" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bkw" = ( -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/item/device/megaphone, -/obj/item/weapon/packageWrap, -/obj/item/weapon/storage/box, -/obj/item/weapon/hand_labeler, -/obj/item/device/universal_translator, -/obj/item/device/radio/intercom{ - pixel_y = 24; - req_access = list() - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bkx" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bky" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"bkz" = ( -/obj/machinery/requests_console/preset/security, -/turf/simulated/wall, -/area/security/security_processing) -"bkA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bkB" = ( -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bkC" = ( -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bkD" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Hallway Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bkE" = ( -/obj/machinery/papershredder, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"bkF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/main) -"bkG" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/donut, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/cable/green, -/obj/item/device/retail_scanner/security{ - name = "fine payment scanner" - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bkH" = ( -/obj/structure/table/steel, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/obj/item/device/radio{ - pixel_x = -4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio/intercom/department/security{ - dir = 4; - icon_state = "secintercom"; - pixel_x = 24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"bkI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bkJ" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bkK" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"bkL" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"bkM" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"bkN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/lab) -"bkO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bkP" = ( -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bkQ" = ( -/obj/item/weapon/folder/white, -/obj/structure/table/standard, -/obj/item/weapon/disk/tech_disk{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/disk/tech_disk{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/disk/design_disk, -/obj/item/weapon/disk/design_disk, -/obj/item/weapon/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/requests_console/preset/research{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/steel, -/area/rnd/lab) -"bkR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bkS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bkT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bkU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bkV" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bkW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bkX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bkY" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/techmaint, -/area/assembly/chargebay) -"bkZ" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bla" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/plating, -/area/assembly/chargebay) -"blb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/chargebay) -"blc" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bld" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"ble" = ( -/obj/machinery/door/airlock/glass_mining{ - id_tag = "cargodoor"; - name = "Cargo Office"; - req_access = list(31); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/office) -"blf" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"blg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"blh" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bli" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"blj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"blk" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bll" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"blm" = ( -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bln" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/explore1) -"blo" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/shuttle/prison/prison) -"blp" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/robotics{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/mecha_control{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/secure) -"blq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/secure) -"blr" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/security/mining{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/autolathe, -/obj/item/weapon/circuitboard/scan_consolenew{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/storage/tech) -"bls" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/secure_data{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/security{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/skills{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/storage/tech) -"blt" = ( -/obj/structure/table/steel, -/obj/item/device/aicard, -/obj/item/weapon/aiModule/reset, -/turf/simulated/floor, -/area/storage/tech) -"blu" = ( -/obj/structure/closet/secure_closet/hos2, -/obj/machinery/camera/network/security{ - c_tag = "Head of Security"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"blv" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"blw" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/skills{ - dir = 8; - pixel_y = 4 - }, -/obj/item/clothing/accessory/permit/gun{ - desc = "An example of a card indicating that the owner is allowed to carry a firearm. There's a note saying to fax CentCom if you want to order more blank permits."; - name = "sample weapon permit"; - owner = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"blx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"bly" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"blz" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"blA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) -"blB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"blC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"blD" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Security Processing"; - req_access = list(1) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/security_processing) -"blE" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"blF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"blG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"blH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"blI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"blJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Security Processing"; - req_access = list(1) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/security_processing) -"blK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"blL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"blM" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/donut, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"blN" = ( -/turf/simulated/wall, -/area/security/detectives_office) -"blO" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"blP" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "detdoor"; - name = "Detective"; - req_access = list(4) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"blQ" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/button/windowtint{ - id = "detectivetint"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"blR" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "detectivetint" - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"blS" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "detectivetint" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"blT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"blU" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"blV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/cash_register/science, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/lab) -"blW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/lab) -"blX" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/lab) -"blY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"blZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bma" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bmb" = ( -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bmc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bmd" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bme" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bmf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bmg" = ( -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bmh" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bmi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/button/remote/blast_door{ - id = "mechbay"; - name = "Mechbay Door"; - pixel_x = -30 - }, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bmj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/starboard) -"bmk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bml" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bmm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bmn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bmo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bmp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bmq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bmr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bms" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access = list(31); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/office) -"bmt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bmu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bmv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bmw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bmx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bmy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bmz" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bmA" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "QMLoad2" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bmB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bmC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bmD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bmE" = ( -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior) -"bmF" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bmG" = ( -/obj/structure/railing, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bmH" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bmI" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/crew{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/card{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/communications{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/secure) -"bmJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/storage/secure) -"bmK" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access = list(19,23); - req_one_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/storage/secure) -"bmL" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/storage/tech) -"bmM" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/transhuman_clonepod{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/resleeving_control{ - pixel_x = 0; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/body_designer{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/med_data{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bmN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/storage/tech) -"bmO" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/powermonitor{ - pixel_x = 0; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/stationalert_engineering{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/security/engineering{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/atmos_alert{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bmP" = ( -/obj/structure/table/steel, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor, -/area/storage/tech) -"bmQ" = ( -/obj/structure/filingcabinet, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bmR" = ( -/obj/machinery/button/remote/airlock{ - id = "HoSdoor"; - name = "Office Door"; - pixel_x = 36; - pixel_y = -26 - }, -/obj/machinery/button/windowtint{ - id = "hos"; - pixel_x = 26; - pixel_y = -30; - req_access = list(58) - }, -/obj/machinery/button/remote/blast_door{ - id = "security_lockdown"; - name = "Brig Lockdown"; - pixel_x = 36; - pixel_y = -39; - req_access = list(2) - }, -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"bmS" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/stamp/hos, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"bmT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"bmU" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bmV" = ( -/turf/simulated/wall, -/area/security/security_lockerroom) -"bmW" = ( -/obj/machinery/door/airlock/security{ - name = "Security Locker Room"; - req_access = list(1) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"bmX" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/security/security_lockerroom) -"bmY" = ( -/obj/structure/table/steel, -/obj/item/device/taperecorder, -/obj/item/weapon/storage/box/evidence, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bmZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"bna" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/medical/psych) -"bnb" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"bnc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"bnd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"bne" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Security Processing"; - req_access = list(1) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/security_processing) -"bnf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bng" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/main) -"bnh" = ( -/obj/structure/table/standard, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/main) -"bni" = ( -/obj/machinery/computer/secure_data/detective_computer{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/forensics) -"bnj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bnk" = ( -/obj/structure/bookcase, -/obj/item/weapon/book/manual/security_space_law, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bnl" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/machinery/camera/network/security{ - c_tag = "Detective" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bnm" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/photo_album{ - pixel_y = -10 - }, -/obj/item/device/camera_film, -/obj/item/device/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detectives camera"; - pictures_left = 30; - pixel_x = 2; - pixel_y = 3 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bnn" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"bno" = ( -/obj/effect/landmark/start{ - name = "Detective" - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"bnp" = ( -/obj/structure/table/woodentable, -/obj/item/device/taperecorder{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "detectivetint" - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"bnq" = ( -/obj/item/weapon/stool, -/turf/simulated/floor/tiled/steel, -/area/security/detectives_office) -"bnr" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Research and Development Desk"; - req_access = list(7) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bns" = ( -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bnt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bnu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/rnd/lab) -"bnv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bnw" = ( -/turf/simulated/floor/tiled/steel, -/area/rnd/lab) -"bnx" = ( -/obj/structure/noticeboard{ - pixel_y = 27 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westright{ - req_access = list(7) - }, -/obj/machinery/door/window/eastright{ - req_access = list(7) - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bny" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bnz" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bnA" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bnB" = ( -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/weapon/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/weapon/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"bnC" = ( -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"bnD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bnE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access = list(29,47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"bnF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bnG" = ( -/obj/structure/table/standard, -/obj/item/weapon/material/ashtray/glass, -/obj/machinery/newscaster{ - pixel_x = -28; - pixel_y = 32 - }, -/obj/item/weapon/deck/cards, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bnH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bnI" = ( -/obj/machinery/autolathe, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bnJ" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/item/device/multitool, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bnK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bnL" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access = list(31); - req_one_access = list() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/office) -"bnM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bnN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bnO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bnP" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bnQ" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bnR" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/simulated/floor, -/area/quartermaster/storage) -"bnS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_bay_door"; - locked = 1; - name = "Cargo Docking Hatch" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bnT" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/borgupload{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/aiupload{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/transhuman_resleever{ - pixel_x = 5; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/secure) -"bnU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/secure) -"bnV" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor, -/area/storage/tech) -"bnW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/storage/tech) -"bnX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/storage/tech) -"bnY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/storage/tech) -"bnZ" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/device/multitool, -/turf/simulated/floor, -/area/storage/tech) -"boa" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/red_hos, -/obj/item/weapon/pen/multi, -/obj/machinery/keycard_auth{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bob" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"boc" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - dir = 2; - pixel_x = -10; - pixel_y = 12 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"bod" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"boe" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bof" = ( -/obj/machinery/recharger/wallcharger{ - pixel_y = 32 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/obj/item/device/holowarrant, -/obj/item/device/holowarrant, -/obj/item/device/holowarrant, -/obj/item/device/holowarrant, -/obj/item/device/holowarrant, -/turf/simulated/floor/tiled/steel, -/area/security/security_lockerroom) -"bog" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_lockerroom) -"boh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/security_lockerroom) -"boi" = ( -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_lockerroom) -"boj" = ( -/obj/structure/closet/wardrobe/red, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/item/clothing/suit/storage/toggle/yw/secjacket, -/obj/item/clothing/suit/storage/toggle/yw/secjacket, -/obj/item/clothing/suit/storage/toggle/yw/secjacket, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"bok" = ( -/obj/structure/table/steel, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/folder/red{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/weapon/folder/red, -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bol" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/vending/security/yw, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"bom" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bon" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"boo" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bop" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"boq" = ( -/turf/simulated/wall, -/area/security/evidence_storage) -"bor" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/pink{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"bos" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bot" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bou" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bov" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bow" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"box" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"boy" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "detectivetint" - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"boz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"boA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"boB" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"boC" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/rnd/lab) -"boD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"boE" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/structure/closet/wardrobe/science_white, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"boF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/computer/transhuman/resleeving, -/obj/item/weapon/book/manual/resleeving, -/obj/item/weapon/storage/box/backup_kit, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"boG" = ( -/obj/machinery/transhuman/synthprinter, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"boH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/transhuman/resleever, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"boI" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"boJ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Robotics"; - dir = 8; - network = list("Research") - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"boK" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/starboard) -"boL" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"boM" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"boN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"boO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"boP" = ( -/obj/structure/table/standard, -/obj/item/device/retail_scanner/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"boQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/folder/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"boR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"boS" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"boT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/engine, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"boU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"boV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"boW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"boX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"boY" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"boZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bpa" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_bay_door"; - locked = 1; - name = "Cargo Docking Hatch" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bpb" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_bay_door"; - locked = 1; - name = "Cargo Docking Hatch" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bpc" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"bpd" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"bpe" = ( -/obj/structure/table/steel, -/obj/item/weapon/module/power_control, -/obj/item/weapon/airlock_electronics, -/obj/machinery/light/small, -/turf/simulated/floor, -/area/storage/tech) -"bpf" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/yellow, -/obj/item/device/t_scanner, -/obj/item/clothing/glasses/meson, -/obj/item/device/multitool, -/turf/simulated/floor/plating, -/area/storage/tech) -"bpg" = ( -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/structure/table/steel, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bph" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/storage/tech) -"bpi" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/storage/tech) -"bpj" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Security" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bpk" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bpl" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/item/device/radio/intercom/department/security{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bpm" = ( -/obj/structure/table/woodentable, -/obj/item/device/radio/off, -/obj/item/device/megaphone, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bpn" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bpo" = ( -/mob/living/simple_mob/animal/giant_spider{ - desc = "The HoS's pet spider Lorenzo. He seems to have a piece of grey fabric in his mouth."; - faction = "neutral"; - name = "Lorenzo" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"bpp" = ( -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = -26; - pixel_y = 0 - }, -/obj/item/weapon/storage/box/nifsofts_security, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"bpq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_lockerroom) -"bpr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_lockerroom) -"bps" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_lockerroom) -"bpt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bpu" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/item/device/radio/intercom/department/security{ - dir = 8; - icon_state = "secintercom"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bpv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Processing"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"bpw" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"bpx" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/security_processing) -"bpy" = ( -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_access = list(1) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"bpz" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bpA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bpB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bpC" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "detdoor"; - name = "Secure Evidence Storage"; - req_access = list(4) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bpD" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bpE" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bpF" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bpG" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bpH" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bpI" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bpJ" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "detdoor"; - name = "Detective"; - req_access = list(4) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bpK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bpL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction/wildcard/flipped{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bpM" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bpN" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/obj/item/device/gps/science, -/obj/item/device/gps/science, -/obj/item/clothing/shoes/boots/winter/science, -/obj/item/clothing/shoes/boots/winter/science, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bpO" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bpP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Unlocked Autolathe" - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bpQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bpR" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"bpS" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/assembly/robotics) -"bpT" = ( -/obj/structure/closet/wardrobe/robotics_black, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science, -/turf/simulated/floor/tiled/steel_dirty, -/area/assembly/robotics) -"bpU" = ( -/obj/structure/closet/wardrobe/robotics_black, -/obj/effect/floor_decal/rust, -/obj/random/maintenance/research, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science, -/turf/simulated/floor/tiled/steel_dirty, -/area/assembly/robotics) -"bpV" = ( -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bpW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bpX" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bpY" = ( -/obj/machinery/computer/operating{ - name = "Robotics Operating Computer" - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bpZ" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bqa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bqb" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bqc" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bqd" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/belt/utility, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bqe" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bqf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bqg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bqh" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bqi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bqj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bqk" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "cargo_bay"; - layer = 3.3; - name = "cargo bay hatch controller"; - pixel_x = 30; - pixel_y = 0; - req_one_access = list(13,31); - tag_door = "cargo_bay_door" - }, -/obj/machinery/camera/network/cargo{ - dir = 9; - c_tag = "CRG - Mining Airlock" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bql" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bqm" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior) -"bqn" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior) -"bqo" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/light/flamp/noshade, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior) -"bqp" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 9 - }, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"bqq" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access = list(23); - req_one_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/storage/tech) -"bqr" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access = list(23); - req_one_access = newlist() - }, -/turf/simulated/floor/plating, -/area/storage/tech) -"bqs" = ( -/turf/simulated/wall/r_wall, -/area/engineering/workshop) -"bqt" = ( -/turf/simulated/wall/r_wall, -/area/security/security_lockerroom) -"bqu" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/industrial/outline, -/obj/item/clothing/suit/armor/vest/wolftaur, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"bqv" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"bqw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"bqx" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"bqy" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/industrial/outline, -/obj/item/clothing/suit/armor/vest/wolftaur, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"bqz" = ( -/turf/simulated/floor/plating, -/area/security/security_processing) -"bqA" = ( -/turf/simulated/wall/r_wall, -/area/security/security_processing) -"bqB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bqC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bqD" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bqE" = ( -/turf/simulated/wall, -/area/security/forensics) -"bqF" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/storage/box/evidence, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/storage/briefcase/crimekit, -/obj/item/weapon/storage/briefcase/crimekit, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"bqG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"bqH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"bqI" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"bqJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"bqK" = ( -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"bqL" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/forensics/sample_kit, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - frequency = 1475; - icon_state = "intercom"; - listening = 1; - name = "Station Intercom (Security)"; - pixel_x = 21; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"bqM" = ( -/turf/simulated/wall/r_wall, -/area/security/forensics) -"bqN" = ( -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bqO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass/hidden, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bqP" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/door/firedoor/glass/hidden, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bqQ" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/rnd/lab) -"bqR" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7) - }, -/turf/simulated/floor/tiled/steel, -/area/rnd/lab) -"bqS" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bqT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bqU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bqV" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bqW" = ( -/obj/machinery/optable{ - name = "Robotics Operating Table" - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bqX" = ( -/obj/machinery/oxygen_pump/anesthetic, -/turf/simulated/wall, -/area/assembly/robotics) -"bqY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bqZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/weapon/ice_pick, -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"bra" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"brb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"brc" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"brd" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bre" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"brf" = ( -/obj/structure/table/standard, -/obj/item/weapon/tape_roll, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/effect/floor_decal/corner/brown/full, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"brg" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/machinery/recharger, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"brh" = ( -/obj/effect/floor_decal/corner/brown, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bri" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"brj" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"brk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"brl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"brm" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior) -"brn" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior) -"bro" = ( -/turf/simulated/wall, -/area/engineering/workshop) -"brp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/workshop) -"brq" = ( -/turf/simulated/floor/tiled/techfloor, -/area/engineering/workshop) -"brr" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering Breakroom" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/workshop) -"brs" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/turf/simulated/floor, -/area/engineering/workshop) -"brt" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bru" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"brv" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"brw" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/clothing/gloves/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"brx" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bry" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"brz" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"brA" = ( -/obj/structure/frame, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"brB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"brC" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"brD" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"brE" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"brF" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"brG" = ( -/turf/simulated/floor/plating, -/area/security/security_lockerroom) -"brH" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"brI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"brJ" = ( -/obj/machinery/door/airlock/security{ - name = "Secure Evidence Storage"; - req_access = list(1) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"brK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"brL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"brM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"brN" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"brO" = ( -/obj/structure/table/reinforced, -/obj/machinery/microscope, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"brP" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"brQ" = ( -/obj/effect/landmark/start{ - name = "Detective" - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"brR" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/spray/luminol, -/obj/item/device/uv_light, -/obj/item/clothing/gloves/sterile/latex, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"brS" = ( -/obj/structure/sign/department/sci{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"brT" = ( -/turf/simulated/wall, -/area/rnd/research) -"brU" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research{ - c_tag = "Research Port Entry" - }, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"brV" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"brW" = ( -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"brX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"brY" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"brZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/washing_machine, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bsa" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bsb" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/toolbox/electrical, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bsc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bsd" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"bse" = ( -/obj/structure/table/standard, -/obj/item/weapon/surgical/circular_saw, -/obj/item/weapon/surgical/scalpel{ - pixel_y = 12 - }, -/obj/item/weapon/surgical/hemostat, -/obj/item/weapon/surgical/retractor, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bsf" = ( -/turf/simulated/wall/r_wall, -/area/borealis2/outdoors/grounds) -"bsg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bsh" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bsi" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bsj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bsk" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bsl" = ( -/turf/simulated/wall, -/area/quartermaster) -"bsm" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "QM" - }, -/turf/simulated/floor/plating, -/area/quartermaster) -"bsn" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access = list(41); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster) -"bso" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bsp" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bsq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bsr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bss" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bst" = ( -/obj/machinery/conveyor{ - dir = 10; - icon_state = "conveyor0"; - id = "QMLoad" - }, -/turf/simulated/floor, -/area/quartermaster/storage) -"bsu" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_bay_door"; - locked = 1; - name = "Cargo Docking Hatch" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"bsv" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/simulated/floor, -/area/quartermaster/storage) -"bsw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall/titanium, -/area/borealis2/outdoors/grounds) -"bsx" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior) -"bsy" = ( -/obj/machinery/trailblazer/yellow, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bsz" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/workshop) -"bsA" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/engineering/workshop) -"bsB" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Break Room"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bsC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/workshop) -"bsD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/workshop) -"bsE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Workshop"; - req_access = newlist(); - req_one_access = list(14,24) - }, -/turf/simulated/floor/tiled, -/area/engineering/workshop) -"bsF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bsG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bsH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bsI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bsJ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/workshop) -"bsK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bsL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bsM" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bsN" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/vehicle/train/trolley, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bsO" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/industrial/outline, -/obj/item/clothing/shoes/boots/jackboots/toeless, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"bsP" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/camera/network/security{ - c_tag = "Prison Court"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"bsQ" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"bsR" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"bsS" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/industrial/outline, -/obj/item/clothing/shoes/boots/jackboots/toeless, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"bsT" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker" - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bsU" = ( -/turf/simulated/wall/r_wall, -/area/security/evidence_storage) -"bsV" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bsW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bsX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bsY" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bsZ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/borealis2/outdoors/grounds) -"bta" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/swabs{ - layer = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/item/weapon/folder/red, -/obj/item/weapon/folder/blue{ - pixel_y = -3 - }, -/obj/item/weapon/folder/yellow{ - pixel_y = -5 - }, -/obj/machinery/light{ - dir = 2 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"btb" = ( -/obj/structure/table/reinforced, -/obj/item/device/mass_spectrometer/adv, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/item/device/reagent_scanner, -/obj/item/weapon/reagent_containers/syringe, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"btc" = ( -/obj/machinery/dnaforensics, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"btd" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/forensics/sample_kit/powder, -/obj/machinery/light{ - dir = 2 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) -"bte" = ( -/turf/simulated/wall, -/area/borealis2/elevator/medbay) -"btf" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"btg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bth" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bti" = ( -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Division Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btl" = ( -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Division Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bto" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btp" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"btq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/sign/department/robo, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"btr" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access = list(29,47) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"bts" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access = list(29,47) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"btt" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Mech Bay"; - req_access = list(29,47) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/assembly/chargebay) -"btu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/assembly/chargebay) -"btv" = ( -/obj/structure/sign/department/sci{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"btw" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"btx" = ( -/obj/machinery/light_switch{ - pixel_y = 21 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"bty" = ( -/turf/simulated/floor/wood, -/area/quartermaster) -"btz" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"btA" = ( -/obj/structure/table/standard, -/obj/item/weapon/coin/silver, -/obj/item/weapon/coin/silver, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/quartermaster) -"btB" = ( -/obj/structure/table/standard, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/weapon/cartridge/quartermaster, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"btC" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/hand_labeler, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"btD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"btE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"btF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"btG" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/turf/simulated/floor, -/area/quartermaster/storage) -"btH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"btI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/quartermaster/storage) -"btJ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/titanium, -/area/borealis2/outdoors/grounds) -"btK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"btL" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"btM" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"btN" = ( -/obj/effect/floor_decal/snow/floor/edges3{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"btO" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"btP" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"btQ" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"btR" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"btS" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"btT" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"btU" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/workshop) -"btV" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/engineering/workshop) -"btW" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"btX" = ( -/turf/simulated/floor/carpet, -/area/engineering/workshop) -"btY" = ( -/obj/structure/table/glass, -/turf/simulated/floor/carpet, -/area/engineering/workshop) -"btZ" = ( -/obj/structure/bed/chair/sofa/right{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/engineering/workshop) -"bua" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bub" = ( -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"buc" = ( -/obj/machinery/hologram/holopad, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bud" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bue" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"buf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bug" = ( -/obj/structure/closet/toolcloset, -/obj/item/weapon/pickaxe, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"buh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bui" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/vehicle/train/trolley, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics Hallway"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"buj" = ( -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"buk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/security{ - c_tag = "Prison Disposal Processing"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bul" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/camera/network/security{ - c_tag = "Evidence Storage"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bum" = ( -/obj/structure/table/standard, -/obj/machinery/camera/network/security{ - c_tag = "SEC - Evidence Storage"; - dir = 8 - }, -/obj/item/weapon/hand_labeler, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bun" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/forensics) -"buo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bup" = ( -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Division Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buq" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bur" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bus" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"but" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buw" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bux" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buy" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buB" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buC" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buD" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buG" = ( -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Division Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buJ" = ( -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Division Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"buK" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"buL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "QM Office"; - sortType = "QM Office" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"buM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"buN" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access = list(41); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster) -"buO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"buP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Quartermaster" - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"buQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"buR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"buS" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 32; - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"buT" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"buU" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = 1; - id = "QMLoad" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"buV" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior) -"buW" = ( -/obj/structure/railing, -/obj/machinery/light/flamp/noshade, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/exterior) -"buX" = ( -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"buY" = ( -/obj/structure/table/standard, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/obj/item/weapon/circuitboard/teleporter, -/obj/item/weapon/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_x = 30; - pixel_y = -2 - }, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/westright{ - req_access = list(30) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"buZ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/glasses/square, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bva" = ( -/obj/structure/bed/chair/sofa/left{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/engineering/workshop) -"bvb" = ( -/obj/structure/bed/chair/sofa{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/carpet, -/area/engineering/workshop) -"bvc" = ( -/obj/structure/bed/chair/sofa/corner{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/engineering/workshop) -"bvd" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bve" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/engineering/workshop) -"bvf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bvg" = ( -/obj/structure/closet/toolcloset, -/obj/item/weapon/pickaxe, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bvh" = ( -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/obj/vehicle/train/trolley, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bvi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "ceoffice"; - name = "CE Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"bvj" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Chief Engineer's Office" - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 6; - name = "Chief Engineer RC"; - pixel_x = 0; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bvk" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bvl" = ( -/obj/machinery/computer/station_alert/all, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bvm" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 27 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bvn" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bvo" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/item/weapon/hand_tele, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bvp" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/breath, -/obj/item/weapon/rig/ce/equipped, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bvq" = ( -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the engine core airlock hatch bolts."; - id = "engine_access_hatch"; - name = "Engine Hatch Bolt Control"; - pixel_x = -6; - pixel_y = 32; - req_access = newlist(); - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for engine core."; - id = "EngineVent"; - name = "Engine Ventillatory Control"; - pixel_x = 6; - pixel_y = 32; - req_access = newlist() - }, -/obj/structure/table/reinforced, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 27; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bvr" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/chief) -"bvs" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker" - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bvt" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bvu" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = -26 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bvv" = ( -/obj/vehicle/train/security/trolley/cargo, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bvw" = ( -/obj/vehicle/train/security/engine, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) -"bvx" = ( -/turf/simulated/wall/r_wall, -/area/engineering/foyer) -"bvy" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/carpet, -/area/engineering/foyer) -"bvz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet, -/area/engineering/foyer) -"bvA" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/carpet, -/area/engineering/foyer) -"bvB" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/carpet, -/area/engineering/foyer) -"bvC" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/camera/network/engineering, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bvD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bvE" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bvF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/foyer) -"bvG" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bvH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bvI" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bvJ" = ( -/turf/simulated/wall/r_wall, -/area/rnd/research) -"bvK" = ( -/obj/structure/closet/l3closet/scientist, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"bvL" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"bvM" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvN" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvO" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvQ" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvR" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - name = "Research"; - sortType = "Research" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "RD Office"; - sortType = "RD Office" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - name = "Robotics"; - sortType = "Robotics" - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvX" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvY" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bvZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bwa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bwb" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bwc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bwd" = ( -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Division Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bwe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bwf" = ( -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bwg" = ( -/obj/structure/table/standard, -/obj/item/weapon/clipboard, -/obj/item/weapon/stamp/qm, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"bwh" = ( -/obj/structure/table/standard, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"bwi" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/device/megaphone, -/turf/simulated/floor/wood, -/area/quartermaster) -"bwj" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the brig foyer."; - id = "medbayfoyer"; - name = "Medbay Foyer Doors"; - pixel_x = 26; - pixel_y = -6; - req_access = list() - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"bwk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"bwl" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/quartermaster) -"bwm" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access = list(41); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster) -"bwn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bwo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bwp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bwq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bwr" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bws" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor, -/area/quartermaster/storage) -"bwt" = ( -/obj/machinery/status_display/supply_display{ - pixel_y = -32 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/light/small, -/turf/simulated/floor, -/area/quartermaster/storage) -"bwu" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"bwv" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"bww" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"bwx" = ( -/obj/effect/floor_decal/snow/floor/surround{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bwy" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/engi, -/turf/simulated/floor/tiled/dark, -/area/engineering/workshop) -"bwz" = ( -/obj/structure/frame, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering Workshop Port"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bwA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bwB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bwC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bwD" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/vehicle/train/engine, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bwE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "ceoffice"; - name = "CE Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"bwF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bwG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bwH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"bwI" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - pixel_x = 6; - pixel_y = -12; - req_access = list(10) - }, -/obj/machinery/button/remote/blast_door{ - id = "englockdown"; - name = "Engineering Lockdown"; - pixel_x = -6; - pixel_y = -12; - req_access = list(10) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"bwJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "ceoffice"; - name = "Chief Engineer Privacy Shutters"; - pixel_x = -26; - pixel_y = 18; - req_access = list(56) - }, -/obj/effect/landmark/start{ - name = "Chief Engineer" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"bwK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"bwL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bwM" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bwN" = ( -/obj/machinery/vending/cola, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 8; - listening = 1; - name = "Common Channel"; - pixel_x = -21; - pixel_y = 0 - }, -/turf/simulated/floor/carpet, -/area/engineering/foyer) -"bwO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/engineering/foyer) -"bwP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/engineering/foyer) -"bwQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/engineering/foyer) -"bwR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bwS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bwT" = ( -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bwU" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Lobby"; - req_one_access = list() - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/foyer) -"bwV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bwW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bwX" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"bwY" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/aft) -"bwZ" = ( -/turf/simulated/wall/r_wall, -/area/rnd/workshop) -"bxa" = ( -/turf/simulated/wall, -/area/rnd/workshop) -"bxb" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bxc" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/junction, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bxd" = ( -/turf/simulated/wall, -/area/rnd/rdoffice) -"bxe" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"bxf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/command{ - id_tag = "researchdoor"; - name = "Research Director"; - req_access = list(30) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bxg" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bxh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bxi" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bxj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bxk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bxl" = ( -/obj/machinery/atm, -/turf/simulated/wall, -/area/crew_quarters/bar) -"bxm" = ( -/mob/living/simple_mob/animal/passive/dog/corgi/Lisa, -/turf/simulated/floor/wood, -/area/quartermaster) -"bxn" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/quartermaster) -"bxo" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 0; - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bxp" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/soft, -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/soft, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bxq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bxr" = ( -/turf/simulated/wall, -/area/quartermaster/storage) -"bxs" = ( -/obj/structure/lattice, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bxt" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/solars) -"bxu" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bxv" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "Engineering_exit_exterior"; - locked = 1 - }, -/turf/simulated/floor/plating/snow/plating, -/area/engineering/hallway) -"bxw" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Engineering_exit_control"; - name = "Engineering Port Exit Controller"; - pixel_x = -6; - pixel_y = 25; - tag_exterior_door = "Engineering_exit_exterior"; - tag_interior_door = "Engineering_exit_interior" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bxx" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/hallway) -"bxy" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "Engineering_exit_interior"; - locked = 1; - name = "Engineering Internal Airlock"; - req_one_access = list(13) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bxz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bxA" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering Exit Port" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bxB" = ( -/obj/machinery/door/airlock/maintenance/int{ - name = "Emergency Storage"; - req_one_access = list() - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bxC" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor, -/area/engineering/hallway) -"bxD" = ( -/turf/simulated/wall, -/area/engineering/hallway) -"bxE" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bxF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bxG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bxH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bxI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bxJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bxK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer"; - req_access = list(56) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bxL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bxM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bxN" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"bxO" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/clipboard, -/obj/item/clothing/glasses/meson{ - pixel_y = 4 - }, -/obj/item/clothing/glasses/welding/superior, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/item/weapon/book/manual/supermatter_engine, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"bxP" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"bxQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"bxR" = ( -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -12 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bxS" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bxT" = ( -/turf/simulated/wall, -/area/engineering/engineering_monitoring) -"bxU" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engineering_monitoring) -"bxV" = ( -/obj/structure/sign/department/eng, -/turf/simulated/wall/r_wall, -/area/engineering/engineering_monitoring) -"bxW" = ( -/obj/structure/window/reinforced, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/engineering/foyer) -"bxX" = ( -/obj/structure/window/reinforced, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/engineering/foyer) -"bxY" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bxZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bya" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"byb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Lobby"; - req_one_access = list() - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/foyer) -"byc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"byd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bye" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"byf" = ( -/obj/structure/flora/pottedplant, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"byg" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/bag/circuits/basic, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"byh" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"byi" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/machinery/camera/network/research, -/obj/item/device/integrated_circuit_printer, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"byj" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/table/steel, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"byk" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"byl" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bym" = ( -/obj/machinery/disposal, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"byn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/obj/structure/flora/pottedplant/crystal, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"byo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"byp" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/hop) -"byq" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/obj/item/clothing/shoes/boots/winter, -/obj/item/weapon/ice_pick, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"byr" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bys" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"byt" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"byu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"byv" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"byw" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/wood, -/area/quartermaster) -"byx" = ( -/obj/machinery/camera/network/cargo{ - dir = 1 - }, -/obj/machinery/computer/supplycomp/control, -/turf/simulated/floor/wood, -/area/quartermaster) -"byy" = ( -/obj/machinery/computer/security/mining{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/quartermaster) -"byz" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"byA" = ( -/obj/structure/closet, -/obj/item/weapon/storage/backpack/dufflebag, -/turf/simulated/floor/wood, -/area/quartermaster) -"byB" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/quartermaster) -"byC" = ( -/turf/simulated/wall, -/area/quartermaster/miningwing) -"byD" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Operations" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/miningwing) -"byE" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/turf/simulated/floor, -/area/quartermaster/miningwing) -"byF" = ( -/obj/machinery/mech_recharger, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/quartermaster/miningwing) -"byG" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/mineral/equipment_vendor, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor, -/area/quartermaster/miningwing) -"byH" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"byI" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/flamp/noshade, -/turf/simulated/floor/tiled/cryogaia, -/area/borealis2/outdoors/grounds) -"byJ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"byK" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/railing, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"byL" = ( -/obj/structure/railing, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"byM" = ( -/obj/structure/railing, -/obj/machinery/light/flamp/noshade, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"byN" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"byO" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"byP" = ( -/obj/effect/floor_decal/snow/floor/edges3, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"byQ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "Engineering_exit_exterior"; - locked = 1 - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "Engineering_exit_control"; - pixel_x = -6; - pixel_y = -25; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating/snow/plating, -/area/engineering/hallway) -"byR" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/structure/cable/green, -/obj/machinery/power/thermoregulator/cryogaia{ - dir = 1; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/hallway) -"byS" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/hallway) -"byT" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "Engineering_exit_interior"; - locked = 1; - name = "Engineering Internal Airlock"; - req_one_access = list(13) - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button/airlock_interior{ - master_tag = "Engineering_exit_control"; - pixel_x = -6; - pixel_y = -25; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"byU" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"byV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"byW" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/hallway) -"byX" = ( -/obj/structure/table/reinforced, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"byY" = ( -/obj/structure/table/reinforced, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/item/stack/material/plastic{ - amount = 50 - }, -/obj/item/stack/material/plastic{ - amount = 50 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"byZ" = ( -/obj/structure/table/reinforced, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bza" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bzb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bzc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bzd" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/weapon/airlock_electronics, -/obj/item/weapon/airlock_electronics, -/obj/item/weapon/cell/high, -/obj/item/stack/material/glass/phoronrglass{ - amount = 20 - }, -/obj/item/weapon/pickaxe, -/obj/item/weapon/pickaxe, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bze" = ( -/obj/structure/table/reinforced, -/obj/item/device/floor_painter, -/obj/item/device/multitool{ - pixel_x = 5 - }, -/obj/item/device/t_scanner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/workshop) -"bzf" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/off{ - pixel_y = 6 - }, -/obj/item/device/radio/off{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/device/radio/off{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/device/radio/off, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/blue, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bzg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "ceoffice"; - name = "CE Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"bzh" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/stamp/ce, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/flame/lighter/zippo, -/obj/item/device/megaphone, -/obj/item/weapon/folder/yellow_ce, -/obj/item/weapon/pen/multi, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bzi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-20" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bzj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bzk" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bzl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bzm" = ( -/obj/item/modular_computer/console/preset/command{ - dir = 1 - }, -/mob/living/simple_mob/animal/passive/bird/parrot/poly, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bzn" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Chief Engineer's Office"; - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bzo" = ( -/obj/machinery/button/remote/driver{ - id = "enginecore"; - name = "Emergency Core Eject"; - pixel_x = 21; - pixel_y = 0 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/chief) -"bzp" = ( -/turf/simulated/wall, -/area/crew_quarters/heads/chief) -"bzq" = ( -/obj/machinery/computer/atmoscontrol{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bzr" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bzs" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/weapon/storage/toolbox/electrical, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bzt" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/deck/cards, -/obj/machinery/computer/guestpass{ - pixel_y = 32 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering Monitoring" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bzu" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/packageWrap, -/obj/item/weapon/hand_labeler, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bzv" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bzw" = ( -/obj/machinery/computer/atmos_alert, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bzx" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bzy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bzz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bzA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bzB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bzC" = ( -/obj/structure/flora/pottedplant, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bzD" = ( -/turf/simulated/wall, -/area/gateway) -"bzE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/gateway) -"bzF" = ( -/obj/machinery/door/airlock/glass{ - name = "Public Gateway Access" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/gateway) -"bzG" = ( -/turf/simulated/wall/r_wall, -/area/gateway) -"bzH" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = 5; - pixel_y = 0 - }, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5; - pixel_y = 0 - }, -/obj/machinery/newscaster{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bzI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bzJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bzK" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/device/electronic_assembly/large{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bzL" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bzM" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bzN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bzO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bzP" = ( -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bzQ" = ( -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bzR" = ( -/obj/structure/closet/secure_closet/RD, -/obj/item/clothing/glasses/omnihud/rnd, -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bzS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bzT" = ( -/obj/machinery/floodlight, -/turf/simulated/floor, -/area/rnd/research) -"bzU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/table/standard, -/obj/item/device/t_scanner, -/obj/item/weapon/storage/box/lights/mixed, -/turf/simulated/floor, -/area/rnd/research) -"bzV" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/plating, -/area/rnd/research) -"bzW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bzX" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bzY" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bzZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bAa" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 0; - pixel_y = 28 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bAb" = ( -/obj/structure/table/steel, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bAc" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/miningwing) -"bAd" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/miningwing) -"bAe" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/miningwing) -"bAf" = ( -/obj/structure/table/steel, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/miningwing) -"bAg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/quartermaster/miningwing) -"bAh" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bAi" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bAj" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bAk" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "englockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bAl" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "englockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/noticeboard/airlock{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bAm" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/engineering/workshop) -"bAn" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Workshop"; - req_access = newlist(); - req_one_access = list(14,24) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bAo" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Workshop"; - req_access = newlist(); - req_one_access = list(14,24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bAp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "ceoffice"; - name = "CE Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"bAq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "ceoffice"; - name = "CE Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"bAr" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Engineer"; - req_access = list(56) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"bAs" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "ceoffice"; - name = "CE Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"bAt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "ceoffice"; - name = "CE Office Privacy Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/chief) -"bAu" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/bodybag/cryobag{ - pixel_x = 6 - }, -/obj/random/medical/lite, -/turf/simulated/floor/tiled/yellow, -/area/engineering/hallway) -"bAv" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/engineering_monitoring) -"bAw" = ( -/obj/machinery/computer/general_air_control{ - dir = 4; - frequency = 1443; - level = 3; - name = "Distribution and Waste Monitor"; - sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank") - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bAx" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bAy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bAz" = ( -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bAA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bAB" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder/yellow, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Engineering Reception Desk"; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bAC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bAD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bAE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bAF" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled, -/area/gateway) -"bAG" = ( -/turf/simulated/floor/tiled, -/area/gateway) -"bAH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/gateway) -"bAI" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bAJ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/structure/reagent_dispensers/acid{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bAK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bAL" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bAM" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bAN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Workshop"; - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/workshop) -"bAO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bAP" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bAQ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8 - }, -/obj/structure/window/reinforced/polarized/full, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"bAR" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/device/megaphone, -/obj/item/weapon/paper/monitorkey, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bAS" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white_rd, -/obj/item/weapon/stamp/rd, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bAT" = ( -/obj/structure/table/glass, -/obj/machinery/computer/skills, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bAU" = ( -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bAV" = ( -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/obj/item/modular_computer/console/preset/command{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bAW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bAX" = ( -/obj/machinery/door/airlock{ - name = "Research Storage" - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/rnd/research) -"bAY" = ( -/obj/structure/closet/hydrant{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/rnd/research) -"bAZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/rnd/research) -"bBa" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor, -/area/rnd/research) -"bBb" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bBc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bBd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bBe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bBf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bBg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bBh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bBi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bBj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/quartermaster/miningwing) -"bBk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bBl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bBm" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bBn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bBo" = ( -/obj/structure/dispenser/oxygen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bBp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/miningwing) -"bBq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bBr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bBs" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"bBt" = ( -/turf/simulated/wall/r_wall, -/area/engineering/storage) -"bBu" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bBv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bBw" = ( -/turf/simulated/wall, -/area/maintenance/substation/engineering) -"bBx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Engineering Subgrid"; - name_tag = "Engineering Subgrid" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering) -"bBy" = ( -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Substation - Engineering" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering) -"bBz" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Engineering Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering) -"bBA" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/engineering, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/obj/item/clothing/shoes/boots/winter/engineering, -/obj/item/clothing/shoes/boots/winter/engineering, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/engineering, -/obj/item/device/gps/engineering, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/engineering, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/item/clothing/shoes/boots/winter/engineering, -/obj/item/clothing/shoes/boots/winter/engineering, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/engineering, -/obj/item/device/gps/engineering, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/engineering/hallway) -"bBE" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/item/weapon/cell/device, -/obj/item/weapon/cell/device, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBF" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBH" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBI" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering" - }, -/turf/simulated/open, -/area/engineering/hallway) -"bBJ" = ( -/obj/structure/railing, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/open, -/area/engineering/hallway) -"bBK" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBL" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBN" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/machinery/vending/engivend, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBO" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/vending/tool, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBP" = ( -/obj/structure/bookcase/manuals/engineering, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBR" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bBS" = ( -/obj/machinery/computer/security/engineering{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bBT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bBU" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bBV" = ( -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bBW" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/pen/red, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bBX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bBY" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bBZ" = ( -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled, -/area/gateway) -"bCa" = ( -/obj/effect/floor_decal/industrial/loading, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/gateway) -"bCb" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/rnd/workshop) -"bCc" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bCd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bCe" = ( -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bCf" = ( -/obj/effect/floor_decal/techfloor/corner, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bCg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/workshop) -"bCh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research Hall Port"; - dir = 4; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bCi" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bCj" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bCk" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/machinery/button/windowtint{ - pixel_x = 32; - pixel_y = 16 - }, -/obj/effect/landmark/start{ - name = "Research Director" - }, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bCl" = ( -/obj/structure/table/glass, -/obj/machinery/photocopier/faxmachine{ - department = "Research Director's Office" - }, -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bCm" = ( -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bCn" = ( -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/obj/machinery/papershredder, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bCo" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bCp" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/docking_lounge) -"bCq" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bCr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bCs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bCt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bCu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bCv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bCw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bCx" = ( -/obj/machinery/recharge_station, -/obj/machinery/camera/network/research{ - c_tag = "Secure Xenobiology aft"; - dir = 1; - network = list("Research","Miscellaneous Reseach") - }, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"bCy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bCz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bCA" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/cargo, -/obj/item/clothing/shoes/boots/winter/mining, -/obj/item/device/gps/mining, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bCB" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/cargo, -/obj/item/clothing/shoes/boots/winter/mining, -/obj/item/device/gps/mining, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bCC" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/cargo, -/obj/item/clothing/shoes/boots/winter/mining, -/obj/item/device/gps/mining, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bCD" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bCE" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bCF" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bCG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bCH" = ( -/turf/simulated/wall/titanium, -/area/cryogaia/station/explorer_meeting) -"bCI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_meeting) -"bCJ" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/shield_gen/external, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/storage) -"bCK" = ( -/obj/machinery/shield_gen/external, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/storage) -"bCL" = ( -/obj/machinery/shield_gen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/storage) -"bCM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldgen, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering Hardstorage Fore" - }, -/turf/simulated/floor, -/area/engineering/storage) -"bCN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldgen, -/turf/simulated/floor, -/area/engineering/storage) -"bCO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bCP" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bCQ" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering) -"bCR" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering) -"bCS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering) -"bCT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Engineering Substation"; - req_one_access = list(10) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "englockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering) -"bCU" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bCV" = ( -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bCW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bCX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/engineering/hallway) -"bCY" = ( -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bCZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bDa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bDb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bDc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bDd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bDe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bDf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bDg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bDh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bDi" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bDj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Monitoring Room"; - req_one_access = list(11,24) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"bDk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bDl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bDm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bDn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bDo" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bDp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bDq" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Engineering Reception Desk"; - req_access = list(10) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bDr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bDs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bDt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bDu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bDv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/gateway) -"bDw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/gateway) -"bDx" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/rnd/workshop) -"bDy" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bDz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bDA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bDB" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bDC" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Workshop"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/workshop) -"bDD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bDE" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bDF" = ( -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bDG" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/hazmat/equipped, -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bDH" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bDI" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"bDJ" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"bDK" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/toilet, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"bDL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bDM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bDN" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bDO" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bDP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bDQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bDR" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bDS" = ( -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bDT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bDU" = ( -/obj/structure/closet/lumber{ - anchored = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bDV" = ( -/obj/structure/closet/lumber{ - anchored = 1 - }, -/obj/item/clothing/suit/tajaran/furs, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bDW" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/storage/belt/utility, -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 0 - }, -/obj/item/weapon/shovel, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/item/weapon/ice_pick, -/obj/item/weapon/ice_pick, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bDX" = ( -/obj/structure/railing, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bDY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/railing, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bDZ" = ( -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_meeting) -"bEa" = ( -/obj/structure/cable/heavyduty, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_meeting) -"bEb" = ( -/obj/machinery/shield_capacitor, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/storage) -"bEc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldgen, -/turf/simulated/floor, -/area/engineering/storage) -"bEd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bEe" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bEf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/hallway) -"bEg" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "englockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Engineering Substation"; - req_one_access = list(10) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/engineering) -"bEh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/table/rack, -/obj/item/weapon/ice_pick, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/engineering/hallway) -"bEi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bEj" = ( -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/weapon/storage/toolbox/electrical, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bEk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bEl" = ( -/obj/item/weapon/stool/padded, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bEm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bEn" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bEo" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bEp" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bEq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bEr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering Starboard"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bEs" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27; - pixel_y = 0 - }, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bEt" = ( -/obj/structure/window/reinforced, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bEu" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - pixel_x = 6; - pixel_y = 10; - req_one_access = list(10,24) - }, -/obj/machinery/button/remote/blast_door{ - id = "englockdown"; - name = "Engineering Lockdown"; - pixel_x = -6; - pixel_y = 10; - req_access = list(10) - }, -/obj/machinery/recharger, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bEv" = ( -/obj/machinery/computer/rcon{ - icon_state = "computer"; - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bEw" = ( -/obj/machinery/computer/power_monitor{ - icon_state = "computer"; - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bEx" = ( -/obj/machinery/computer/security/engineering{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bEy" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/clipboard, -/obj/item/weapon/tape_roll, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bEz" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bEA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/tiled, -/area/gateway) -"bEB" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bEC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/rnd/workshop) -"bED" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/media/jukebox, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bEE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bEF" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bEG" = ( -/obj/machinery/computer/aifixer{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/keycard_auth{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -38; - pixel_y = 13; - req_access = list(47) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bEH" = ( -/obj/machinery/computer/robotics{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bEI" = ( -/obj/machinery/computer/mecha{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bEJ" = ( -/obj/structure/table/standard, -/obj/item/weapon/cartridge/signal/science, -/obj/item/weapon/cartridge/signal/science, -/obj/item/clothing/glasses/welding/superior, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/effect/floor_decal/corner_oldtile/gray/diagonal{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bEK" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead spider" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bEL" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bEM" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"bEN" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"bEO" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"bEP" = ( -/obj/structure/urinal{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"bEQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/borealis2/elevator/scicargo) -"bER" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner/blue, -/area/borealis2/elevator/scicargo) -"bES" = ( -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/borealis2/elevator/scicargo) -"bET" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/borealis2/elevator/scicargo) -"bEU" = ( -/obj/structure/sign/deck/first, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/borealis2/elevator/scicargo) -"bEV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bEW" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bEX" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bEY" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bEZ" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bFa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/quartermaster/miningwing) -"bFb" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/thermoregulator/cryogaia{ - pixel_y = 30 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/quartermaster/miningwing) -"bFc" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Expedition Airlock"; - dir = 2 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/quartermaster/miningwing) -"bFd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/quartermaster/miningwing) -"bFe" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bFf" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bFg" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/yellow, -/obj/machinery/power/generator_type2{ - dir = 4; - name = "aging thermoelectric generator" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bFh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/titanium, -/area/cryogaia/station/explorer_meeting) -"bFi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_meeting) -"bFj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_meeting) -"bFk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/cryogaia/station/explorer_meeting) -"bFl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/titanium, -/area/borealis2/outdoors/grounds) -"bFm" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/titanium, -/area/borealis2/outdoors/grounds) -"bFn" = ( -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bFo" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bFp" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering Port" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFu" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/excursion/cryogaia) -"bFv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Engineering"; - sortType = "Engineering" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFD" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - name = "CE Office"; - sortType = "CE Office" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bFL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineeringatmos{ - name = "Engineering"; - req_one_access = list(10) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bFM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bFN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bFO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bFP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bFQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"bFR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bFS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bFT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bFU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/wildcard/flipped{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bFV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bFW" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/gateway) -"bFX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bFY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bFZ" = ( -/obj/machinery/camera/network/command{ - c_tag = "COM - Gateway Public Access"; - dir = 9 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bGa" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/device/electronic_assembly/large{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bGb" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bGc" = ( -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bGd" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5; - pixel_y = 0 - }, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = 5; - pixel_y = 0 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bGe" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bGf" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bGg" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized, -/obj/structure/window/reinforced/polarized/full, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"bGh" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/command{ - id_tag = "researchdoor"; - name = "Research Director"; - req_access = list(30) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"bGi" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bGj" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/rnd/research) -"bGk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/borealis2/elevator/scicargo) -"bGl" = ( -/turf/simulated/open, -/area/borealis2/elevator/scicargo) -"bGm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bGn" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bGo" = ( -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/obj/structure/table/bench/padded, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bGp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bGq" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bGr" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bGs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bGt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bGu" = ( -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - id_tag = "Mining_exit_interior"; - locked = 1; - req_one_access = list(48) - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "Mining_exit_control"; - pixel_x = 7; - pixel_y = 25 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bGv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/quartermaster/miningwing) -"bGw" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/quartermaster/miningwing) -"bGx" = ( -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "Mining_exit_exterior"; - locked = 1; - req_access = list(48) - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "Mining_exit_control"; - pixel_x = 7; - pixel_y = 25 - }, -/turf/simulated/floor/plating/snow/plating, -/area/quartermaster/miningwing) -"bGy" = ( -/turf/simulated/wall/r_wall, -/area/cryogaia/station/explorer_meeting) -"bGz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_meeting) -"bGA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass_engineering, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_meeting) -"bGB" = ( -/obj/machinery/power/emitter, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/storage) -"bGC" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor, -/area/engineering/storage) -"bGD" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/storage) -"bGE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bGF" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Hard Storage"; - req_access = list(11); - req_one_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bGG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGK" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineeringatmos{ - name = "Engineering"; - req_one_access = list(10) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGM" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGN" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGO" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGQ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/belt/utility, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGR" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGS" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/device/flashlight, -/obj/item/weapon/tool/wrench, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGT" = ( -/obj/structure/table/reinforced, -/obj/random/toolbox, -/obj/item/device/geiger, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGX" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGY" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bGZ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bHa" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bHb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bHc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bHd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bHe" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineeringatmos{ - name = "Engineering"; - req_one_access = list(10) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bHf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bHg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bHh" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bHi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bHj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bHk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) -"bHl" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"bHm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bHn" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Xenobiology Control Room"; - dir = 8; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHo" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bHp" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4; - icon_state = "corner_white_full" - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"bHq" = ( -/obj/machinery/button/remote/blast_door{ - id = "PubPrep"; - name = "Public Access Shutter -control"; - pixel_y = -22; - req_access = list(62) - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bHr" = ( -/obj/effect/floor_decal/rust/part_rusted3, -/turf/simulated/floor/tiled, -/area/gateway) -"bHs" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bHt" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bHu" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/table/steel, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bHv" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/table/steel, -/obj/item/weapon/shield_diffuser, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bHw" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/bag/circuits/basic, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"bHx" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHy" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHz" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHA" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHB" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHD" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHF" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHG" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHI" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHJ" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple/full{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bHK" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/borealis2/elevator/scicargo) -"bHL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/borealis2/elevator/scicargo) -"bHM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bHN" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/wall, -/area/maintenance/substation/cargo) -"bHO" = ( -/turf/simulated/wall, -/area/maintenance/substation/cargo) -"bHP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Cargo Substation"; - req_one_access = list(11,24,50) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/maintenance/substation/cargo) -"bHQ" = ( -/obj/machinery/suit_cycler/mining, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bHR" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/weapon/mining_scanner, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bHS" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/weapon/mining_scanner, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"bHT" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/quartermaster/miningwing) -"bHU" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Mining_exit_control"; - name = "Mining Exit Controller"; - pixel_x = 25; - pixel_y = -25; - tag_exterior_door = "Mining_exit_exterior"; - tag_interior_door = "Mining_exit_interior" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/quartermaster/miningwing) -"bHV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/quartermaster/miningwing) -"bHW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bHX" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bHY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bHZ" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bIa" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bIb" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bIc" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = -26; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bId" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bIe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bIf" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bIg" = ( -/obj/machinery/mineral/equipment_vendor/survey, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bIh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bIi" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Hard Storage"; - req_access = list(11); - req_one_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bIj" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bIk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bIl" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bIm" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/tool/crowbar, -/obj/item/clothing/gloves/black, -/obj/item/weapon/storage/box/lights/mixed, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4; - icon_state = "corner_white_full" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bIn" = ( -/turf/simulated/wall/r_wall, -/area/engineering/hallway) -"bIo" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_waste) -"bIp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engine Waste Handling"; - req_one_access = list(10,24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/engine_waste) -"bIq" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_smes) -"bIr" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "SMES Access"; - req_access = list(11) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bIs" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/wall/r_wall, -/area/engineering/engine_monitoring) -"bIt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"bIu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engine Monitoring Room"; - req_access = list(11) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bIv" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_airlock) -"bIw" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - icon_state = "door_closed"; - locked = 0; - name = "Engine Access"; - req_one_access = list(11) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor, -/area/engineering/engine_airlock) -"bIx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bIy" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "englockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_airlock) -"bIz" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "englockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_airlock) -"bIA" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall, -/area/engineering/engine_airlock) -"bIB" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_monitoring) -"bIC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"bID" = ( -/turf/simulated/wall, -/area/engineering/drone_fabrication) -"bIE" = ( -/obj/structure/sign/department/drones, -/turf/simulated/wall, -/area/engineering/drone_fabrication) -"bIF" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Drone Fabrication"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bIG" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Drone Fabrication"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bIH" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Public Gateway Access" - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "PubPrep"; - layer = 3.3; - name = "Public Access Shutter" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/gateway) -"bII" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "PubPrep"; - layer = 3.3; - name = "Public Access Shutter" - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bIJ" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIN" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIO" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Operations" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/miningwing) -"bIR" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIS" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIT" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIU" = ( -/obj/structure/bed/chair/comfy/purp{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIV" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIW" = ( -/obj/structure/bed/chair/comfy/purp{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIX" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple/full{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bIY" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "32-1" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/down{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/open, -/area/borealis2/elevator/scicargo) -"bIZ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/borealis2/elevator/scicargo) -"bJa" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 8; - listening = 1; - name = "Common Channel"; - pixel_x = -21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bJb" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bJc" = ( -/obj/machinery/door/airlock/engineering{ - name = "Cargo Substation"; - req_one_access = list(11,24,50) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargo) -"bJd" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargo) -"bJe" = ( -/obj/machinery/power/terminal, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargo) -"bJf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/substation/cargo) -"bJg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/closet, -/obj/item/clothing/suit/storage/explorer/engineering, -/obj/item/clothing/under/explorer/utility/engineering, -/obj/item/clothing/under/explorer/utility/engineering, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/item/clothing/shoes/boots/winter/explorer, -/obj/item/clothing/shoes/boots/winter/explorer, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJi" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJl" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Explorer" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJm" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Search and Rescue" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJn" = ( -/obj/structure/bed/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Search and Rescue" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJq" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bJr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"bJs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bJt" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bJu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bJv" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineEmitterPortWest"; - name = "Engine Room Blast Doors"; - pixel_x = 0; - pixel_y = 25; - req_access = null; - req_one_access = list(11,24) - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_waste) -"bJw" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/engineering/engine_waste) -"bJx" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/engine{ - c_tag = "ENG - Waste Handling" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_waste) -"bJy" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - pixel_x = -38; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bJz" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/multitool{ - pixel_x = 5 - }, -/obj/item/clothing/gloves/yellow, -/obj/structure/table/steel, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bJA" = ( -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bJB" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 8; - listening = 1; - name = "Common Channel"; - pixel_x = -21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bJC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bJD" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - layer = 4; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bJE" = ( -/obj/structure/closet/radiation, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bJF" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bJG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bJH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/camera/network/engine{ - c_tag = "ENG - Engine Access" - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bJI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Hallway Port"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bJJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bJK" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/engineering, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bJL" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bJM" = ( -/obj/machinery/cryopod/robot{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bJN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bJO" = ( -/obj/machinery/computer/cryopod/robot{ - pixel_y = 30 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Drone Fabrication"; - dir = 2 - }, -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bJP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bJQ" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bJR" = ( -/obj/item/weapon/storage/toolbox/electrical, -/obj/structure/table/steel, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bJS" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bJT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/gateway) -"bJU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bJV" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/gateway) -"bJW" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/gateway) -"bJX" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/gateway) -"bJY" = ( -/turf/simulated/wall/r_wall, -/area/server) -"bJZ" = ( -/obj/structure/sign/warning/server_room, -/turf/simulated/wall/r_wall, -/area/server) -"bKa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - name = "Server Room"; - req_access = list(30) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/server) -"bKb" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bKc" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bKd" = ( -/turf/simulated/wall/r_wall, -/area/rnd/phoronics) -"bKe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bKf" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Cargo Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/cargo) -"bKg" = ( -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Substation - Cargo" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargo) -"bKh" = ( -/obj/structure/cable/green, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Cargo Subgrid"; - name_tag = "Cargo Subgrid" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor, -/area/maintenance/substation/cargo) -"bKi" = ( -/turf/simulated/wall, -/area/crew_quarters/locker/locker_toilet) -"bKj" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/grounds) -"bKk" = ( -/obj/effect/floor_decal/snow/floor/edges2{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bKl" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/closet, -/obj/item/clothing/suit/storage/explorer/security, -/obj/item/clothing/suit/storage/explorer/security, -/obj/item/clothing/under/explorer/utility/security, -/obj/item/clothing/under/explorer/utility/security, -/obj/item/clothing/shoes/boots/winter/explorer, -/obj/item/clothing/shoes/boots/winter/explorer, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bKm" = ( -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bKn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bKo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bKp" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bKq" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bKr" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bKs" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bKt" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/vending/cola, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bKu" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor, -/area/engineering/storage) -"bKv" = ( -/obj/structure/closet/crate, -/obj/item/weapon/circuitboard/smes, -/obj/item/weapon/circuitboard/smes, -/obj/item/weapon/smes_coil, -/obj/item/weapon/smes_coil, -/obj/item/weapon/smes_coil/super_capacity, -/obj/item/weapon/smes_coil/super_capacity, -/obj/item/weapon/smes_coil/super_io, -/obj/item/weapon/smes_coil/super_io, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/engineering/storage) -"bKw" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/storage) -"bKx" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet/crate, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/storage) -"bKy" = ( -/obj/structure/closet/crate/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/turf/simulated/floor, -/area/engineering/storage) -"bKz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bKA" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bKB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bKC" = ( -/obj/machinery/door/blast/regular{ - icon_state = "pdoor1"; - id = "EngineVent"; - name = "Reactor Vent"; - p_open = 0 - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"bKD" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/security_starboard) -"bKE" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/security_starboard) -"bKF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bKG" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Master Grid"; - name_tag = "Master" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bKH" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 38; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bKI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bKJ" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/lights/mixed, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bKK" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bKL" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bKM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bKN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bKO" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - pixel_x = 36; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bKP" = ( -/obj/machinery/airlock_sensor/airlock_exterior{ - id_tag = "eng_al_ext_snsr"; - layer = 3.3; - master_tag = "engine_room_airlock"; - pixel_y = -22; - req_access = list(10) - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bKQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/engineering/engine_airlock) -"bKR" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/engineering/engine_airlock) -"bKS" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bKT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "eng_starboard_airlock"; - name = "Engineering Starboard Exit Controller"; - pixel_x = 25; - pixel_y = -25; - tag_exterior_door = "eng_starboard_exterior"; - tag_interior_door = "eng_starboard_interior" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bKU" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel, -/area/engineering/engine_airlock) -"bKV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bKW" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bKX" = ( -/obj/effect/landmark{ - name = "JoinLateCyborg" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bKY" = ( -/obj/machinery/computer/drone_control, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bKZ" = ( -/obj/machinery/computer/security/engineering{ - name = "Drone Monitoring Cameras"; - network = list("Engineering") - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bLa" = ( -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bLb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bLc" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 36; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bLd" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/camera/network/command{ - c_tag = "Gateway Access"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bLe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/gateway) -"bLf" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bLg" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/gateway) -"bLh" = ( -/obj/machinery/gateway/centerstation, -/turf/simulated/floor/tiled/dark, -/area/gateway) -"bLi" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/gateway) -"bLj" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bLk" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bLl" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/camera/network/research, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bLm" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bLn" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bLo" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer_1"; - use_power = 1; - power_setting = 20; - set_temperature = 73 - }, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bLp" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bLq" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bLr" = ( -/obj/machinery/sparker{ - id = "Xenobio"; - pixel_x = -25 - }, -/obj/machinery/telepad, -/turf/simulated/floor/reinforced, -/area/rnd/phoronics) -"bLs" = ( -/turf/simulated/floor/reinforced, -/area/rnd/phoronics) -"bLt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/phoronics) -"bLu" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/shuttle/plating, -/area/rnd/phoronics) -"bLv" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/rnd/phoronics) -"bLw" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/shuttle/plating, -/area/rnd/phoronics) -"bLx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bLy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"bLz" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/vending/blood, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"bLA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/start{ - name = "Explorer" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bLB" = ( -/obj/structure/table/woodentable, -/obj/item/device/universal_translator, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bLC" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/yellow, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bLD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark/start{ - name = "Pilot" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bLE" = ( -/obj/machinery/camera/network/northern_star{ - dir = 8 - }, -/obj/machinery/photocopier, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bLF" = ( -/turf/simulated/wall/r_wall, -/area/borealis2/outdoors/grounds/traderpad) -"bLG" = ( -/obj/structure/fans/tiny{ - name = "Thermal Regulator Vent" - }, -/obj/machinery/door/airlock/glass_external/freezable{ - req_access = list(48) - }, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bLH" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor, -/area/engineering/storage) -"bLI" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet/crate/solar, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/storage) -"bLJ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldwallgen, -/turf/simulated/floor, -/area/engineering/storage) -"bLK" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldwallgen, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering Hard Storage Aft"; - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/storage) -"bLL" = ( -/obj/structure/dispenser, -/turf/simulated/floor, -/area/engineering/storage) -"bLM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/engineering/storage) -"bLN" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bLO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bLP" = ( -/turf/simulated/wall, -/area/maintenance/security_starboard) -"bLQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/sec{ - name = "Security Maintenance"; - req_access = list(1,12) - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/security_starboard) -"bLR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"bLS" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bLT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bLU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bLV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "SMES Access"; - req_access = list(11) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bLW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bLX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bLY" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "SMES Access"; - req_access = list(11) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bLZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bMa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bMb" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bMc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bMd" = ( -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bMe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/wall, -/area/engineering/engine_monitoring) -"bMf" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bMg" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - frequency = 1379; - icon_state = "door_closed"; - id_tag = "engine_airlock_exterior"; - locked = 0; - name = "Engine Airlock Exterior"; - req_access = list(11) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bMh" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bMi" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - id_tag = "eng_starboard_interior"; - locked = 1; - req_access = list(11,24) - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bMj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - id_tag = "eng_starboard_interior"; - locked = 1; - req_access = list(11,24) - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "eng_starboard_airlock"; - pixel_x = 25; - pixel_y = -5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_airlock) -"bMk" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bMl" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bMm" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bMn" = ( -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bMo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/remains/robot, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bMp" = ( -/obj/machinery/drone_fabricator, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bMq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bMr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bMs" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bMt" = ( -/obj/machinery/gateway{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/gateway) -"bMu" = ( -/obj/machinery/gateway, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/gateway) -"bMv" = ( -/obj/machinery/gateway{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/gateway) -"bMw" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bMx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bMy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bMz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bMA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bMB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bMC" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bMD" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bME" = ( -/obj/machinery/lapvend, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bMF" = ( -/obj/item/device/radio/intercom{ - layer = 4; - name = "Station Intercom (General)"; - pixel_y = -27 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Miscellaneous Test Chamber"; - dir = 1; - network = list("Research","Miscellaneous Reseach") - }, -/turf/simulated/floor/reinforced, -/area/rnd/phoronics) -"bMG" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/reinforced, -/area/rnd/phoronics) -"bMH" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/shuttle/plating, -/area/rnd/phoronics) -"bMI" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1441; - icon_state = "map_injector"; - id = "n2_in"; - use_power = 1 - }, -/obj/machinery/telepad_phoronics, -/turf/simulated/floor/phoronics, -/area/rnd/phoronics) -"bMJ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/shuttle/plating, -/area/rnd/phoronics) -"bMK" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/crew_quarters/locker) -"bML" = ( -/obj/machinery/door/airlock/glass{ - name = "Locker Room" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bMM" = ( -/obj/machinery/door/airlock/glass{ - name = "Locker Room" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bMN" = ( -/obj/structure/table/standard, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/item/weapon/soap, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bMO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bMP" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bMQ" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bMR" = ( -/obj/machinery/light/small, -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bMS" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bMT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bMU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Pilot" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bMV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bMW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bMX" = ( -/obj/structure/table/woodentable, -/obj/item/device/camera, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bMY" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/traderpad) -"bMZ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds/traderpad) -"bNa" = ( -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bNb" = ( -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds/traderpad) -"bNc" = ( -/obj/machinery/door/airlock/glass_engineeringatmos{ - name = "Engineering EVA Storage"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bNd" = ( -/obj/machinery/door/airlock/glass_engineeringatmos{ - name = "Engineering EVA Storage"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bNe" = ( -/turf/simulated/wall, -/area/engineering/engine_eva) -"bNf" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/security_starboard) -"bNg" = ( -/obj/machinery/door/window/northleft{ - name = "Engine Waste"; - req_one_access = list(10,24) - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bNh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/machinery/door/window/northright{ - name = "Engine Waste"; - req_one_access = list(10,24) - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bNi" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bNj" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"bNk" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/camera/network/engine{ - c_tag = "ENG - SMES Room"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bNl" = ( -/obj/structure/table/reinforced, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera/network/engine{ - c_tag = "ENG - Monitoring Room"; - dir = 4 - }, -/obj/item/weapon/book/manual/supermatter_engine, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bNm" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bNn" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - pixel_x = 0; - pixel_y = -3; - req_access = list(10) - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine charging port."; - id = "SupermatterPort"; - name = "Reactor Blast Doors"; - pixel_x = -6; - pixel_y = 7; - req_access = list(10) - }, -/obj/machinery/button/remote/emitter{ - desc = "A remote control-switch for the engine emitter."; - id = "EngineEmitter"; - name = "Engine Emitter"; - pixel_x = 6; - pixel_y = 7; - req_access = list(10) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bNo" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bNp" = ( -/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ - id_tag = "engine_room_airlock"; - name = "Engine Room Airlock"; - pixel_x = -24; - tag_airpump = "engine_airlock_pump"; - tag_chamber_sensor = "eng_al_c_snsr"; - tag_exterior_door = "engine_airlock_exterior"; - tag_exterior_sensor = "eng_al_ext_snsr"; - tag_interior_door = "engine_airlock_interior"; - tag_interior_sensor = "eng_al_int_snsr" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bNq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bNr" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bNs" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/obj/machinery/power/thermoregulator/cryogaia{ - dir = 4; - pixel_x = -30 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/engine_airlock) -"bNt" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/engine_airlock) -"bNu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "eng_starboard_exterior"; - locked = 1; - req_access = list(11,24); - req_one_access = null - }, -/turf/simulated/floor/plating/snow/plating, -/area/engineering/engine_airlock) -"bNv" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bNw" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bNx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bNy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j1s"; - name = "Drone Fabrication"; - sortType = "Drone Fabrication" - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bNz" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bNA" = ( -/obj/structure/table/reinforced, -/obj/item/device/communicator, -/obj/item/device/communicator, -/obj/item/device/communicator, -/obj/item/device/communicator, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bNB" = ( -/obj/machinery/button/remote/blast_door{ - id = "PubPrep"; - name = "Public Access Shutter -control"; - pixel_y = 22; - req_access = list(62) - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bNC" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bND" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/server) -"bNE" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bNF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bNG" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bNH" = ( -/obj/machinery/r_n_d/server/robotics, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/greengrid, -/area/server) -"bNI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/greengrid, -/area/server) -"bNJ" = ( -/obj/machinery/r_n_d/server/core, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/greengrid, -/area/server) -"bNK" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research Hall Aft"; - dir = 4; - network = list("Xenobiology") - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bNL" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/structure/window/phoronreinforced, -/turf/simulated/floor/plating, -/area/rnd/phoronics) -"bNM" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/obj/structure/window/phoronreinforced, -/turf/simulated/floor/plating, -/area/rnd/phoronics) -"bNN" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/research, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bNO" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/rnd/phoronics) -"bNP" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/rnd/phoronics) -"bNQ" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "misclab"; - name = "Test Chamber Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/rnd/phoronics) -"bNR" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bNS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bNT" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bNU" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bNV" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/weapon/storage/backpack/dufflebag, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bNW" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bNX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - listening = 1; - name = "Common Channel"; - pixel_y = 21 - }, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bNY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/vending/loadout/loadout_misc, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bNZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bOa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bOb" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bOc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bOd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bOe" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bOf" = ( -/obj/machinery/recharger/wallcharger{ - pixel_y = -32 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bOg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/obj/structure/closet, -/obj/item/clothing/suit/storage/explorer/medical, -/obj/item/clothing/suit/storage/explorer/medical, -/obj/item/clothing/under/explorer/utility/medical, -/obj/item/clothing/under/explorer/utility/medical, -/obj/item/clothing/shoes/boots/winter/explorer, -/obj/item/clothing/shoes/boots/winter/explorer, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bOh" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bOi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bOj" = ( -/obj/structure/table/woodentable, -/obj/item/device/taperecorder, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bOk" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Exploration Briefing Room" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bOl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bOm" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/door/window/southleft{ - name = "Jetpack Storage"; - req_access = newlist(); - req_one_access = list(11,24) - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bOn" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/door/window/southright{ - name = "Jetpack Storage"; - req_one_access = list(11,24) - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bOo" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Atmospherics Hardsuits"; - req_access = list(24) - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/atmos, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/atmos, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bOp" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Atmospherics Hardsuits"; - req_access = list(24) - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/atmos, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/atmos, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bOq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bOr" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bOs" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/wall/r_wall, -/area/engineering/hallway) -"bOt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bOu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bOv" = ( -/obj/machinery/power/smes/buildable{ - charge = 1e+007; - cur_coils = 4; - input_attempt = 1; - input_level = 500000; - output_level = 500000; - RCon_tag = "Engine - Main" - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"bOw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/button/remote/airlock{ - id = "engine_electrical_maintenance"; - name = "Door Bolt Control"; - pixel_x = 26; - pixel_y = 0; - req_access = list(10); - specialfunctions = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bOx" = ( -/obj/machinery/computer/general_air_control/supermatter_core{ - frequency = 1438; - input_tag = "cooling_in"; - name = "Engine Cooling Control"; - output_tag = "cooling_out"; - pressure_setting = 100; - sensors = list("engine_sensor" = "Engine Core") - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bOy" = ( -/obj/machinery/computer/rcon{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bOz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/computer/power_monitor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bOA" = ( -/obj/machinery/computer/security/engineering{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bOB" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"bOC" = ( -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "eng_al_c_snsr"; - pixel_x = -25; - pixel_y = 0 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "engine_airlock_pump" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bOD" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bOE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "engine_airlock_pump" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bOF" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/engine_airlock) -"bOG" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/engine_airlock) -"bOH" = ( -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "eng_starboard_exterior"; - locked = 1; - req_access = list(11,24) - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "eng_starboard_airlock"; - pixel_x = 5; - pixel_y = -25 - }, -/turf/simulated/floor/plating/snow/plating, -/area/engineering/engine_airlock) -"bOI" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bOJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bOK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bOL" = ( -/obj/item/weapon/storage/box/matches, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/item/weapon/deck/cards, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bOM" = ( -/obj/structure/table/reinforced, -/obj/item/device/communicator, -/obj/item/device/communicator, -/obj/item/device/communicator, -/obj/item/device/communicator, -/obj/machinery/camera/network/command{ - c_tag = "Gateway"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bON" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bOO" = ( -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bOP" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"bOQ" = ( -/obj/machinery/door/window/westleft{ - dir = 8; - name = "Server Room"; - opacity = 0; - req_access = list(30) - }, -/obj/machinery/door/window/eastleft{ - name = "Server Room" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/server) -"bOR" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - icon_state = "map_vent_out"; - use_power = 1 - }, -/turf/simulated/floor/greengrid, -/area/server) -"bOS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/greengrid, -/area/server) -"bOT" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/greengrid, -/area/server) -"bOU" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bOV" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bOW" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 28 - }, -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bOX" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bOY" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bOZ" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bPa" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bPb" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/beakers, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bPc" = ( -/obj/machinery/computer/phoronics, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bPd" = ( -/obj/machinery/telepad_phoronics, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bPe" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/generator_type2{ - dir = 4; - name = "aging thermoelectric generator" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bPf" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bPg" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bPh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bPi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bPj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bPk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bPl" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bPm" = ( -/obj/machinery/light/small, -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bPn" = ( -/turf/simulated/wall/r_wall, -/area/cryogaia/station/excursion_dock) -"bPo" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(); - req_one_access = list(19,43,67) - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bPp" = ( -/turf/simulated/wall/r_wall, -/area/cryogaia/station/pathfinder_office) -"bPq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "hop_office" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "pathfinder_office" - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/pathfinder_office) -"bPr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "hop_office" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "pathfinder_office" - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/pathfinder_office) -"bPs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "hop_office" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "pathfinder_office" - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/pathfinder_office) -"bPt" = ( -/turf/simulated/wall/titanium, -/area/cryogaia/station/excursion_dock) -"bPu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bPv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds/traderpad) -"bPw" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bPx" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bPy" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bPz" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bPA" = ( -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bPB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bPC" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bPD" = ( -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = -3; - pixel_y = 0 - }, -/obj/structure/table/steel_reinforced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 36; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bPE" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) -"bPF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/door/blast/regular{ - icon_state = "pdoor1"; - id = "EngineEmitterPortWest"; - layer = 3.3; - name = "Engine Waste Handling Access" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bPG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/door/blast/regular{ - icon_state = "pdoor1"; - id = "EngineEmitterPortWest"; - layer = 3.3; - name = "Engine Waste Handling Access" - }, -/turf/simulated/floor, -/area/engineering/engine_waste) -"bPH" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_electrical_maintenance"; - locked = 1; - name = "Electrical Maintenance"; - req_access = list(10) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bPI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"bPJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full{ - icon_state = "fwindow"; - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"bPK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - frequency = 1379; - icon_state = "door_closed"; - id_tag = "engine_airlock_interior"; - locked = 0; - name = "Engine Airlock Interior"; - req_access = list(11) - }, -/turf/simulated/floor/plating, -/area/engineering/engine_airlock) -"bPL" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) -"bPM" = ( -/turf/simulated/wall/r_lead, -/area/borealis2/outdoors/grounds) -"bPN" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/portables_connector{ - dir = 2 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bPO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 6 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bPP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bPQ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/computer/drone_control, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bPR" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bPS" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bPT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"bPU" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/gateway) -"bPV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bPW" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bPX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bPY" = ( -/obj/machinery/requests_console/preset/research, -/turf/simulated/wall/r_wall, -/area/rnd/phoronics) -"bPZ" = ( -/obj/machinery/computer/telescience{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bQa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bQb" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bQc" = ( -/obj/item/weapon/stool/padded{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bQd" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/chemical_dispenser/full{ - density = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bQe" = ( -/obj/machinery/atmospherics/valve, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bQf" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bQg" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bQh" = ( -/obj/item/weapon/stool/padded, -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bQi" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bQj" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bQk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bQl" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bQm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bQn" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bQo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bQp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bQq" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 22 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bQr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/excursion_dock) -"bQs" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/cryogaia/station/excursion_dock) -"bQt" = ( -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bQu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bQv" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bQw" = ( -/obj/machinery/photocopier, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bQx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bQy" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bQz" = ( -/obj/structure/closet/secure_closet/pathfinder, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bQA" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/industrial/danger/corner, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bQB" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/machinery/camera/network/exploration{ - c_tag = "Exploration Meeting Room" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bQC" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bQD" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bQE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bQF" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "trade_shuttle_dock_inner"; - locked = 1; - name = "Dock One Internal Access"; - req_access = list(13) - }, -/turf/simulated/floor/tiled/dark, -/area/borealis2/outdoors/grounds/traderpad) -"bQG" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bQH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bQI" = ( -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bQJ" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - EVA"; - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4; - icon_state = "corner_white_full" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bQK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bQL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bQM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineEmitterPortWest"; - name = "Engine Room Blast Doors"; - pixel_x = 0; - pixel_y = 25; - req_access = null; - req_one_access = list(11,24) - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQN" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/machinery/alarm/nobreach{ - dir = 2; - pixel_y = 22 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQP" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Engine Output"; - name_tag = "Engine Output" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQQ" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable{ - charge = 2e+006; - input_attempt = 1; - input_level = 100000; - output_level = 200000; - RCon_tag = "Engine - Core" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQR" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQS" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQT" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQU" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQV" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Engine Power"; - name_tag = "Engine Power" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQW" = ( -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/super/critical{ - dir = 1; - is_critical = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQX" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bQY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bQZ" = ( -/obj/machinery/airlock_sensor/airlock_interior{ - id_tag = "eng_al_int_snsr"; - master_tag = "engine_room_airlock"; - pixel_y = 22; - req_access = list(10) - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bRa" = ( -/turf/simulated/floor, -/area/engineering/engine_room) -"bRb" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/frame, -/obj/machinery/atmospherics/pipe/cap/visible{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bRc" = ( -/obj/machinery/atmospherics/binary/pump/high_power, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bRd" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor, -/area/engineering/engine_room) -"bRe" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineeringatmos{ - name = "Engineering"; - req_one_access = list(10) - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bRf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bRg" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Drone Fabrication"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/engineering/drone_fabrication) -"bRh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bRi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bRj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bRk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bRl" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/tiled, -/area/gateway) -"bRm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bRn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bRo" = ( -/obj/machinery/door/airlock/engineering{ - name = "Science Substation"; - req_one_access = list(11,24,47) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"bRp" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atm{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bRq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"bRr" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Research Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"bRs" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/research) -"bRt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bRu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/phoronics) -"bRv" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 6; - pixel_y = 6; - req_access = list(47) - }, -/obj/machinery/button/ignition{ - id = "Xenobio"; - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/monkeycubes, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bRw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bRx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bRy" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/machinery/bunsen_burner, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bRz" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/solution_trays, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bRA" = ( -/obj/machinery/phoroanalyzer, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bRB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/rnd/phoronics) -"bRC" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bRD" = ( -/obj/structure/table/standard, -/obj/item/weapon/tape_roll, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bRE" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/laundry_basket, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bRF" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bRG" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/ushanka, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bRH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bRI" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bRJ" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bRK" = ( -/obj/item/latexballon, -/turf/simulated/floor, -/area/crew_quarters/locker/locker_toilet) -"bRL" = ( -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/open, -/area/cryogaia/station/excursion_dock) -"bRM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"bRN" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/research{ - name = "Pathfinder's Office"; - req_access = list(62); - req_one_access = list(62) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bRO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bRP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bRQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bRR" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bRS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Pathfinder" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bRT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/camera/network/exploration{ - c_tag = "Exploration Meeting Room"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"bRU" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bRV" = ( -/turf/simulated/shuttle/wall/voidcraft/lightblue, -/area/shuttle/excursion/cryogaia) -"bRW" = ( -/turf/simulated/floor/reinforced, -/area/cryogaia/station/excursion_dock) -"bRX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cryogaia) -"bRY" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bRZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bSa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds/traderpad) -"bSb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds/traderpad) -"bSc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "trade_shuttle_dock_airlock"; - pixel_x = 28; - pixel_y = 0; - req_one_access = list(13); - tag_airpump = "trade_shuttle_dock_pump"; - tag_chamber_sensor = "trade_shuttle_dock_sensor"; - tag_exterior_door = "trade_shuttle_dock_outer"; - tag_interior_door = "trade_shuttle_dock_inner" - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds/traderpad) -"bSd" = ( -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/clothing/suit/space/void/engineering, -/obj/machinery/door/window/northleft{ - name = "Engineering Hardsuits"; - req_access = list(11) - }, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bSe" = ( -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/clothing/suit/space/void/engineering, -/obj/machinery/door/window/northright{ - name = "Engineering Hardsuits"; - req_access = list(11) - }, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bSf" = ( -/obj/machinery/suit_cycler/engineering, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering EVA Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bSg" = ( -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/clothing/suit/space/void/engineering, -/obj/machinery/door/window/northleft{ - name = "Engineering Hardsuits"; - req_access = list(11) - }, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bSh" = ( -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/clothing/suit/space/void/engineering, -/obj/machinery/door/window/northright{ - name = "Engineering Hardsuits"; - req_access = list(11) - }, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4; - icon_state = "corner_white_full" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_eva) -"bSi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor, -/area/engineering/engine_room) -"bSj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 6 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bSk" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/engineering/engine_room) -"bSl" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bSm" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bSn" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bSo" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bSp" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bSq" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bSr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bSs" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bSt" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bSu" = ( -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bSv" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bSw" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bSx" = ( -/turf/simulated/wall, -/area/maintenance/research_port) -"bSy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bSz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bSA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bSB" = ( -/obj/machinery/floodlight, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/gateway) -"bSC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bSD" = ( -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bSE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"bSF" = ( -/obj/machinery/power/smes/buildable{ - charge = 0; - RCon_tag = "Substation - Research" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"bSG" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"bSH" = ( -/turf/simulated/wall, -/area/maintenance/substation/research) -"bSI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bSJ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bSK" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Telescience and Phorochemistry"; - req_access = list(7); - req_one_access = list(7) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bSL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bSM" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bSN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bSO" = ( -/obj/structure/table/standard, -/obj/structure/table/standard, -/obj/item/stack/cable_coil, -/obj/item/device/multitool, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bSP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/rnd/phoronics) -"bSQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/power/grid_checker, -/obj/structure/cable, -/turf/simulated/floor/tiled, -/area/engineering/engine_smes) -"bSR" = ( -/obj/structure/table/standard, -/obj/item/device/text_to_speech, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bSS" = ( -/obj/structure/table/standard, -/obj/item/weapon/coin/silver, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bST" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bSU" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/fedora, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bSV" = ( -/obj/machinery/lapvend, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bSW" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5; - pixel_y = 0 - }, -/obj/structure/curtain/open/shower, -/obj/machinery/alarm/nobreach{ - dir = 2; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bSX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bSY" = ( -/obj/machinery/shower{ - dir = 8; - icon_state = "shower"; - pixel_x = -5; - pixel_y = 0 - }, -/obj/structure/curtain/open/shower, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bSZ" = ( -/obj/structure/bed/chair, -/obj/random/contraband, -/turf/simulated/floor, -/area/crew_quarters/locker/locker_toilet) -"bTa" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bTb" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bTc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"bTd" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/flora/pottedplant/stoutbush, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bTe" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/camera/network/exploration{ - c_tag = "Exploration Hangar Fore" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bTf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bTg" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bTh" = ( -/obj/structure/table/woodentable, -/obj/machinery/button/windowtint{ - id = "pathfinder_office"; - pixel_x = 26; - pixel_y = -26 - }, -/obj/item/device/binoculars, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bTi" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/exploration, -/obj/item/clothing/head/helmet/space/void/exploration, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/pathfinder_office) -"bTj" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bTk" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bTl" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner/lightblue, -/area/shuttle/excursion/cryogaia) -"bTm" = ( -/obj/structure/flight_left, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/cryogaia) -"bTn" = ( -/obj/machinery/computer/shuttle_control/web/excursion{ - icon = 'icons/obj/computer.dmi'; - my_doors = list("expshuttle_door_Ro" = "Airlock Outer", "expshuttle_door_Ri" = "Airlock Inner", "expshuttle_door_cargo" = "Cargo Hatch"); - my_sensors = list("shuttlesens_exp" = "Exterior Environment", "shuttlesens_exp_int" = "Cargo Area", "shuttlesens_exp_psg" = "Passenger Area") - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/cryogaia) -"bTo" = ( -/obj/structure/flight_right, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/cryogaia) -"bTp" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 5 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bTq" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bTr" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bTs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bTt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/camera/network/northern_star{ - c_tag = "DOCK - Dock 1 End"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "trade_shuttle_dock_pump" - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds/traderpad) -"bTu" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds/traderpad) -"bTv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "trade_shuttle_dock_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "trade_shuttle_dock_sensor"; - pixel_x = 30; - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds/traderpad) -"bTw" = ( -/obj/structure/fence/door, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bTx" = ( -/obj/structure/fence/corner{ - dir = 4 - }, -/obj/structure/fence/corner, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bTy" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_eva) -"bTz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor, -/area/engineering/engine_room) -"bTA" = ( -/obj/machinery/atmospherics/trinary/atmos_filter/m_filter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor, -/area/engineering/engine_room) -"bTC" = ( -/obj/machinery/atmospherics/trinary/atmos_filter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bTE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bTF" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTG" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTI" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTJ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bTK" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bTL" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "Emergency Cooling Valve 1" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTM" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTN" = ( -/obj/effect/decal/cleanable/generic, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor, -/area/engineering/engine_room) -"bTO" = ( -/obj/effect/decal/cleanable/generic, -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bTP" = ( -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bTS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bTT" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/gateway) -"bTU" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/gateway) -"bTV" = ( -/obj/structure/table/reinforced, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/turf/simulated/floor/tiled, -/area/gateway) -"bTW" = ( -/obj/machinery/light, -/obj/structure/closet/excavation, -/obj/item/device/multitool, -/obj/item/device/multitool, -/turf/simulated/floor/tiled, -/area/gateway) -"bTX" = ( -/obj/structure/table/reinforced, -/obj/item/roller, -/obj/item/roller, -/turf/simulated/floor/tiled, -/area/gateway) -"bTY" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/adv, -/obj/item/weapon/storage/firstaid/adv, -/turf/simulated/floor/tiled, -/area/gateway) -"bTZ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/floor/tiled, -/area/gateway) -"bUa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"bUb" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Research Subgrid"; - name_tag = "Research Subgrid" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"bUc" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"bUd" = ( -/obj/machinery/door/airlock/engineering{ - name = "Science Substation"; - req_one_access = list(11,24,47) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"bUe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bUf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bUg" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Telescience and Phorochemistry"; - req_access = list(7); - req_one_access = list(7) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bUh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bUi" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bUj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bUk" = ( -/obj/machinery/door/window/westleft{ - name = "Phorochemistry" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bUl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bUm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bUn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bUo" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bUp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/rnd/phoronics) -"bUq" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bUr" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bUs" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bUt" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bUu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust/part_rusted3, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bUv" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bUw" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5; - pixel_y = 0 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bUx" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/item/weapon/bikehorn/rubberducky, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bUy" = ( -/obj/machinery/shower{ - dir = 8; - icon_state = "shower"; - pixel_x = -5; - pixel_y = 0 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/locker/locker_toilet) -"bUz" = ( -/obj/item/weapon/handcuffs/cable/pink{ - desc = "Looks fluffy and comfy. Could be used to tie something up."; - name = "Fuzzy Cuffs" - }, -/obj/item/latexballon, -/turf/simulated/floor, -/area/crew_quarters/locker/locker_toilet) -"bUA" = ( -/obj/structure/snowman/borg, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bUB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/wall/r_wall, -/area/cryogaia/station/excursion_dock) -"bUC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/wall/r_wall, -/area/cryogaia/station/excursion_dock) -"bUD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/noticeboard/airlock{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"bUE" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall, -/area/cryogaia/station/pathfinder_office) -"bUF" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science, -/obj/item/weapon/ice_pick, -/obj/item/weapon/ice_pick, -/obj/item/weapon/ice_pick, -/obj/structure/noticeboard/exploration{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bUG" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized, -/obj/structure/window/reinforced/polarized/full{ - id = "pathfinder_office" - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/pathfinder_office) -"bUH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "pathfinder_office" - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/pathfinder_office) -"bUI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "pathfinder_office" - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/pathfinder_office) -"bUJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cryogaia) -"bUK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 5 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bUL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bUM" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bUN" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/belt/utility/full, -/obj/item/clothing/head/pilot, -/obj/item/clothing/head/pilot, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/toolbox/emergency, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bUO" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/shuttle/excursion/cryogaia) -"bUP" = ( -/obj/structure/bed/chair/comfy/blue{ - icon_state = "comfychair_preview"; - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bUQ" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - pixel_x = 26; - pixel_y = 39; - req_access = list(67) - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bUR" = ( -/obj/structure/bed/chair/comfy/blue{ - icon_state = "comfychair_preview"; - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 6; - pixel_y = 32 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bUS" = ( -/obj/machinery/cooker/grill{ - dir = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bUT" = ( -/obj/structure/closet/walllocker/emerglocker/north, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bUU" = ( -/obj/structure/table/bench/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bUV" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bUW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cryogaia) -"bUX" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/traderpad) -"bUY" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/traderpad) -"bUZ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bVa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bVb" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "trade_shuttle_dock_outer"; - locked = 1; - name = "Dock One External Access"; - req_access = list(13) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/tiled/dark, -/area/borealis2/outdoors/grounds/traderpad) -"bVc" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "trade_shuttle_dock_airlock"; - name = "exterior access button"; - pixel_x = 28; - pixel_y = -6; - req_access = list(13) - }, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "trade_shuttle_dock_outer"; - locked = 1; - name = "Dock One External Access"; - req_access = list(13) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/tiled/dark, -/area/borealis2/outdoors/grounds/traderpad) -"bVd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"bVe" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVf" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVg" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engine Gas Storage" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bVi" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bVj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bVk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVl" = ( -/obj/machinery/power/emitter{ - anchored = 1; - id = "EngineEmitter"; - state = 2 - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVo" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVq" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bVs" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/turf/simulated/wall/r_lead, -/area/borealis2/outdoors/grounds) -"bVt" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bVu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/wall/r_lead, -/area/borealis2/outdoors/grounds) -"bVv" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bVw" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bVx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/orange, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bVy" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - name = "Grenade Crate"; - opened = 1 - }, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/phoronics) -"bVz" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bVA" = ( -/obj/machinery/washing_machine, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bVB" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/disposal, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bVC" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/camera/network/research{ - c_tag = "Research Phorochemistry"; - dir = 1; - network = list("Research","Miscellaneous Reseach") - }, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bVD" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/belt/utility/full, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen/fountain, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bVE" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bVF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"bVG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bVH" = ( -/turf/simulated/wall, -/area/crew_quarters/locker) -"bVI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/cryogaia/station/excursion_dock) -"bVJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"bVK" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"bVL" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - icon_state = "steel_decals_central5"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"bVM" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science, -/obj/item/weapon/ice_pick, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bVN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"bVO" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bVP" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bVQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bVR" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bVS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bVT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bVU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bVV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bVW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bVX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/voidcraft{ - req_access = list(); - req_one_access = list(19,43,67) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/excursion/cryogaia) -"bVY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bVZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bWa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bWb" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bWc" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/traderpad) -"bWd" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/shuttle/trade/station) -"bWe" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor, -/area/engineering/engine_room) -"bWf" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor, -/area/engineering/engine_room) -"bWg" = ( -/obj/machinery/atmospherics/pipe/cap/visible, -/turf/simulated/floor, -/area/engineering/engine_room) -"bWh" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWi" = ( -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWk" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWm" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - pixel_x = 5; - pixel_y = -25; - req_access = list(10) - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine charging port."; - id = "SupermatterPort"; - name = "Reactor Blast Doors"; - pixel_x = -5; - pixel_y = -25; - req_access = list(10) - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWp" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWr" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bWt" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bWu" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bWv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bWw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bWx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bWy" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Science Maintenance" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bWz" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"bWA" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/weapon/storage/backpack/dufflebag, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bWB" = ( -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bWC" = ( -/obj/effect/floor_decal/rust/mono_rusted3, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bWD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bWE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf, -/obj/item/weapon/shovel, -/obj/item/weapon/ice_pick, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bWF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/crew_quarters/locker) -"bWG" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/crew_quarters/locker) -"bWH" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Locker_exit_control"; - name = "Locker Room Exit Controller"; - pixel_x = 0; - pixel_y = 25; - tag_exterior_door = "locker_exit_exterior"; - tag_interior_door = "locker_exit_interior" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/crew_quarters/locker) -"bWI" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "Exploration_exit_exterior"; - locked = 1 - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "Exploration_exit_control"; - pixel_x = -6; - pixel_y = 25 - }, -/turf/simulated/floor/plating/snow/plating, -/area/cryogaia/station/excursion_dock) -"bWJ" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"bWK" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"bWL" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - id_tag = "Exploration_exit_interior"; - locked = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "Exploration_exit_control"; - pixel_x = -6; - pixel_y = 25 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bWM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"bWN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bWO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/space) -"bWP" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bWQ" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"bWR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/shuttle/excursion/cryogaia) -"bWS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/door/airlock/voidcraft/vertical, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"bWT" = ( -/obj/structure/sign/department/bridge, -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/shuttle/excursion/cryogaia) -"bWU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - id_tag = "locker_exit_interior"; - locked = 1 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "Locker_exit_control"; - pixel_x = -5; - pixel_y = 25 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bWV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cryogaia) -"bWW" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/shuttle/excursion/cryogaia) -"bWX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/voidcraft/vertical, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"bWY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bWZ" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu10, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bXa" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - icon_state = "steel_decals_central5"; - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"bXb" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"bXc" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bXd" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor, -/area/engineering/engine_room) -"bXe" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bXf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor, -/area/engineering/engine_room) -"bXg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/turf/simulated/floor, -/area/engineering/engine_room) -"bXh" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/engineering/engine_room) -"bXi" = ( -/obj/machinery/camera/network/engine{ - c_tag = "ENG - Engine Core West"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bXj" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_access_hatch"; - locked = 1; - req_access = list(11) - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bXk" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/machinery/door/blast/regular{ - dir = 8; - id = "SupermatterPort"; - layer = 3.3; - name = "Reactor Blast Door" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bXl" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_access_hatch"; - locked = 1; - req_access = list(11) - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bXm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/camera/network/engine{ - c_tag = "ENG - Engine Core East"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bXn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bXo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bXp" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bXq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bXr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bXs" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bXt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bXu" = ( -/turf/simulated/wall/r_wall, -/area/rnd/research/testingrange) -"bXv" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Science Maintenance"; - req_access = list(7) - }, -/turf/simulated/floor/plating, -/area/rnd/research/testingrange) -"bXw" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research Hall Aft"; - dir = 4; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"bXx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"bXy" = ( -/turf/simulated/wall, -/area/rnd/hallway) -"bXz" = ( -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/research_starboard) -"bXA" = ( -/turf/simulated/floor/plating, -/area/maintenance/research_starboard) -"bXB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_starboard) -"bXC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_starboard) -"bXD" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_starboard) -"bXE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_starboard) -"bXF" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Science Maintenance" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_starboard) -"bXG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bXH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bXI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bXJ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bXK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bXL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bXM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bXN" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"bXO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/crew_quarters/locker) -"bXP" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/crew_quarters/locker) -"bXQ" = ( -/obj/machinery/door/airlock/glass_external/freezable{ - frequency = 1379; - id_tag = "locker_exit_exterior"; - locked = 1 - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "Locker_exit_control"; - pixel_x = 5; - pixel_y = 25 - }, -/turf/simulated/floor/plating/snow/plating, -/area/crew_quarters/locker) -"bXR" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges3{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bXS" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/surround, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bXT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/excursion_dock) -"bXU" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Exploration_exit_control"; - name = "Exploration Exit Controller"; - pixel_x = -25; - pixel_y = -25; - tag_exterior_door = "Exploration_exit_exterior"; - tag_interior_door = "Exploration_exit_interior" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"bXV" = ( -/obj/structure/cable/green, -/obj/machinery/power/thermoregulator/cryogaia{ - dir = 1; - pixel_y = -30 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"bXW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"bXX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bXY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bXZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bYa" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bYb" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/excursion/cryogaia) -"bYc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/shuttle/wall/voidcraft, -/area/shuttle/excursion/cryogaia) -"bYd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/excursion/cryogaia) -"bYe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/excursion/cryogaia) -"bYf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"bYg" = ( -/obj/structure/bed, -/obj/machinery/iv_drip, -/obj/structure/curtain/open/privacy, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bYh" = ( -/obj/structure/sign/greencross{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bYi" = ( -/obj/machinery/button/remote/blast_door{ - id = "EngineVent"; - name = "Reactor Ventillatory Control"; - pixel_x = -25; - pixel_y = 0; - req_access = list(10) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor, -/area/engineering/engine_room) -"bYk" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bYl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bYm" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/machinery/door/blast/regular{ - dir = 1; - id = "SupermatterPort"; - layer = 3.3; - name = "Reactor Blast Door" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bYn" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1438; - icon_state = "map_injector"; - id = "cooling_in"; - name = "Coolant Injector"; - pixel_y = 1; - power_rating = 30000; - use_power = 1; - volume_rate = 700 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced/nitrogen{ - nitrogen = 82.1472 - }, -/area/engineering/engine_room) -"bYo" = ( -/obj/machinery/air_sensor{ - frequency = 1438; - id_tag = "engine_sensor"; - output = 63 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced/nitrogen{ - nitrogen = 82.1472 - }, -/area/engineering/engine_room) -"bYp" = ( -/obj/machinery/atmospherics/unary/vent_pump/engine{ - dir = 1; - external_pressure_bound = 100; - external_pressure_bound_default = 0; - frequency = 1438; - icon_state = "map_vent_in"; - id_tag = "cooling_out"; - initialize_directions = 1; - use_power = 1; - pressure_checks = 1; - pressure_checks_default = 1; - pump_direction = 0 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced/nitrogen{ - nitrogen = 82.1472 - }, -/area/engineering/engine_room) -"bYq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bYr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - icon_state = "intact"; - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bYs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bYt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bYu" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bYv" = ( -/obj/machinery/shieldwallgen, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bYw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bYx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bYy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bYz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bYA" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bYB" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bYC" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bYD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"bYE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/wildcard{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"bYF" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Science Maintenance" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/hallway) -"bYG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_starboard) -"bYH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_starboard) -"bYI" = ( -/turf/simulated/wall, -/area/maintenance/research_starboard) -"bYJ" = ( -/obj/structure/closet/wardrobe/suit, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bYK" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bYL" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bYM" = ( -/obj/machinery/vending/cola, -/obj/machinery/computer/timeclock/premade/south, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bYN" = ( -/obj/structure/closet/wardrobe/xenos, -/obj/item/clothing/suit/tajaran/furs, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bYO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/obj/item/clothing/shoes/boots/winter/climbing, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bYP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit, -/obj/item/clothing/shoes/boots/winter/climbing, -/obj/structure/noticeboard/airlock{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"bYQ" = ( -/obj/machinery/light/small, -/obj/machinery/power/thermoregulator/cryogaia{ - dir = 1; - pixel_y = -30 - }, -/obj/structure/cable, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/crew_quarters/locker) -"bYR" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Expedition Airlock"; - dir = 1 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/crew_quarters/locker) -"bYS" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/surround, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bYT" = ( -/turf/simulated/wall/r_wall, -/area/cryogaia/station/explorer_prep) -"bYU" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(); - req_one_access = list(19,43,67) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"bYV" = ( -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"bYW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bYX" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bYY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"bYZ" = ( -/obj/item/weapon/cat_box, -/turf/simulated/floor, -/area/maintenance/medbay) -"bZa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/shuttle/excursion/cryogaia) -"bZb" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/excursion/cryogaia) -"bZc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/excursion/cryogaia) -"bZd" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/voidcraft, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"bZe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"bZf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bZg" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32; - pixel_y = 0; - req_access = list(); - req_one_access = list() - }, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bZh" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide/engine_setup, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bZi" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bZj" = ( -/obj/machinery/atmospherics/unary/heat_exchanger, -/turf/simulated/floor, -/area/engineering/engine_room) -"bZk" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/machinery/door/blast/regular{ - dir = 1; - id = "SupermatterPort"; - layer = 3.3; - name = "Reactor Blast Door" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bZl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced/nitrogen{ - nitrogen = 82.1472 - }, -/area/engineering/engine_room) -"bZm" = ( -/obj/machinery/power/supermatter{ - layer = 4 - }, -/obj/machinery/mass_driver{ - id = "enginecore" - }, -/turf/simulated/floor/greengrid/nitrogen, -/area/engineering/engine_room) -"bZn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/nitrogen{ - nitrogen = 82.1472 - }, -/area/engineering/engine_room) -"bZp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bZq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bZr" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZs" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/target_stake, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZu" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZy" = ( -/obj/machinery/door/window/northright{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZB" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_research{ - name = "Weapons Testing Range"; - req_access = list(7); - req_one_access = list(7) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"bZC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"bZD" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"bZE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/research_starboard) -"bZF" = ( -/turf/simulated/wall, -/area/teleporter) -"bZG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/teleporter) -"bZH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass{ - name = "Public Teleporter Access" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bZI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"bZJ" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"bZK" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"bZL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/cryogaia/station/explorer_prep) -"bZM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/machinery/camera/network/exploration{ - c_tag = "Pathfinders Office"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"bZN" = ( -/obj/structure/closet/secure_closet/sar, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"bZO" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - icon_state = "steel_decals_central5"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"bZP" = ( -/obj/machinery/computer/security/exploration{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/excursion/cryogaia) -"bZQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - pixel_x = 26; - pixel_y = 9; - req_access = list(67) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/excursion/cryogaia) -"bZR" = ( -/obj/structure/sign/greencross{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"bZS" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/closet/secure_closet/medical_wall{ - layer = 5; - pixel_y = -32; - req_access = list(); - req_one_access = list() - }, -/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting, -/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/brute, -/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/brute, -/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/burn, -/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/burn, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/inaprovaline, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bZT" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bZU" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"bZV" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bZW" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"bZX" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/machinery/door/blast/regular{ - dir = 1; - id = "SupermatterPort"; - layer = 3.3; - name = "Reactor Blast Door" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bZY" = ( -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/reinforced/nitrogen{ - nitrogen = 82.1472 - }, -/area/engineering/engine_room) -"bZZ" = ( -/turf/simulated/floor/greengrid/nitrogen, -/area/engineering/engine_room) -"caa" = ( -/obj/machinery/camera/network/engine{ - c_tag = "ENG - Engine Core South"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/reinforced/nitrogen{ - nitrogen = 82.1472 - }, -/area/engineering/engine_room) -"cab" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - icon_state = "intact"; - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cac" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cad" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cae" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "Emergency Cooling Valve 2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"caf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cag" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cah" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"cai" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"caj" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/goggles, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"cak" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"cal" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"cam" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"can" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/fancy/cigarettes{ - pixel_y = 2 - }, -/obj/item/weapon/deck/cards, -/obj/item/weapon/book/codex, -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/tiled, -/area/teleporter) -"cao" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/teleporter) -"cap" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"caq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"car" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"cas" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"cat" = ( -/obj/structure/snowman, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"cau" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"cav" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor, -/area/cryogaia/station/explorer_prep) -"caw" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"cax" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"cay" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"caz" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/exploration, -/obj/item/clothing/head/helmet/space/void/exploration, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"caA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"caB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/voidcraft/vertical, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"caC" = ( -/obj/machinery/shuttle_sensor{ - dir = 2; - id_tag = "shuttlesens_exp_psg" - }, -/turf/simulated/shuttle/wall/voidcraft, -/area/shuttle/excursion/cryogaia) -"caG" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) -"caH" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/structure/handrail, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - frequency = 1380; - id_tag = "expshuttle_docker"; - pixel_y = 26; - req_one_access = list(19,43,67); - tag_airpump = "expshuttle_vent"; - tag_chamber_sensor = "expshuttle_sensor"; - tag_exterior_door = "expshuttle_door_Ro"; - tag_exterior_sensor = "expshuttle_exterior_sensor"; - tag_interior_door = "expshuttle_door_Ri" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"caI" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"caJ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"caK" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"caL" = ( -/obj/machinery/door/window/northright{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"caM" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 28; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"caN" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"caO" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"caP" = ( -/obj/structure/closet/wardrobe/xenos, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"caQ" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"caR" = ( -/obj/effect/landmark{ - name = "JoinLateGateway" - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"caS" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/machinery/computer/cryopod/gateway{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"caT" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"caU" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 5; - pixel_y = -6 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"caV" = ( -/obj/structure/table/rack/shelf, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"caW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"caX" = ( -/obj/structure/table/rack/shelf, -/obj/item/device/gps/explorer{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/device/gps/explorer{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/stack/marker_beacon/thirty{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stack/marker_beacon/thirty{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"caY" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"caZ" = ( -/obj/machinery/door/window/brigdoor/westleft{ - req_access = list(); - req_one_access = list(19,43,67) - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"cba" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/cryogaia/station/excursion_dock) -"cbb" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "expshuttle_sensor"; - master_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_internal" - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cbc" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cbd" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/structure/cable/cyan, -/obj/structure/handrail{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cbe" = ( -/obj/structure/sign/warning/airlock, -/turf/simulated/shuttle/wall/voidcraft, -/area/shuttle/excursion/cryogaia) -"cbf" = ( -/obj/machinery/light/small/readylight{ - dir = 8 - }, -/obj/structure/closet/walllocker{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"cbg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"cbh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cbi" = ( -/obj/structure/handrail, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cbj" = ( -/obj/structure/handrail, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cbk" = ( -/obj/structure/handrail, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cbl" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cbn" = ( -/obj/structure/lattice, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"cbo" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"cbp" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"cbq" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"cbr" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/goggles, -/obj/item/weapon/clipboard, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"cbs" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"cbt" = ( -/obj/effect/floor_decal/corner_oldtile/purple/diagonal, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"cbu" = ( -/mob/living/simple_mob/animal/passive/penguin, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/grounds) -"cbv" = ( -/obj/structure/closet/wardrobe/black, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"cbw" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"cbx" = ( -/obj/machinery/cryopod/robot/door/gateway, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"cby" = ( -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"cbz" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"cbA" = ( -/obj/structure/table/bench/wooden, -/obj/effect/landmark/start{ - name = "Explorer" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"cbB" = ( -/obj/structure/table/bench/wooden, -/obj/effect/landmark/start{ - name = "Explorer" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"cbC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - icon_state = "steel_decals_central5"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"cbD" = ( -/obj/structure/table/bench/wooden, -/obj/effect/landmark/start{ - name = "Explorer" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"cbE" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"cbF" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/exploration, -/obj/item/clothing/head/helmet/space/void/exploration, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"cbG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monofloor, -/area/cryogaia/station/excursion_dock) -"cbH" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "expshuttle_door_Ro"; - locked = 1 - }, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 6; - frequency = 1380; - id_tag = "expshuttle_exterior_sensor"; - master_tag = "expshuttle_docker"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cbI" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cbJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cbK" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cbL" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "expshuttle_door_Ri"; - locked = 1 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "expshuttle_docker"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cbM" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"cbN" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cbO" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cbP" = ( -/obj/machinery/light/small/readylight{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cbQ" = ( -/obj/structure/closet/walllocker/emerglocker, -/turf/simulated/shuttle/wall/voidcraft, -/area/shuttle/excursion/cryogaia) -"cbR" = ( -/obj/machinery/light/small/readylight{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cbS" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cbV" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"cbW" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/noticeboard/nanite{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"cbX" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"cbY" = ( -/obj/effect/floor_decal/corner_oldtile/purple/diagonal, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"cbZ" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"cca" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/floor_decal/techfloor/hole, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"ccb" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"ccc" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/floor_decal/techfloor/hole/right, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"ccd" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"cce" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"ccf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"ccg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"cch" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"cci" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"ccj" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"cck" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"ccl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "expshuttle_dock"; - pixel_x = -32; - req_one_access = list(19,43,67) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"ccm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/shuttle/wall/voidcraft/lightblue, -/area/shuttle/excursion/cryogaia) -"ccn" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_internal" - }, -/obj/machinery/oxygen_pump{ - pixel_y = -32 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"ccp" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/machinery/oxygen_pump{ - pixel_y = -32 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"ccq" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"ccr" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"ccs" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"cct" = ( -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"ccu" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"ccv" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"ccw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"ccx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"ccy" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research Firing Range"; - dir = 1; - network = list("Research","Miscellaneous Reseach") - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"ccz" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/goggles, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"ccA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"ccB" = ( -/obj/structure/table/rack, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"ccC" = ( -/obj/effect/floor_decal/corner_oldtile/purple/full, -/obj/structure/barricade, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"ccD" = ( -/obj/effect/floor_decal/corner_oldtile/purple/full{ - dir = 4 - }, -/obj/structure/barricade, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"ccE" = ( -/obj/structure/closet/secure_closet/explorer, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"ccF" = ( -/obj/structure/closet/secure_closet/explorer, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"ccG" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"ccH" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"ccI" = ( -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"ccJ" = ( -/obj/structure/closet/secure_closet/pilot, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"ccK" = ( -/obj/structure/closet/secure_closet/pilot, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"ccL" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"ccM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/suit_cycler/exploration, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"ccN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"ccO" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_external" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cryogaia) -"ccP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/shuttle/wall/voidcraft/lightblue, -/area/shuttle/excursion/cryogaia) -"ccQ" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"ccR" = ( -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/shuttle/residential/main) -"ccS" = ( -/obj/structure/flora/tree/pine, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"ccT" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/phoronreinforced/full, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/research/testingrange) -"ccU" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/phoronreinforced/full, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/research/testingrange) -"ccV" = ( -/obj/machinery/door/airlock/glass_science{ - name = "Nanite Laboratory" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/hallway) -"ccW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_prep) -"ccX" = ( -/obj/machinery/door/window/brigdoor/northright{ - req_access = list(); - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"ccY" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"ccZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/shuttle/wall/voidcraft/lightblue, -/area/shuttle/excursion/cryogaia) -"cda" = ( -/obj/machinery/recharge_station, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdb" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdc" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"cde" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/closet/secure_closet/guncabinet/excursion, -/obj/item/weapon/pickaxe, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/closet/secure_closet/guncabinet/excursion, -/obj/item/weapon/pickaxe, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdg" = ( -/obj/structure/stasis_cage, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdh" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"cdi" = ( -/turf/simulated/open, -/area/rnd/hallway) -"cdj" = ( -/obj/machinery/suit_cycler/pilot, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"cdk" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/pilot, -/obj/item/clothing/head/helmet/space/void/pilot, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"cdl" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/head/helmet/space/void/pilot, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/pilot, -/obj/item/clothing/head/helmet/space/void/pilot, -/turf/simulated/floor/tiled/steel_grid, -/area/cryogaia/station/explorer_prep) -"cdm" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/obj/structure/handrail{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdn" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/voidcraft, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/excursion/cryogaia) -"cdo" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdq" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"cdt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"cdu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"cdv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/voidcraft/vertical, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"cdw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"cdx" = ( -/obj/machinery/power/terminal, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/machinery/power/port_gen/pacman/mrs, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cryogaia) -"cdA" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "shuttle_outbound" - }, -/obj/structure/plasticflaps, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdB" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_outbound" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdF" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"cdG" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdI" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdJ" = ( -/obj/structure/snowman/spider, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"cdK" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdL" = ( -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/obj/random/powercell, -/obj/item/stack/material/tritium{ - amount = 5 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdM" = ( -/turf/simulated/shuttle/wall/voidcraft/no_join, -/area/shuttle/excursion/cryogaia) -"cdN" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdO" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/walllocker/emerglocker/south, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdQ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"cdS" = ( -/obj/machinery/recharger, -/obj/structure/table/steel, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdT" = ( -/obj/machinery/shuttle_sensor{ - dir = 5; - id_tag = "shuttlesens_exp_int" - }, -/turf/simulated/shuttle/wall/voidcraft/no_join, -/area/shuttle/excursion/cryogaia) -"cdU" = ( -/obj/structure/frame, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdV" = ( -/obj/machinery/autolathe, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdW" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/shuttle/wall/voidcraft/lightblue, -/area/shuttle/excursion/cryogaia) -"cdX" = ( -/obj/structure/sign/warning/docking_area, -/turf/simulated/shuttle/wall/voidcraft/lightblue, -/area/shuttle/excursion/cryogaia) -"cdY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_external{ - icon_state = "door_locked"; - id_tag = "expshuttle_door_cargo"; - locked = 1; - req_one_access = list() - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - dir = 4; - icon_state = "doorctrl0"; - id = "expshuttle_door_cargo"; - name = "hatch bolt control"; - pixel_x = -32; - req_one_access = list(19,43,67); - specialfunctions = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cdZ" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges3{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"cea" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges3{ - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"ceb" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges3{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"cec" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cryogaia) -"ced" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_inbound" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cryogaia) -"cee" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cef" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "shuttle_inbound" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cryogaia) -"ceg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/cryogaia/station/excursion_dock) -"ceh" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"cei" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"cej" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"cek" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"cel" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"cem" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"cen" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"ceo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"cep" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"ceq" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"cer" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "hangarsurface"; - name = "Engine Repair Bay"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"ces" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"cet" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/camera/network/exploration{ - c_tag = "Exploration Hallway"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"ceu" = ( -/obj/machinery/light, -/obj/structure/stasis_cage, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"cev" = ( -/obj/structure/stasis_cage, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"cew" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"cex" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/excursion_dock) -"cey" = ( -/obj/structure/showcase/sign, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"cez" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"ceA" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"ceB" = ( -/turf/simulated/wall, -/area/cryogaia/station/excursion_dock) -"ceC" = ( -/obj/machinery/door/blast/shutters{ - id = "hangarsurface"; - name = "Engine Repair Bay" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceD" = ( -/obj/machinery/door/airlock/glass_external/freezable, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"ceE" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceF" = ( -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceG" = ( -/obj/structure/shuttle/engine/propulsion{ - anchored = 0; - dir = 8; - icon_state = "propulsion" - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"ceI" = ( -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"ceJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceN" = ( -/obj/machinery/door/blast/regular{ - icon_state = "pdoor1"; - id = "EngineVent"; - name = "Reactor Vent"; - p_open = 0 - }, -/turf/simulated/floor/reinforced, -/area/borealis2/outdoors/grounds) -"ceO" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"ceP" = ( -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"ceQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds) -"ceR" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/ice_pick, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds) -"ceS" = ( -/obj/structure/table/steel, -/obj/random/tech_supply, -/obj/random/tool, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/tech_supply, -/obj/item/stack/cable_coil/random, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceU" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/item/clothing/glasses/welding, -/obj/item/weapon/weldingtool, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceV" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/cryogaia/station/excursion_dock) -"ceX" = ( -/obj/machinery/door/airlock/glass_external/public, -/turf/simulated/floor/tiled, -/area/borealis2/outdoors/grounds) -"ceY" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior) -"ceZ" = ( -/obj/structure/flora/tree/winter, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior) -"cfa" = ( -/obj/cryogaia_away_spawner/wilds, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior) -"cfb" = ( -/obj/structure/flora/tree/pine, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior) -"cfc" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"cfd" = ( -/obj/structure/flora/tree/winter1, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior) -"cfe" = ( -/obj/structure/showcase/sign, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior) -"cff" = ( -/turf/simulated/wall/r_wall, -/area/cryogaia/outpost/exploration_shed) -"cfg" = ( -/obj/structure/bonfire, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior) -"cfh" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior) -"cfi" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/snow/plating, -/area/cryogaia/outpost/exploration_shed) -"cfj" = ( -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfk" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfl" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior) -"cfm" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior) -"cfn" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfo" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfp" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfq" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfr" = ( -/obj/effect/floor_decal/snow/floor/edges3, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfs" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cft" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfu" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfv" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfw" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfx" = ( -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfy" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfz" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/surround, -/turf/simulated/floor/outdoors/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"cfA" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfB" = ( -/obj/effect/floor_decal/snow/floor/surround{ - dir = 1 - }, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfC" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfD" = ( -/mob/living/simple_mob/animal/sif/savik, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"cfE" = ( -/mob/living/simple_mob/animal/sif/shantak, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"cfF" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfG" = ( -/mob/living/simple_mob/animal/wolf, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"cfH" = ( -/obj/cryogaia_away_spawner/wilds, -/mob/living/simple_mob/animal/sif/savik, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"cfI" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/syndicate_station/south) -"cfJ" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfK" = ( -/obj/effect/spider/eggcluster/small/frost, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior) -"cfL" = ( -/obj/effect/floor_decal/snow/floor/surround{ - dir = 4 - }, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfM" = ( -/obj/cryogaia_away_spawner/wilds, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfN" = ( -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfO" = ( -/obj/structure/flora/tree/winter, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfP" = ( -/turf/unsimulated/wall/planetary/borealis2, -/area/borealis2/outdoors/exterior/explore3) -"cfQ" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors/exterior/explore3) -"cfR" = ( -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/exterior/explore3) -"cfS" = ( -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/explore3) -"cfT" = ( -/turf/unsimulated/wall/planetary/borealis2, -/area/space) -"cfU" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/ice, -/area/borealis2/outdoors/exterior/lake) -"cfV" = ( -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/lake) -"cfW" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/skipjack_station/southwest_solars) -"cfX" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors) -"cfY" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/borealis2/outdoors) -"cfZ" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/skipjack_station/southeast_solars) -"cga" = ( -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/skipjack_station/southwest_solars) -"cgb" = ( -/turf/simulated/floor/outdoors/snow/snow/cryogaia, -/area/syndicate_station/southwest) -"cgc" = ( -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/syndicate_station/southeast) -"cgd" = ( -/obj/effect/spider/eggcluster/small/frost, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/explore3) -"cge" = ( -/obj/cryogaia_away_spawner/wilds, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/exterior/explore3) -"cgf" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"cgg" = ( -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 1 - }, -/obj/machinery/atm{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"cgh" = ( -/obj/machinery/atm{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/steel, -/area/hallway/primary/aft) -"cgi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue, -/obj/machinery/atm{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit_link) -"cgj" = ( -/obj/machinery/atm, -/turf/simulated/wall, -/area/chapel/monastery) -"cgk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/carbon/human/monkey/punpun, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"cgl" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"cgm" = ( -/obj/effect/landmark/map_data/borealis2{ - height = 4 - }, -/turf/unsimulated/wall/planetary/borealis2, -/area/borealis2/outdoors) -"cgn" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"cgo" = ( -/obj/machinery/door/airlock/glass_external/freezable{ - req_one_access = list() - }, -/turf/simulated/floor/plating/snow/plating, -/area/borealis2/outdoors/grounds) -"cgp" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"cgq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/storage/primary) -"cgr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/steel, -/area/security/lobby) -"cgs" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) -"cgt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/security/security_processing) -"cgu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cgv" = ( -/obj/machinery/camera/network/research{ - dir = 2 - }, -/obj/effect/floor_decal/corner_oldtile/purple/diagonal{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/mob/living/simple_mob/slime/xenobio/rainbow/kendrick, -/turf/simulated/floor/tiled/white, -/area/rnd/rdoffice) -"cgw" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) -"cgx" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/engineering/hallway) -"cgy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"cgz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"cgA" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/gateway) -"cgB" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"cgC" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/red, -/area/security/outpost) -"cgD" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"cgE" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_meeting) -"cgF" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/miningwing) -"cgG" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) -"cgH" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/phoronics) -"cgI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Toxins Substation"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"cgJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Xenobiology Surgery"; - dir = 1; - network = list("Research","Miscellaneous Reseach") - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/rnd/research) -"cgK" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_oldtile/purple, -/obj/machinery/computer/security/exploration{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/pathfinder_office) -"cgL" = ( -/obj/structure/closet/secure_closet/sar, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/corner_oldtile/purple{ - dir = 4 - }, -/obj/machinery/camera/network/exploration{ - c_tag = "Exploration Equipment" - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/explorer_prep) -"cgM" = ( -/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/camera/network/exploration{ - c_tag = "Exploration Shuttle Entry"; - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"cgN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/exploration{ - c_tag = "Exploration Hangar Aft"; - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"cgO" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/exploration{ - c_tag = "Exploration Hangar Aft"; - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/cryogaia/station/excursion_dock) -"cgP" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/central) -"cgQ" = ( -/obj/machinery/door/airlock/engineeringatmos{ - name = "Pipe-Power Floor Transfer" - }, -/turf/simulated/floor, -/area/maintenance/engineering) -"cgR" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "32-4" - }, -/turf/simulated/open, -/area/maintenance/engineering) -"cgS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineeringatmos{ - name = "Pipe-Power Floor Transfer" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/engineering) -"cgT" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/wall, -/area/maintenance/engineering) -"cgU" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/orange{ - icon_state = "0-1"; - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/engineering) -"cgV" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/maintenance/engineering) -"cgW" = ( -/turf/simulated/wall, -/area/maintenance/engineering) -"cgX" = ( -/turf/simulated/floor, -/area/maintenance/engineering) -"cgY" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/engineering) -"cgZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/item/weapon/gun/energy/netgun, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/turf/simulated/floor/plating, -/area/maintenance/central) -"cha" = ( -/obj/machinery/door/window/brigdoor/southleft, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chb" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"chc" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"chd" = ( -/obj/machinery/door/window/brigdoor/southright, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"che" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"chf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"chg" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"chh" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "arrivals_dock_south_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "arrivals_dock_south_sensor"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/secondary/entry/docking_lounge) -"chi" = ( -/obj/structure/closet, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chk" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"chm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"cho" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/door/window/brigdoor/westleft, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chp" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"cht" = ( -/obj/machinery/button/remote/blast_door{ - id = "escapesec"; - name = "Emergency Lockdown"; - pixel_x = -30 - }, -/obj/structure/closet/secure_closet/security, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"chx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 1; - name = "Secure Door" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/secondary/exit_link) -"chB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"chC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "escapesec"; - name = "Emergency Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"chD" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chE" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chG" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chH" = ( -/obj/machinery/computer/shuttle_control/residential_shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"chI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/voidcraft/vertical{ - req_access = list(); - req_one_access = list(19,43,67) - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"chJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/voidcraft{ - req_access = list(); - req_one_access = list(19,43,67) - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cryogaia) -"chK" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/bridge/blueshield) -"chL" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 4; - listening = 1; - name = "Common Channel"; - pixel_x = 21; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"chM" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall, -/area/bridge/meeting_room) -"chN" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/engineering/engineering_monitoring) -"chO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cryogaia) -"chP" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall, -/area/engineering/engine_waste) -"chQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"chR" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/rnd/hallway) -"chS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"chT" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/voidcraft, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/excursion/cryogaia) -"chU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/handrail{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cryogaia) -"cLv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/security, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"dDd" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"eti" = ( -/obj/structure/sign/directions/bridge{ - icon_state = "direction_bridge"; - dir = 4 - }, -/turf/simulated/wall, -/area/maintenance/substation/civilian) -"eQA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/science, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"fhn" = ( -/obj/structure/sign/directions/engineering, -/turf/simulated/wall, -/area/hallway/primary/aft) -"fIL" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall, -/area/storage/primary) -"ikW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/body_scanconsole, -/turf/simulated/floor/tiled/white, -/area/medical/medbaymain) -"mBp" = ( -/obj/structure/table/marble, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchen"; - layer = 3.1; - name = "Kitchen Shutters" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"nKF" = ( -/obj/structure/sign/directions/security{ - icon_state = "direction_sec"; - dir = 8 - }, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"oRX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/cargo, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"pcP" = ( -/obj/structure/sign/directions/engineering, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"qfY" = ( -/obj/structure/sign/directions/security, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"tbF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/engineering, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"vvt" = ( -/obj/structure/sign/directions/engineering, -/turf/simulated/wall/r_wall, -/area/maintenance/security_starboard) -"ydj" = ( -/obj/structure/sign/directions/security{ - icon_state = "direction_sec"; - dir = 8 - }, -/turf/simulated/wall, -/area/hallway/primary/aft) -"ylY" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engine Gas Storage" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +"aaa" = (/turf/unsimulated/wall/planetary/borealis2,/area/borealis2/outdoors) +"aab" = (/turf/simulated/wall,/area/borealis2/outdoors/grounds) +"aac" = (/obj/structure/grille,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aad" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"aae" = (/obj/structure/flora/tree/dead,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"aaf" = (/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior) +"aag" = (/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aah" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aai" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aaj" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aak" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/shuttle/escape/station) +"aal" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aam" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aan" = (/turf/simulated/wall,/area/storage/auxillary) +"aao" = (/turf/simulated/wall/titanium,/area/borealis2/outdoors/grounds) +"aap" = (/obj/structure/fence/corner{dir = 8},/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"aaq" = (/obj/structure/fence/door,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"aar" = (/turf/unsimulated/wall/planetary/borealis2,/area/borealis2/outdoors/exterior) +"aas" = (/obj/structure/fence/door,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior) +"aat" = (/obj/structure/fence/corner,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior) +"aau" = (/obj/structure/lattice,/obj/structure/largecrate/birds,/turf/simulated/open,/area/storage/auxillary) +"aav" = (/obj/structure/largecrate/animal/cow,/turf/simulated/floor,/area/storage/auxillary) +"aaw" = (/turf/simulated/floor,/area/storage/auxillary) +"aax" = (/obj/structure/fence,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aay" = (/obj/structure/largecrate,/turf/simulated/floor,/area/storage/auxillary) +"aaz" = (/obj/cryogaia_away_spawner/wilds,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"aaA" = (/obj/structure/flora/tree/winter,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"aaB" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/shuttle/specops/station) +"aaC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds) +"aaD" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"aaE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds) +"aaF" = (/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds) +"aaG" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external,/obj/structure/fans/tiny{name = "Thermal Regulator Vent"},/turf/snow/drift{dir = 4},/area/storage/auxillary) +"aaH" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds) +"aaI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds) +"aaJ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds) +"aaK" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds) +"aaL" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds) +"aaM" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall,/area/borealis2/outdoors/grounds) +"aaN" = (/obj/machinery/trailblazer/red,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aaO" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aaP" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/skipjack_station/northeast_solars) +"aaQ" = (/obj/structure/flora/tree/winter1,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"aaR" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "specops_dock_outer"; locked = 1; name = "Docking Port Airlock"; req_access = list(13)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "specops_dock_airlock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/shield_diffuser,/turf/simulated/floor/tiled/dark,/area/borealis2/outdoors/grounds) +"aaS" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "specops_dock_pump"},/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 8},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds) +"aaT" = (/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "specops_dock_airlock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "specops_dock_pump"; tag_chamber_sensor = "specops_dock_sensor"; tag_exterior_door = "specops_dock_outer"; tag_interior_door = "specops_dock_inner"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "specops_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 4},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds) +"aaU" = (/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "specops_dock_inner"; locked = 1; name = "Docking Port Airlock"; req_access = list(13)},/obj/machinery/shield_diffuser,/turf/simulated/floor/tiled/dark,/area/borealis2/outdoors/grounds) +"aaV" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "specops_dock_airlock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds) +"aaW" = (/obj/machinery/door/airlock/centcom{locked = 0; name = "Restricted Area"; opacity = 1; req_access = list(103)},/obj/machinery/shield_diffuser,/turf/unsimulated/floor{icon_state = "steel"},/area/borealis2/outdoors/grounds) +"aaX" = (/obj/structure/fence/door{dir = 4},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aaY" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"aaZ" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"aba" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"abb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds) +"abc" = (/obj/structure/sign/warning/secure_area,/turf/simulated/wall,/area/borealis2/outdoors/grounds) +"abd" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"abe" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"abf" = (/obj/structure/flora/bush,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"abg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds) +"abh" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds) +"abi" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/shuttle/residential/main) +"abj" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"abk" = (/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"abl" = (/mob/living/simple_mob/animal/passive/gaslamp/snow,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"abm" = (/turf/simulated/wall,/area/hallway/secondary/exit) +"abn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"abo" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "Escape_exit_north_exterior"; locked = 1},/obj/machinery/access_button/airlock_exterior{master_tag = "Escape_exit_north_control"; pixel_x = 25; pixel_y = 7},/turf/simulated/floor/plating/snow/plating,/area/hallway/secondary/exit) +"abp" = (/obj/cryogaia_away_spawner/cryogaia,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"abq" = (/turf/unsimulated/wall/planetary/borealis2,/area/borealis2/outdoors/grounds) +"abr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"abs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"abt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"abu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"abv" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"abw" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"abx" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "Escape_exit_north_control"; name = "Escape North Controller"; pixel_x = 25; pixel_y = 7; tag_exterior_door = "Escape_exit_north_exterior"; tag_interior_door = "Escape_exit_north_interior"},/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 5},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"aby" = (/turf/simulated/wall,/area/security/checkpoint) +"abz" = (/obj/effect/landmark{name = "carpspawn"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"abA" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_dock_north_starboard_outer"; locked = 1; name = "Escape Airlock"; req_access = list(13)},/obj/machinery/mech_sensor{dir = 8; frequency = 1380; id_tag = "escape_dock_north_mech"; pixel_y = 19},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit) +"abB" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "escape_dock_north_starboard_pump"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/hallway/secondary/exit) +"abC" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "escape_dock_snorth_airlock"; master_tag = "escape_dock"; pixel_y = 30; req_one_access = list(13); tag_airlock_mech_sensor = "escape_dock_north_starboard_mech"; tag_airpump = "escape_dock_north_starboard_pump"; tag_chamber_sensor = "escape_dock_north_starboard_sensor"; tag_exterior_door = "escape_dock_north_starboard_outer"; tag_interior_door = "escape_dock_north_starboard_inner"; tag_shuttle_mech_sensor = "shuttle_dock_north_starboard_mech"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/hallway/secondary/exit) +"abD" = (/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_dock_north_starboard_inner"; locked = 1; name = "Docking Port Airlock"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit) +"abE" = (/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"abF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"abG" = (/obj/structure/disposalpipe/trunk,/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"abH" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"abI" = (/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"abJ" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/thermoregulator/cryogaia{dir = 4; pixel_x = -30},/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"abK" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"abL" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"abM" = (/obj/machinery/computer/card{dir = 8},/turf/simulated/floor/tiled,/area/security/checkpoint) +"abN" = (/obj/machinery/computer/security{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint) +"abO" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/security/checkpoint) +"abP" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/skipjack_station/northwest_solars) +"abQ" = (/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/syndicate_station/north) +"abR" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_dock_north_starboard_outer"; locked = 1; name = "Escape Airlock"; req_access = list(13)},/obj/machinery/mech_sensor{dir = 8; frequency = 1380; id_tag = "escape_dock_north_mech"; pixel_y = -19},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "escape_dock_north_starboard_airlock"; name = "exterior access button"; pixel_x = -4; pixel_y = -26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit) +"abS" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "escape_dock_north_starboard_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "escape_dock_north_starboard_sensor"; pixel_x = 0; pixel_y = -25},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/hallway/secondary/exit) +"abT" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/machinery/light/small,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/hallway/secondary/exit) +"abU" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_dock_north_starboard_inner"; locked = 1; name = "Docking Port Airlock"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit) +"abV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"abW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"abX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"abY" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"abZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"aca" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external/public{frequency = 1379; id_tag = "Escape_exit_north_interior"; locked = 1},/obj/machinery/access_button/airlock_interior{master_tag = "Escape_exit_north_control"; pixel_x = 25; pixel_y = 7},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acb" = (/obj/structure/flora/pottedplant/stoutbush,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/security/checkpoint) +"acc" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/security/checkpoint) +"acd" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/security/checkpoint) +"ace" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/checkpoint) +"acf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"acg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"ach" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"aci" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"acj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"ack" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acl" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acm" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acn" = (/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aco" = (/obj/machinery/door/airlock/glass_security{name = "Spaceport Security Airlock"; req_access = list(63)},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/security/checkpoint) +"acp" = (/turf/simulated/floor/tiled,/area/security/checkpoint) +"acq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/security/checkpoint) +"acr" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/security/checkpoint) +"acs" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/security/checkpoint) +"act" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet,/turf/simulated/floor/tiled,/area/security/checkpoint) +"acu" = (/turf/simulated/wall,/area/chapel/monastery) +"acv" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"acw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"acx" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acy" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acB" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acF" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/security/checkpoint) +"acG" = (/obj/structure/bed/chair,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/security/checkpoint) +"acH" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/security/checkpoint) +"acI" = (/turf/simulated/floor/tiled/dark,/area/security/checkpoint) +"acJ" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "32-2"},/turf/simulated/open,/area/chapel/monastery) +"acK" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/turf/simulated/floor/wood,/area/chapel/monastery) +"acL" = (/turf/simulated/floor/wood,/area/chapel/monastery) +"acM" = (/obj/structure/table/glass,/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/chapel/monastery) +"acN" = (/obj/structure/table/glass,/turf/simulated/floor/wood,/area/chapel/monastery) +"acO" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"acP" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acQ" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acR" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"acS" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acT" = (/obj/structure/bed/chair{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"acV" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/security/checkpoint) +"acW" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/checkpoint) +"acX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/security/checkpoint) +"acY" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 2; frequency = 1379; id_tag = "residential_station_north_pump"},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/embedded_controller/radio/airlock/docking_port{id_tag = "residential_shuttle_station"; pixel_y = 30; tag_airlock_mech_sensor = "residential_station_north_mech"; tag_airpump = "residential_station_north_pump"; tag_chamber_sensor = "residential_station_north_sensor"; tag_exterior_door = "residential_station_north_outer"; tag_interior_door = "residential_station_north_inner"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/airlock_sensor{id_tag = "residential_station_north_sensor"; pixel_x = -30},/turf/simulated/floor/tiled/techmaint,/area/security/checkpoint) +"acZ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "residential_station_north_outer"; locked = 1; name = "Residential Airlock"},/turf/simulated/floor/tiled/dark,/area/security/checkpoint) +"ada" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adb" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/wood,/area/chapel/monastery) +"adc" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/wood,/area/chapel/monastery) +"add" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/wood,/area/chapel/monastery) +"ade" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/chapel/monastery) +"adf" = (/obj/machinery/camera/autoname,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"adg" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"adh" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"adi" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"adj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/security/checkpoint) +"adk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/security/checkpoint) +"adl" = (/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit_link) +"adm" = (/obj/structure/transit_tube{icon_state = "D-SE"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"adn" = (/obj/structure/transit_tube{icon_state = "E-SW"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"ado" = (/obj/structure/transit_tube{icon_state = "E-W-Pass"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"adp" = (/obj/structure/transit_tube,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"adq" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/transit_tube,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"adr" = (/obj/structure/transit_tube,/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"ads" = (/obj/structure/transit_tube/station,/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adt" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adv" = (/obj/structure/coatrack,/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adw" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"adx" = (/obj/machinery/bookbinder,/turf/simulated/floor/wood,/area/chapel/monastery) +"ady" = (/obj/machinery/door/airlock{name = "Room 1"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/chapel/monastery) +"adz" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 1; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"adA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"adB" = (/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit_link) +"adC" = (/obj/structure/window/reinforced{dir = 2; health = 1e+006},/turf/simulated/floor/tiled,/area/security/checkpoint) +"adD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/security/checkpoint) +"adE" = (/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/button/remote/blast_door{id = "residential_transfer"; pixel_x = 30},/turf/simulated/floor/tiled,/area/security/checkpoint) +"adF" = (/obj/machinery/door/blast/shutters{dir = 2; id = "residential_transfer"; layer = 3.1; name = "Residential shutters"},/turf/simulated/floor/tiled,/area/security/checkpoint) +"adG" = (/turf/simulated/wall,/area/hallway/secondary/exit_link) +"adH" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/hallway/secondary/exit_link) +"adI" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"adJ" = (/obj/structure/transit_tube{icon_state = "D-NW"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"adK" = (/obj/machinery/camera/network/civilian{c_tag = "Monastary Entry Port"; dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adO" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adP" = (/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/dark,/area/chapel/monastery) +"adQ" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adR" = (/turf/simulated/open,/area/chapel/monastery) +"adS" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adT" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adU" = (/obj/machinery/door/airlock/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"adW" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"adX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"adY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"adZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aea" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"aeb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"aec" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aed" = (/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aee" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_dock_south_starboard_outer"; locked = 1; name = "Escape Airlock"; req_access = list(13)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "escape_dock_south_starboard_airlock"; name = "exterior access button"; pixel_x = -4; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit) +"aef" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "escape_dock_south_starboard_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "escape_dock_south_starboard_sensor"; pixel_x = 0; pixel_y = 25},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/hallway/secondary/exit) +"aeg" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/hallway/secondary/exit) +"aeh" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_dock_south_starboard_inner"; locked = 1; name = "Docking Port Airlock"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit) +"aei" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aej" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aek" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"ael" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aem" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aen" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aeo" = (/obj/machinery/door/airlock/glass,/obj/effect/floor_decal/corner/red{dir = 1},/obj/effect/floor_decal/corner/white{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aep" = (/obj/effect/floor_decal/corner/red{dir = 1},/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"aeq" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/checkpoint) +"aer" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/red{dir = 1},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"aes" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/corner/red{dir = 1},/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"aet" = (/obj/effect/floor_decal/corner/red{dir = 1},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/red,/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"aeu" = (/obj/machinery/door/airlock/glass_external/public{frequency = 1379; id_tag = "Monastary_Exit_Interior"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/access_button/airlock_interior{master_tag = "Monastary_Exit"; pixel_x = 26; pixel_y = -6},/turf/simulated/floor/tiled,/area/chapel/monastery) +"aev" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"aew" = (/obj/structure/railing{dir = 1},/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/dark,/area/chapel/monastery) +"aex" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "Monastary Hall Starboard"; dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"aey" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"aez" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"aeA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aeB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aeC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "Monastary Central Hall Fore"; dir = 1},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aeD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aeE" = (/obj/machinery/door/airlock{name = "Room 2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/chapel/monastery) +"aeF" = (/obj/machinery/light/small,/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/wood,/area/chapel/monastery) +"aeG" = (/obj/structure/closet/cabinet,/turf/simulated/floor/wood,/area/borealis2/outdoors/grounds) +"aeH" = (/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/wood,/area/borealis2/outdoors/grounds) +"aeI" = (/obj/machinery/cooker/grill,/turf/simulated/floor/wood,/area/borealis2/outdoors/grounds) +"aeJ" = (/obj/structure/closet/crate/freezer/meat,/turf/simulated/floor/wood,/area/borealis2/outdoors/grounds) +"aeK" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_dock_south_starboard_outer"; locked = 1; name = "Escape Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit) +"aeL" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "escape_dock_south_starboard_pump"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/hallway/secondary/exit) +"aeM" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "escape_dock_ssouth_airlock"; master_tag = "escape_dock"; pixel_y = -30; req_one_access = list(13); tag_airlock_mech_sensor = "escape_dock_south_starboard_mech"; tag_airpump = "escape_dock_south_starboard_pump"; tag_chamber_sensor = "escape_dock_south_starboard_sensor"; tag_exterior_door = "escape_dock_south_starboard_outer"; tag_interior_door = "escape_dock_south_starboard_inner"; tag_shuttle_mech_sensor = "shuttle_dock_south_starboard_mech"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/hallway/secondary/exit) +"aeN" = (/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_dock_south_starboard_inner"; locked = 1; name = "Docking Port Airlock"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit) +"aeO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aeP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aeQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aeR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aeS" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aeT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aeU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aeV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aeW" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel,/area/hallway/secondary/exit) +"aeX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"aeY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"aeZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"afa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"afb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"afc" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"afd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit_link) +"afe" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit_link) +"aff" = (/obj/structure/railing,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"afg" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"afh" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/chapel/monastery) +"afi" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "Monastary_Exit"; name = "Monastary Exit Controller"; pixel_x = 26; pixel_y = 0; tag_exterior_door = "Monastary_Exit_Exterior"; tag_interior_door = "Monastary_Exit_Interior"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 5},/turf/simulated/floor/tiled/techmaint,/area/chapel/monastery) +"afj" = (/turf/simulated/wall,/area/chapel/monastery/kitchen) +"afk" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/chapel/monastery/kitchen) +"afl" = (/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"afm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"afn" = (/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"afo" = (/turf/simulated/floor/wood,/area/borealis2/outdoors/grounds) +"afp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"afq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"afr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"afs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aft" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"afu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/red,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"afv" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"afw" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"afx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"afy" = (/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"afz" = (/obj/machinery/door/airlock/glass,/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"afA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 8},/obj/structure/noticeboard/airlock{pixel_y = -30},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"afB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"afC" = (/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"afD" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"afE" = (/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"afF" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"afG" = (/obj/structure/transit_tube/station,/obj/structure/transit_tube_pod{icon_state = "pod"; dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit_link) +"afH" = (/obj/structure/transit_tube,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit_link) +"afI" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/transit_tube,/turf/simulated/floor/tiled/steel,/area/hallway/secondary/exit_link) +"afJ" = (/obj/structure/transit_tube{dir = 7},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"afK" = (/obj/structure/transit_tube{icon_state = "W-NE"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"afL" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/chapel/monastery) +"afM" = (/obj/machinery/power/thermoregulator/cryogaia{dir = 8; pixel_x = 30},/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/effect/floor_decal/rust,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techmaint,/area/chapel/monastery) +"afN" = (/obj/effect/floor_decal/corner/green/diagonal,/obj/structure/table/standard,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"afO" = (/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"afP" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"afQ" = (/obj/structure/bed/chair/wood/wings,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"afR" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"afS" = (/turf/simulated/floor/grass2,/area/chapel/monastery) +"afT" = (/obj/structure/flora/ausbushes/palebush,/turf/simulated/floor/grass2,/area/chapel/monastery) +"afU" = (/obj/machinery/light{dir = 1},/obj/structure/table/bench/wooden,/turf/simulated/floor/grass2,/area/chapel/monastery) +"afV" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass2,/area/chapel/monastery) +"afW" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass2,/area/chapel/monastery) +"afX" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/item/seeds/random,/turf/simulated/floor/grass2,/area/chapel/monastery) +"afY" = (/obj/structure/bed/pod,/turf/simulated/floor/wood,/area/chapel/monastery) +"afZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/chapel/monastery) +"aga" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/beach/sand/desert,/area/borealis2/outdoors/grounds) +"agb" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/beach/sand/desert,/area/borealis2/outdoors/grounds) +"agc" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/beach/sand/desert,/area/borealis2/outdoors/grounds) +"agd" = (/obj/structure/flora/pottedplant/large,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"age" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agf" = (/obj/machinery/light,/obj/machinery/embedded_controller/radio/docking_port_multi{child_names_txt = "Airlock One;Airlock Two;Airlock Three;Airlock Four"; child_tags_txt = "escape_dock_snorth_airlock;escape_dock_ssouth_airlock"; frequency = 1380; id_tag = "escape_dock"; pixel_x = 0; pixel_y = -25; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agh" = (/obj/structure/bed/chair{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera/autoname{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass{name = "Emergency Cold Apparel"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agj" = (/obj/machinery/door/airlock/glass{name = "Emergency Cold Apparel"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agk" = (/turf/simulated/wall,/area/hallway/secondary/entry/docking_lounge) +"agl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"agm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"agn" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"ago" = (/obj/machinery/door/airlock/glass_external/freezable{frequency = "1379"; id_tag = "Monastary_Exit_Exterior"},/obj/machinery/access_button/airlock_exterior{master_tag = "Monastary_Exit"; pixel_x = 26; pixel_y = -6},/turf/simulated/floor/plating/snow/plating,/area/chapel/monastery) +"agp" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder,/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"agq" = (/obj/effect/floor_decal/corner/green/diagonal,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"agr" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ags" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"agt" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/structure/table/woodentable,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"agu" = (/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 8},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"agv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"agw" = (/obj/structure/flora/ausbushes/reedbush,/turf/simulated/floor/grass2,/area/chapel/monastery) +"agx" = (/obj/structure/flora/tree/jungle,/turf/simulated/floor/grass2,/area/chapel/monastery) +"agy" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/item/seeds/random,/obj/item/seeds/lavenderseed,/turf/simulated/floor/grass2,/area/chapel/monastery) +"agz" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/item/seeds/lavenderseed,/turf/simulated/floor/grass2,/area/chapel/monastery) +"agA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"agB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"agC" = (/obj/structure/curtain/open/bed,/turf/simulated/floor/wood,/area/chapel/monastery) +"agD" = (/obj/structure/curtain/bed,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/chapel/monastery) +"agE" = (/obj/structure/curtain/bed,/turf/simulated/floor/wood,/area/chapel/monastery) +"agF" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/beach/sand/desert,/area/borealis2/outdoors/grounds) +"agG" = (/obj/structure/bonfire/permanent,/turf/simulated/floor/beach/sand/desert,/area/borealis2/outdoors/grounds) +"agH" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/beach/sand/desert,/area/borealis2/outdoors/grounds) +"agI" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external/public{frequency = 1379; id_tag = "Escape_exit_south_interior"; locked = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/access_button/airlock_interior{master_tag = "Escape_exit_south_control"; pixel_x = 26; pixel_y = -6},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agL" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/obj/item/clothing/shoes/boots/winter,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"agN" = (/obj/structure/curtain/open/shower,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southright{name = "Shower"},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/hallway/secondary/entry/docking_lounge) +"agO" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/entry/docking_lounge) +"agP" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/white,/area/hallway/secondary/entry/docking_lounge) +"agQ" = (/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"agR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"agS" = (/obj/structure/railing{dir = 2; flags = null},/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"agT" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel,/area/chapel/monastery/kitchen) +"agU" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"agV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"agW" = (/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"agX" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"agY" = (/obj/effect/floor_decal/corner/green/full,/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 1},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"agZ" = (/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 1},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"aha" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ahb" = (/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"ahc" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/grass2,/area/chapel/monastery) +"ahd" = (/obj/structure/flora/ausbushes/fernybush,/turf/simulated/floor/grass2,/area/chapel/monastery) +"ahe" = (/obj/structure/flora/ausbushes/leafybush,/turf/simulated/floor/grass2,/area/chapel/monastery) +"ahf" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/grass2,/area/chapel/monastery) +"ahg" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/item/seeds/lustflower,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/grass2,/area/chapel/monastery) +"ahh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{c_tag = "Monastary Central Hall Starboard"; dir = 4},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"ahi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/chapel/monastery) +"ahj" = (/turf/simulated/wall/wood,/area/borealis2/outdoors/grounds) +"ahk" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/beach/sand/desert,/area/borealis2/outdoors/grounds) +"ahl" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/beach/sand/desert,/area/borealis2/outdoors/grounds) +"ahm" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/beach/sand/desert,/area/borealis2/outdoors/grounds) +"ahn" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"aho" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"ahp" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "Escape_exit_south_control"; name = "Escape South Controller"; pixel_x = 25; pixel_y = -5; tag_exterior_door = "Escape_exit_south_exterior"; tag_interior_door = "Escape_exit_south_interior"},/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 5},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"ahq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"ahr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"ahs" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/obj/item/clothing/shoes/boots/winter,/obj/item/weapon/ice_pick,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aht" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/hallway/secondary/entry/docking_lounge) +"ahu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/hallway/secondary/entry/docking_lounge) +"ahv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/mirror{pixel_x = 28},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/hallway/secondary/entry/docking_lounge) +"ahw" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/machinery/camera/network/civilian{c_tag = "Monastary Livery"; dir = 4},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ahx" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ahy" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ahz" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ahA" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ahB" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ahC" = (/obj/machinery/door/airlock/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/chapel/monastery/kitchen) +"ahD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"ahE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"ahF" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"ahG" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass2,/area/chapel/monastery) +"ahH" = (/obj/structure/sink/puddle,/turf/simulated/floor/grass2,/area/chapel/monastery) +"ahI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"ahJ" = (/obj/machinery/door/airlock/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"ahK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/chapel/monastery) +"ahL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/chapel/monastery) +"ahM" = (/turf/simulated/floor/plating,/area/construction/Storage) +"ahN" = (/obj/structure/lattice,/turf/simulated/open,/area/construction/Storage) +"ahO" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"ahP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"ahQ" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"ahR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"ahS" = (/obj/machinery/power/thermoregulator/cryogaia{dir = 8; pixel_x = 30},/obj/structure/cable{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/exit) +"ahT" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"ahU" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/hallway/secondary/entry/docking_lounge) +"ahV" = (/obj/structure/sign/warning/evac,/turf/simulated/wall,/area/hallway/secondary/entry/docking_lounge) +"ahW" = (/obj/machinery/door/firedoor/multi_tile,/obj/machinery/door/airlock/multi_tile/glass,/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ahX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ahY" = (/obj/machinery/seed_storage/garden,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ahZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"aia" = (/obj/effect/floor_decal/corner/green/full{dir = 1},/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"aib" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"aic" = (/obj/effect/floor_decal/corner/green/full{dir = 8},/obj/structure/bed/chair/wood/wings,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"aid" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"aie" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{c_tag = "Monastary Central Hall Port"; dir = 8},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aif" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/item/seeds/wheatseed,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/grass2,/area/chapel/monastery) +"aig" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/item/seeds/wheatseed,/turf/simulated/floor/grass2,/area/chapel/monastery) +"aih" = (/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/grass2,/area/chapel/monastery) +"aii" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aij" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/wood,/area/chapel/monastery) +"aik" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/fans/tiny{name = "Thermal Regulator Vent"},/obj/machinery/door/airlock/glass_external/freezable,/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds) +"ail" = (/obj/structure/sign/warning/hot_exhaust,/turf/simulated/wall,/area/borealis2/outdoors/grounds) +"aim" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/shuttle/arrival/station) +"ain" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"aio" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) +"aip" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "Escape_exit_south_exterior"; locked = 1},/obj/machinery/access_button/airlock_exterior{master_tag = "Escape_exit_south_control"; pixel_x = 25; pixel_y = -7},/turf/simulated/floor/plating/snow/plating,/area/hallway/secondary/exit) +"aiq" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/white{dir = 8},/obj/item/clothing/shoes/boots/winter,/obj/structure/noticeboard/airlock{pixel_x = -30},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"air" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ais" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ait" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/cups,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aiu" = (/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aiv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aiw" = (/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aix" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aiy" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aiz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"aiA" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"aiB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"aiC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"aiD" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"aiE" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"aiF" = (/obj/effect/floor_decal/corner/green/diagonal,/obj/structure/table/woodentable,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"aiG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aiH" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/item/seeds/harebell,/turf/simulated/floor/grass2,/area/chapel/monastery) +"aiI" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/simulated/floor/grass2,/area/chapel/monastery) +"aiJ" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass2,/area/chapel/monastery) +"aiK" = (/obj/structure/flora/ausbushes/sunnybush,/turf/simulated/floor/grass2,/area/chapel/monastery) +"aiL" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass2,/area/chapel/monastery) +"aiM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aiN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"aiO" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aiP" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aiQ" = (/obj/structure/sign/warning/hot_exhaust{pixel_y = 32},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aiR" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aiS" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aiT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"aiU" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/entry/docking_lounge) +"aiV" = (/obj/machinery/power/thermoregulator/cryogaia{pixel_y = 30},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/entry/docking_lounge) +"aiW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"aiX" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 8},/obj/item/clothing/shoes/boots/winter,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aiY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aiZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aja" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajc" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajd" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aje" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "arrivals_dock_north_inner"; locked = 1; name = "Docking Port Airlock"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/docking_lounge) +"ajf" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "arrivals_dock_north_airlock"; master_tag = "arrivals_dock"; pixel_y = 30; req_one_access = list(13); tag_airlock_mech_sensor = "arrivals_dock_north_mech"; tag_airpump = "arrivals_dock_north_pump"; tag_chamber_sensor = "arrivals_dock_north_sensor"; tag_exterior_door = "arrivals_dock_north_outer"; tag_interior_door = "arrivals_dock_north_inner"; tag_shuttle_mech_sensor = "shuttle_dock_north_mech"},/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/entry/docking_lounge) +"ajg" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = "arrivals_dock_north_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "arrivals_dock_north_sensor"; pixel_x = 0; pixel_y = -25},/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/entry/docking_lounge) +"ajh" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "arrivals_dock_north_outer"; locked = 1; name = "Arrivals Airlock"; req_access = list(13)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "arrivals_dock_north_airlock"; name = "exterior access button"; pixel_x = 4; pixel_y = -26; req_one_access = list(13)},/obj/machinery/mech_sensor{dir = 8; frequency = 1380; id_tag = "arrival_dock_north_mech"; pixel_y = -19},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/docking_lounge) +"aji" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ajj" = (/obj/effect/floor_decal/corner/green/diagonal{dir = 4},/obj/effect/floor_decal/corner/green/diagonal,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/yellow,/area/chapel/monastery/kitchen) +"ajk" = (/obj/machinery/light,/obj/structure/table/bench/wooden,/turf/simulated/floor/grass2,/area/chapel/monastery) +"ajl" = (/obj/structure/table/woodentable,/obj/item/weapon/material/minihoe,/obj/item/device/analyzer/plant_analyzer,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/grass2,/area/chapel/monastery) +"ajm" = (/obj/structure/curtain/bed,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/wood,/area/chapel/monastery) +"ajn" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"ajo" = (/obj/effect/floor_decal/snow/floor/surround{dir = 1},/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"ajp" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges3{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"ajq" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "Arrivals_exit_exterior"; locked = 1},/obj/machinery/access_button/airlock_exterior{master_tag = "Arrivals_exit"; pixel_x = -7; pixel_y = -25},/turf/simulated/floor/plating/snow/plating,/area/hallway/secondary/entry/docking_lounge) +"ajr" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/entry/docking_lounge) +"ajs" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/entry/docking_lounge) +"ajt" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = 1379; id_tag = "Arrivals_exit_interior"; locked = 1},/obj/machinery/access_button/airlock_interior{master_tag = "Arrivals_exit"; pixel_x = -7; pixel_y = -25},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aju" = (/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajv" = (/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajx" = (/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajy" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"ajz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"ajA" = (/turf/simulated/wall,/area/chapel/monastery/brew) +"ajB" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"ajC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"ajD" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/entry/docking_lounge) +"ajE" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "Arrivals_exit"; pixel_y = -25; tag_exterior_door = "Arrivals_exit_exterior"; tag_interior_door = "Arrivals_exit_interior"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/entry/docking_lounge) +"ajF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/table/rack/shelf,/obj/item/weapon/shovel,/obj/item/weapon/ice_pick,/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajG" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajH" = (/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajI" = (/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajJ" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajK" = (/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajL" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ajM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"ajN" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/surround,/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"ajO" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/chapel/monastery/recreation) +"ajP" = (/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"ajQ" = (/obj/machinery/washing_machine,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"ajR" = (/obj/machinery/washing_machine,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"ajS" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"ajT" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"ajU" = (/turf/simulated/wall,/area/chapel/monastery/recreation) +"ajV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"ajW" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/civilian{c_tag = "Monastary Central Aft"},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"ajX" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"ajY" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"ajZ" = (/obj/structure/reagent_dispensers/beerkeg,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"aka" = (/obj/structure/flora/tree/dead,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"akb" = (/turf/simulated/wall,/area/maintenance/medbay) +"akc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/medbay) +"akd" = (/turf/simulated/wall,/area/storage/emergency_storage/emergency5) +"ake" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"akf" = (/obj/machinery/vending/cigarette,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "CIV - Visitor's Dinning"; dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"akg" = (/obj/structure/table/reinforced,/obj/item/device/paicard,/obj/item/clothing/head/soft/grey,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"akh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aki" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"akj" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"akk" = (/obj/structure/closet/wardrobe/monastary,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"akl" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"akm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"akn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"ako" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"akp" = (/obj/machinery/door/airlock/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/chapel/monastery/recreation) +"akq" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"akr" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"aks" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"akt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"aku" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/monastery) +"akv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/steel,/area/chapel/monastery) +"akw" = (/obj/machinery/door/airlock/freezer,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/chapel/monastery/brew) +"akx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"aky" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"akz" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"akA" = (/turf/simulated/floor/plating,/area/maintenance/medbay) +"akB" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/medbay) +"akC" = (/turf/simulated/wall,/area/medical/equipstorage) +"akD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/medbay) +"akE" = (/obj/effect/floor_decal/corner/pink{dir = 9},/obj/effect/floor_decal/corner/pink{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/maintenance/medbay) +"akF" = (/obj/structure/window/reinforced/polarized{dir = 1; id = "mental_health"},/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized{dir = 2; id = "mental_health"},/obj/structure/window/reinforced/polarized{dir = 8; id = "mental_health"},/turf/simulated/floor,/area/medical/psych) +"akG" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency5) +"akH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"akI" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"akJ" = (/obj/structure/table/reinforced,/obj/item/weapon/folder,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"akK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"akL" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"akM" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 2 Aft"; dir = 8},/obj/structure/table/standard,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"akN" = (/obj/structure/showcase/yw/plaque,/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds) +"akO" = (/obj/structure/undies_wardrobe,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"akP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"akQ" = (/obj/structure/table/glass,/obj/item/device/universal_translator,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"akR" = (/obj/structure/table/glass,/obj/item/device/instrument/violin,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"akS" = (/turf/simulated/wall,/area/chapel/monastery/atmos) +"akT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Pump Station"; req_one_access = list(11,24)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"akU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Pump Station"; req_one_access = list(11,24)},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"akV" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"akW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"akX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"akY" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"akZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/maintenance/medbay) +"ala" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"alb" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/equipstorage) +"alc" = (/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"ald" = (/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"ale" = (/obj/structure/window/reinforced/polarized{dir = 1; id = "mental_health"},/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized{dir = 2; id = "mental_health"},/obj/structure/window/reinforced/polarized{dir = 4; id = "mental_health"},/turf/simulated/floor,/area/medical/psych) +"alf" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"alg" = (/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"alh" = (/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/storage/emergency_storage/emergency5) +"ali" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/storage/emergency_storage/emergency5) +"alj" = (/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/corner/pink{dir = 5},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/maintenance/medbay) +"alk" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"all" = (/obj/structure/table/reinforced,/obj/item/weapon/hand_labeler,/obj/item/device/communicator,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"alm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aln" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"alo" = (/obj/structure/closet/wardrobe/monastary,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"alp" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"alq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"alr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"als" = (/obj/structure/coatrack,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"alt" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alu" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alv" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/tech_supply,/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/sensor{name_tag = "Monastery"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alx" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 6},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"aly" = (/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 4; name = "Pump station in"; target_pressure = 4500},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alz" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alA" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 8},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alB" = (/obj/machinery/chem_master/condimaster,/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"alC" = (/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"alD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"alE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"alF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"alG" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"alH" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/turf/simulated/floor/wood,/area/medical/psych) +"alI" = (/turf/simulated/wall,/area/medical/medbay_primary_storage) +"alJ" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/syringes{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/syringes,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"alK" = (/obj/structure/bookcase,/turf/simulated/wall,/area/medical/psych) +"alL" = (/obj/structure/table/rack,/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"alM" = (/obj/machinery/computer/transhuman/resleeving,/obj/effect/floor_decal/corner/lime/full{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/button/windowtint{id = "resleeve_tint"; pixel_x = 6; pixel_y = 25},/turf/simulated/floor/tiled,/area/medical/resleeving) +"alN" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"alO" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"alP" = (/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"alQ" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"alR" = (/obj/structure/fitness/punchingbag,/obj/machinery/light,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"alS" = (/obj/structure/fitness/punchingbag,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"alT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"alU" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"alV" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/binary/passive_gate{dir = 8; target_pressure = 4500},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alY" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"alZ" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"ama" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"amb" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"amc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"amd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"ame" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"amf" = (/obj/machinery/clonepod/transhuman,/obj/item/device/radio/intercom/department/medbay{pixel_y = 32},/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled,/area/medical/resleeving) +"amg" = (/obj/machinery/transhuman/resleever,/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Medbay Resleeving"},/turf/simulated/floor/tiled,/area/medical/resleeving) +"amh" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/effect/floor_decal/corner/lime/full{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/item/weapon/reagent_containers/glass/bottle/biomass,/obj/item/weapon/reagent_containers/glass/bottle/biomass,/obj/item/weapon/reagent_containers/glass/bottle/biomass,/turf/simulated/floor/tiled,/area/medical/resleeving) +"ami" = (/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amj" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"aml" = (/obj/structure/closet/secure_closet/chemical,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/medical/psych) +"amm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amn" = (/obj/structure/closet/secure_closet{name = "Psychiatrist's Locker"; req_access = list(64)},/obj/item/clothing/suit/straight_jacket{layer = 3},/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/obj/item/weapon/reagent_containers/pill/methylphenidate,/obj/item/weapon/reagent_containers/pill/citalopram,/obj/item/weapon/reagent_containers/pill/citalopram,/obj/item/weapon/reagent_containers/pill/methylphenidate,/obj/item/weapon/reagent_containers/syringe,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/medical/psych) +"amo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amp" = (/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amq" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/wall,/area/medical/equipstorage) +"amr" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/hologram/holopad,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/medical/resleeving) +"ams" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/medical/resleeving) +"amt" = (/obj/effect/floor_decal/corner/lime{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/medical/resleeving) +"amu" = (/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/medical/resleeving) +"amv" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/corner/paleblue/full,/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amw" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28; req_access = list(67)},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amz" = (/obj/effect/floor_decal/corner/paleblue,/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amA" = (/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"amB" = (/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"amC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"amD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"amE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"amF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"amG" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/chapel/monastery/recreation) +"amH" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"amI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9; icon_state = "intact"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"amJ" = (/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"amK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"amL" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/effect/decal/warning_stripes,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"amM" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable/green,/obj/machinery/power/smes/buildable{RCon_tag = "Monastery"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"amN" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/power/breakerbox/activated{RCon_tag = "Monastary Substation Bypass"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"amO" = (/obj/structure/reagent_dispensers/beerkeg/vat,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"amP" = (/obj/structure/reagent_dispensers/beerkeg/vat,/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"amQ" = (/obj/structure/reagent_dispensers/beerkeg/vat,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 2; health = 1e+006},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"amR" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/reagent_dispensers/winevat,/obj/machinery/camera/network/civilian{c_tag = "Monastary Freezer"; dir = 1},/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"amS" = (/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/machinery/light/small,/obj/structure/reagent_dispensers/winevat,/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"amT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/reagent_dispensers/winevat,/turf/simulated/floor/tiled/freezer,/area/chapel/monastery/brew) +"amU" = (/turf/simulated/wall,/area/maintenance/substation/medical) +"amV" = (/obj/structure/bed/chair/comfy/brown{dir = 2},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"amW" = (/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"amX" = (/obj/structure/bed/psych,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"amY" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/box/nifsofts_medical,/obj/effect/floor_decal/corner/paleblue/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"amZ" = (/turf/simulated/wall,/area/medical/medbay3) +"ana" = (/obj/structure/table/woodentable,/obj/item/weapon/folder,/turf/simulated/floor/wood,/area/medical/psych) +"anb" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/button/windowtint{id = "mental_health"; pixel_x = -24; pixel_y = 10},/obj/effect/landmark/start{name = "Psychiatrist"},/turf/simulated/floor/wood,/area/medical/psych) +"anc" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/floor_decal/corner/lime{dir = 9},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/medical/resleeving) +"and" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{id_tag = "cmodoor"; name = "CMO's Office"; req_access = list(40)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"ane" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{id_tag = "cmodoor"; name = "CMO's Office"; req_access = list(40)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"anf" = (/turf/simulated/wall,/area/medical/resleeving) +"ang" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) +"anh" = (/turf/simulated/floor/wood,/area/medical/psych) +"ani" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood,/area/medical/psych) +"anj" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/medical/resleeving) +"ank" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/medical/psych) +"anl" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/backup_kit,/obj/item/weapon/storage/box/backup_kit,/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/sleevemate,/turf/simulated/floor/tiled,/area/medical/resleeving) +"anm" = (/obj/structure/closet/wardrobe/genetics_white,/obj/effect/floor_decal/corner/lime/full{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled,/area/medical/resleeving) +"ann" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ano" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"anp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"anq" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"anr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ans" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "arrivals_dock_south_inner"; locked = 1; name = "Docking Port Airlock"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/docking_lounge) +"ant" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "arrivals_dock_south_airlock"; master_tag = "arrivals_dock"; pixel_y = -30; req_one_access = list(13); tag_airlock_mech_sensor = "arrivals_dock_south_mech"; tag_airpump = "arrivals_dock_south_pump"; tag_chamber_sensor = "arrivals_dock_south_sensor"; tag_exterior_door = "arrivals_dock_south_outer"; tag_interior_door = "arrivals_dock_south_inner"; tag_shuttle_mech_sensor = "shuttle_dock_south_mech"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/entry/docking_lounge) +"anu" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "residential_station_north_inner"; locked = 1; name = "Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/dark,/area/security/checkpoint) +"anv" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "arrivals_dock_south_outer"; locked = 1; name = "Arrivals Airlock"; req_access = list(13)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "arrivals_dock_south_airlock"; name = "exterior access button"; pixel_x = 4; pixel_y = 26; req_one_access = list(13)},/obj/machinery/mech_sensor{dir = 8; frequency = 1380; id_tag = "arrivals_dock_south_mech"; pixel_y = 19},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/docking_lounge) +"anw" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"anx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"any" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"anz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"anA" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"anB" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"anC" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 6},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"anD" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"anE" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Medical Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/medical) +"anF" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Medical"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/medical) +"anG" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Medbay Subgrid"; name_tag = "Medbay Subgrid"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/medical) +"anH" = (/turf/simulated/floor/carpet/blue,/area/medical/psych) +"anI" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"anJ" = (/obj/structure/closet/l3closet/medical,/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"anK" = (/obj/structure/closet/l3closet/medical,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"anL" = (/turf/simulated/wall,/area/crew_quarters/heads/cmo) +"anM" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/paleblue{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"anN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"anO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"anP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/effect/floor_decal/corner/blue{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"anQ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/wall,/area/medical/equipstorage) +"anR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"anS" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/wall,/area/medical/equipstorage) +"anT" = (/obj/structure/table/woodentable,/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/wood,/area/medical/psych) +"anU" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/fountain,/turf/simulated/floor/wood,/area/medical/psych) +"anV" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp,/turf/simulated/floor/wood,/area/medical/psych) +"anW" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{icon_state = "2-8"},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/steel,/area/medical/equipstorage) +"anX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"anY" = (/obj/structure/closet/l3closet/janitor,/obj/effect/floor_decal/corner/purple{dir = 6},/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/obj/item/clothing/shoes/boots/winter,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/janitor) +"anZ" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/medical/equipstorage) +"aoa" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/wall,/area/medical/equipstorage) +"aob" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/medical{id_tag = "ResleevingDoor"; name = "Resleeving Lab"; req_access = list(5)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"aoc" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "psych"; name = "Mental Health Privacy Shutters"; opacity = 0},/obj/structure/window/reinforced/polarized{id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{dir = 8; id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{dir = 1; id = "resleeve_tint"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/medical/resleeving) +"aod" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "psych"; name = "Mental Health Privacy Shutters"; opacity = 0},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized{dir = 1; id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{dir = 4; id = "resleeve_tint"},/turf/simulated/floor/plating,/area/medical/resleeving) +"aoe" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"aof" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/effect/floor_decal/corner/pink{dir = 5},/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/maintenance/medbay) +"aog" = (/obj/structure/table/standard,/obj/item/weapon/coin/silver,/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aoh" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue,/obj/machinery/computer/guestpass{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aoi" = (/obj/machinery/embedded_controller/radio/docking_port_multi{child_names_txt = "Airlock One;Airlock Two"; child_tags_txt = "arrivals_dock_north_airlock;arrivals_dock_south_airlock"; frequency = 1380; id_tag = "arrivals_dock"; pixel_x = 0; pixel_y = -25; req_one_access = list(13)},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aoj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aok" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aol" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/wall,/area/hallway/secondary/entry/docking_lounge) +"aom" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 9},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"aon" = (/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"aoo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/structure/table/steel_reinforced,/obj/random/tech_supply,/obj/random/maintenance/engineering,/obj/machinery/light,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"aop" = (/obj/machinery/atmospherics/tvalve/digital/mirrored/bypass{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"aoq" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/structure/cable/heavyduty{icon_state = "0-2"},/obj/structure/cable,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"aor" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/turf/simulated/floor/tiled,/area/chapel/monastery/atmos) +"aos" = (/obj/effect/floor_decal/corner/blue{dir = 6},/obj/machinery/button/remote/blast_door{id = "bridgearmoury"; pixel_x = 30; pixel_y = 30},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aot" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aou" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aov" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aow" = (/obj/machinery/door/airlock/engineering{name = "Medbay Substation"; req_one_access = list(11,24,5)},/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/maintenance/substation/medical) +"aox" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/substation/medical) +"aoy" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/medical) +"aoz" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-2"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/engineering{c_tag = "Medical substation"; dir = 8},/turf/simulated/open,/area/maintenance/substation/medical) +"aoA" = (/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/airlock/glass_medical{name = "Medbay Equipment"; req_access = list(5,66)},/turf/simulated/floor/tiled/steel,/area/medical/equipstorage) +"aoB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aoC" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/medical/medbay3) +"aoD" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/structure/closet/secure_closet/medical_wall{name = "Pill Cabinet"; pixel_y = 32},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"aoE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/medical/psych) +"aoF" = (/obj/structure/flora/pottedplant/crystal,/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/effect/floor_decal/corner/paleblue{dir = 8},/obj/effect/floor_decal/corner/blue/full{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aoG" = (/obj/structure/table/woodentable,/obj/item/device/universal_translator,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"aoH" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "cmooffice"; name = "CMO Office Privacy Shutters"; opacity = 0},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) +"aoI" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"aoJ" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aoK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aoL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_medical{name = "Biohazard Storage"},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aoM" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/device/healthanalyzer,/obj/item/device/universal_translator,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"aoN" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/corner/lime/full,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/medical/resleeving) +"aoO" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aoP" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/item/weapon/tool/screwdriver,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aoQ" = (/obj/machinery/iv_drip,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/obj/effect/floor_decal/corner/paleblue/full,/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aoR" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/crate/bin,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"aoS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"aoT" = (/turf/simulated/wall,/area/medical/reception) +"aoU" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aoV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aoW" = (/obj/machinery/door/airlock/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aoX" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge) +"aoY" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"aoZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating,/area/chapel/monastery/atmos) +"apa" = (/turf/simulated/wall,/area/security/outpost) +"apb" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"apc" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner/blue,/area/borealis2/elevator/medbay) +"apd" = (/turf/simulated/shuttle/wall/voidcraft/blue,/area/borealis2/elevator/medbay) +"ape" = (/obj/machinery/door/airlock/engineering{name = "Medbay Substation"; req_one_access = list(11,24,5)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor,/area/maintenance/substation/medical) +"apf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"apg" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"aph" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/computer/med_data/laptop,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"api" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"apj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"apk" = (/obj/structure/bed/padded,/obj/machinery/newscaster{layer = 3.3; pixel_x = 27; pixel_y = 0},/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"apl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"apm" = (/obj/machinery/photocopier,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/floor_decal/corner/paleblue,/obj/effect/floor_decal/corner/blue/full{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"apn" = (/obj/machinery/door/airlock/glass_medical{name = "Medical Storage"; req_access = list(5,66); req_one_access = list(5)},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"apo" = (/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency5) +"app" = (/obj/item/weapon/stool/padded,/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 25; pixel_y = 0},/obj/effect/floor_decal/corner/pink{dir = 6},/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"apq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"apr" = (/obj/effect/floor_decal/corner/pink{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/maintenance/medbay) +"aps" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"apt" = (/obj/structure/bed/chair{dir = 2},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"apu" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/maintenance/medbay) +"apv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/door/airlock/maintenance/medical,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/medical/psych) +"apw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"apx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/wood,/area/medical/psych) +"apy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/medical{name = "Psychiatry"; req_access = list(64)},/turf/simulated/floor/wood,/area/medical/psych) +"apz" = (/turf/simulated/wall,/area/medical/sleeper) +"apA" = (/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"apB" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/clipboard,/obj/effect/floor_decal/corner/pink{dir = 9},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"apC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"apD" = (/obj/machinery/holoplant,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"apE" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled/white,/area/medical/reception) +"apF" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled/white,/area/medical/reception) +"apG" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/computer/transhuman/designer,/turf/simulated/floor/tiled/white,/area/medical/reception) +"apH" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "medbay reception"},/turf/simulated/floor/tiled/white,/area/medical/reception) +"apI" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/light{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/reception) +"apJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"apK" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/box/cups,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"apL" = (/obj/structure/sign/redcross{desc = "The Star of Life, a symbol of Medical Aid."; icon_state = "lifestar"; name = "Medbay"},/turf/simulated/wall,/area/medical/reception) +"apM" = (/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"apN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"apO" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"apP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"apQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"apR" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 1},/obj/structure/railing,/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"apS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/structure/railing{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"apT" = (/obj/structure/closet/secure_closet/security,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/red,/area/security/outpost) +"apU" = (/obj/machinery/vending/security,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/red,/area/security/outpost) +"apV" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor/tiled/red,/area/security/outpost) +"apW" = (/turf/simulated/open,/area/borealis2/elevator/medbay) +"apX" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"apY" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/item/modular_computer/console/preset/command{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/blue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"apZ" = (/obj/structure/bed/chair{dir = 2},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aqa" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"aqb" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "cmooffice"; name = "CMO Office Privacy Shutters"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) +"aqc" = (/obj/structure/bed/chair{dir = 2},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aqd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"aqe" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "cmooffice"; name = "CMO Office Privacy Shutters"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) +"aqf" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "cmooffice"; name = "CMO Office Privacy Shutters"; opacity = 0},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) +"aqg" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "cmooffice"; name = "CMO Office Privacy Shutters"; opacity = 0},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) +"aqh" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 4; id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{dir = 8; id = "resleeve_tint"},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized{dir = 1; id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{id = "resleeve_tint"},/turf/simulated/floor/plating,/area/medical/resleeving) +"aqi" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"aqj" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/corner/pink/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"aqk" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/firstaid/o2{layer = 2.8; pixel_x = 4; pixel_y = 6},/obj/item/weapon/storage/firstaid/o2,/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"aql" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Medical Storage"},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"aqm" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"aqn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/mob/living/simple_mob/animal/passive/cat/runtime,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aqo" = (/obj/machinery/iv_drip,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"aqp" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aqq" = (/turf/simulated/floor/tiled/white,/area/medical/reception) +"aqr" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/reception) +"aqs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/reception) +"aqt" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) +"aqu" = (/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/white,/area/medical/reception) +"aqv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aqw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aqx" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 28},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aqy" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aqz" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"aqA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/window/reinforced,/turf/simulated/floor/tiled/red,/area/security/outpost) +"aqB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/window/brigdoor/southright{name = "Combat Armor"},/turf/simulated/floor/tiled/red,/area/security/outpost) +"aqC" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled/red,/area/security/outpost) +"aqD" = (/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aqE" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/hallway/secondary/entry/docking_lounge) +"aqF" = (/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aqG" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aqH" = (/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/grounds) +"aqI" = (/turf/simulated/floor/tiled/white,/area/borealis2/elevator/medbay) +"aqJ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"aqK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aqL" = (/obj/structure/closet/l3closet/medical,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aqM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aqN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Medical Hallway Port"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"aqO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aqP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/floor_decal/corner/paleblue{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aqQ" = (/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/medbay) +"aqR" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/blue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aqS" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills{dir = 2},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aqT" = (/obj/item/toy/figure/cmo,/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aqU" = (/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop{dir = 2},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aqV" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "cmooffice"; name = "CMO Office Privacy Shutters"; opacity = 0},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) +"aqW" = (/obj/structure/table/rack,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/glasses/hud/health,/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/blue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aqX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Medical Hallway"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aqY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{name = "Medbay Primary Hallway"; req_one_access = list()},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aqZ" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"ara" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"arb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"arc" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "medbayquar"; name = "Medbay Emergency Lockdown Control"; pixel_x = 28; pixel_y = -36; req_access = list(5)},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "virologyquar"; name = "Virology Emergency Lockdown Control"; pixel_x = 28; pixel_y = -28; req_access = list(5)},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "cmooffice"; name = "CMO Privacy Shutters"; pixel_x = 38; pixel_y = -28},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the CMO's office."; id = "cmodoor"; name = "CMO Office Door Control"; pixel_x = 38; pixel_y = -36},/obj/effect/landmark/start{name = "Chief Medical Officer"},/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"ard" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"are" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "CMO's Office"},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"arf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"arg" = (/obj/structure/sign/nosmoking_2,/turf/simulated/wall,/area/medical/exam_room) +"arh" = (/obj/machinery/atm,/turf/simulated/wall,/area/hallway/secondary/entry/docking_lounge) +"ari" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"arj" = (/obj/structure/table/reinforced,/obj/item/device/radio{frequency = 1487; name = "Medbay Emergency Radio Link"},/obj/item/device/megaphone,/obj/effect/floor_decal/corner/paleblue{dir = 4},/obj/effect/floor_decal/corner/blue/full,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"ark" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"arl" = (/obj/machinery/status_display,/turf/simulated/wall,/area/medical/exam_room) +"arm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/medical/sleeper) +"arn" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/toxin,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"aro" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"arp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"arq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"arr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ars" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/directions/bridge,/turf/simulated/floor/plating,/area/hallway/primary/central_one) +"art" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aru" = (/turf/simulated/wall,/area/janitor) +"arv" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/catwalk,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/power) +"arw" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/catwalk,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"arx" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/red,/area/security/outpost) +"ary" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/red,/area/security/outpost) +"arz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/red,/area/security/outpost) +"arA" = (/turf/simulated/floor/tiled/red,/area/security/outpost) +"arB" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/security/outpost) +"arC" = (/obj/structure/bed,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/security{c_tag = "Security Post Cell"; dir = 8},/turf/simulated/floor/tiled/red,/area/security/outpost) +"arD" = (/obj/structure/lattice,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/solars) +"arE" = (/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"arF" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"arG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"arH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"arI" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"arJ" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"arK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"arL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"arM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"arN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"arO" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"arP" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/medical/sleeper) +"arQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"arR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/pink{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"arS" = (/obj/structure/window/reinforced/polarized{id = "exam"},/obj/structure/window/reinforced/polarized{dir = 4; id = "exam"},/obj/structure/window/reinforced/polarized{dir = 8; id = "exam"},/obj/structure/window/reinforced/polarized{dir = 1; id = "exam"},/obj/structure/grille,/turf/simulated/floor/plating,/area/medical/exam_room) +"arT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Examination Room"; req_access = list(5,45); req_one_access = list()},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"arU" = (/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/cmo,/obj/item/weapon/folder/white_cmo,/obj/item/weapon/pen/multi,/obj/structure/table/reinforced,/obj/machinery/light{dir = 2},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"arV" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/adv,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"arW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"arX" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"arY" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; name = "CMO Office"; sortType = "CMO Office"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"arZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"asa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"asb" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue,/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"asc" = (/turf/simulated/floor/tiled/steel_ridged,/area/hallway/primary/central_one) +"asd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"ase" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"asf" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"asg" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile{dir = 2},/turf/simulated/floor/tiled,/area/medical/cryo) +"ash" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/reception) +"asi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "Medbay Primary Hall"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"asj" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"ask" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"asl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/reception) +"asm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"asn" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/fire{layer = 2.9; pixel_x = 2; pixel_y = 3},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"aso" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"asp" = (/obj/machinery/status_display,/turf/simulated/wall,/area/janitor) +"asq" = (/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/obj/effect/floor_decal/corner/purple/full{dir = 8},/turf/simulated/floor/tiled,/area/janitor) +"asr" = (/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_y = 28},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/steel,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/corner/purple{dir = 5},/turf/simulated/floor/tiled,/area/janitor) +"ass" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/floor_decal/corner/purple/full{dir = 1},/turf/simulated/floor/tiled,/area/janitor) +"ast" = (/turf/simulated/wall/r_wall,/area/janitor) +"asu" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"asv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance/sec{name = "Security Maintenance"; req_access = list(63); req_one_access = list(1)},/turf/simulated/floor/plating,/area/maintenance/medbay) +"asw" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/nifsofts_engineering,/turf/simulated/floor/tiled,/area/engineering/hallway) +"asx" = (/obj/structure/catwalk,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/power) +"asy" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/catwalk,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"asz" = (/obj/machinery/computer/crew{dir = 4},/turf/simulated/floor/tiled/red,/area/security/outpost) +"asA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/red,/area/security/outpost) +"asB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/red,/area/security/outpost) +"asC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/red,/area/security/outpost) +"asD" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/red,/area/security/outpost) +"asE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/red,/area/security/outpost) +"asF" = (/obj/machinery/door/window/brigdoor/southleft{dir = 8; id = "security post cell"; name = "Security Post Cell"; req_access = list(2)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/red,/area/security/outpost) +"asG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/red,/area/security/outpost) +"asH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/red,/area/security/outpost) +"asI" = (/obj/structure/flora/tree/dead,/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"asJ" = (/turf/simulated/wall,/area/medical/patient_a) +"asK" = (/obj/machinery/door/airlock/glass_medical{name = "Patient Ward"; req_access = list(5,6); req_one_access = list()},/obj/machinery/door/firedoor,/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"asL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_medical{name = "Patient Ward"; req_access = list(); req_one_access = list()},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/paleblue{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"asM" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"asN" = (/obj/effect/floor_decal/corner/paleblue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"asO" = (/turf/simulated/wall,/area/medical/ward) +"asP" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner/paleblue,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"asQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/multi_tile/glass{autoclose = 1; dir = 2; id_tag = "medbayfoyer"; name = "Medical Bay"; req_access = list(); req_one_access = list(5,19)},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/door/firedoor/multi_tile{dir = 2},/turf/simulated/floor/tiled/white,/area/medical/reception) +"asR" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/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/white,/area/medical/medbay) +"asS" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"asT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/pink/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"asU" = (/obj/structure/table/standard,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/recharger,/obj/item/device/sleevemate,/obj/effect/floor_decal/corner/paleblue/full,/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"asV" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"asW" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"asX" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"asY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"asZ" = (/obj/structure/closet/secure_closet/medical1,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"ata" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/computer/med_data/laptop,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atb" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/device/radio/phone/medbay,/obj/machinery/door/window/northleft{dir = 1; icon_state = "left"; name = "Medbay Reception Window"; req_access = list(5,45)},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atc" = (/obj/machinery/computer/crew,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atd" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/door/window/eastleft{dir = 1; name = "Medbay Reception"; req_access = list(5,45)},/obj/item/weapon/folder/white,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"ate" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/item/device/radio/phone/medbay,/obj/machinery/button/remote/airlock{desc = "A remote control switch for the brig foyer."; id = "medbayfoyer"; name = "Medbay Foyer Doors"; pixel_x = 26; pixel_y = -6; req_access = list()},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atf" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atg" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/roller,/obj/item/roller,/obj/item/roller,/obj/item/roller,/obj/structure/window/reinforced/tinted,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/white,/area/medical/reception) +"ath" = (/obj/structure/sign/examroom,/turf/simulated/wall,/area/medical/exam_room) +"ati" = (/obj/structure/table/standard,/obj/machinery/light{dir = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/effect/floor_decal/corner/paleblue/full,/turf/simulated/floor/tiled/white,/area/medical/reception) +"atj" = (/turf/simulated/floor/tiled,/area/janitor) +"atk" = (/obj/structure/janitorialcart,/obj/effect/floor_decal/corner/purple{dir = 6},/turf/simulated/floor/tiled,/area/janitor) +"atl" = (/turf/simulated/wall/r_wall,/area/security/nuke_storage) +"atm" = (/obj/machinery/computer/security{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/red,/area/security/outpost) +"atn" = (/obj/machinery/door/airlock/glass_security,/turf/simulated/floor/tiled/red,/area/security/outpost) +"ato" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/red,/area/security/outpost) +"atp" = (/obj/structure/closet/secure_closet/brig{id = "security post cell"; name = "Security Post Locker"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small/flicker,/turf/simulated/floor/tiled/red,/area/security/outpost) +"atq" = (/obj/effect/floor_decal/corner/pink/full{dir = 8},/obj/machinery/iv_drip,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"atr" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"ats" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/obj/machinery/button/windowtint{id = "pr1_window_tint"; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"att" = (/obj/structure/window/reinforced/polarized{dir = 1; id = "pr1_window_tint"},/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized{dir = 2; id = "pr1_window_tint"},/obj/structure/window/reinforced/polarized{dir = 4; id = "pr1_window_tint"},/obj/structure/window/reinforced/polarized{dir = 8; id = "pr1_window_tint"},/turf/simulated/floor,/area/medical/patient_a) +"atu" = (/obj/effect/floor_decal/corner/pink{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"atv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/pink{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"atw" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/floor_decal/corner/paleblue/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"atx" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"aty" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"atz" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Medbay Reception"; req_one_access = list(5,45)},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atA" = (/obj/structure/closet/secure_closet/CMO,/obj/item/device/pda/heads/cmo,/obj/item/weapon/cmo_disk_holder,/obj/item/device/defib_kit/compact/combat/loaded,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/effect/floor_decal/corner/blue{dir = 10},/obj/machinery/camera/network/medbay{c_tag = "Chief Medical Officer's office"; dir = 1},/obj/machinery/keycard_auth{pixel_y = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"atB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"atC" = (/turf/simulated/wall,/area/medical/patient_c) +"atD" = (/turf/simulated/wall,/area/medical/medbay) +"atE" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/reception) +"atF" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_medical{name = "Medical Storage"; req_access = list(5,66); req_one_access = list(5)},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"atG" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"atH" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall,/area/medical/medbay_primary_storage) +"atI" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized{id = "meeting"},/obj/structure/window/reinforced/polarized{dir = 4; id = "meeting"},/obj/structure/window/reinforced/polarized{dir = 1; id = "meeting"},/obj/structure/window/reinforced/polarized{dir = 8; id = "meeting"},/turf/simulated/floor/plating,/area/crew_quarters/meeting) +"atJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/multi_tile/glass{req_access = list(); req_one_access = list()},/obj/machinery/door/firedoor/multi_tile,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"atK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/reception) +"atL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atM" = (/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/medical/scanning) +"atN" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the brig foyer."; id = "medbayfoyer"; name = "Medbay Foyer Doors"; pixel_x = 0; pixel_y = 6; req_access = list()},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atO" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Paramedic"},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/reception) +"atQ" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -5},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atR" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/reception) +"atS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/computer/guestpass{dir = 1; pixel_y = -30},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atT" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/effect/floor_decal/corner/paleblue{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atU" = (/obj/machinery/photocopier,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"atV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/camera/autoname{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"atW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"atX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"atY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"atZ" = (/obj/machinery/light_switch{pixel_x = -34; pixel_y = 1},/obj/machinery/button/remote/blast_door{id = "janitor_blast"; name = "Privacy Shutters"; pixel_x = -24; pixel_y = 12; pixel_z = 0},/obj/effect/floor_decal/corner/purple{dir = 9},/turf/simulated/floor/tiled,/area/janitor) +"aua" = (/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor/tiled,/area/janitor) +"aub" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"auc" = (/obj/structure/safe,/obj/item/clothing/under/color/yellow,/obj/item/key,/obj/item/toy/katana,/obj/item/weapon/moneybag/vault,/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"aud" = (/obj/structure/closet/secure_closet/freezer/money,/obj/item/weapon/storage/secure/briefcase/money{desc = "An sleek tidy briefcase."; name = "secure briefcase"},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"aue" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/space/void/wizard,/obj/item/clothing/head/helmet/space/void/wizard,/obj/structure/table/rack,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"auf" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/nuclearbomb,/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"aug" = (/obj/structure/filingcabinet/security{name = "Security Records"},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"auh" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/storage/box/donut,/obj/machinery/camera/network/security{c_tag = "Security Post Control"; dir = 4},/turf/simulated/floor/tiled/red,/area/security/outpost) +"aui" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/red,/area/security/outpost) +"auj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/glass_security,/turf/simulated/floor/tiled/red,/area/security/outpost) +"auk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/red,/area/security/outpost) +"aul" = (/obj/machinery/door_timer{id = "security post cell"; pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/red,/area/security/outpost) +"aum" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aun" = (/obj/machinery/door/blast/regular{id = "mechbay"; name = "Mech Bay"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) +"auo" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/plating,/area/borealis2/elevator/medbay) +"aup" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/medbay) +"auq" = (/obj/effect/floor_decal/corner/pink{dir = 9},/obj/structure/bed/chair/office/light,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/camera/network/medbay{c_tag = "Virology lab"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"aur" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"aus" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"aut" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Patient Room A"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"auu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"auv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"auw" = (/obj/machinery/sleeper{dir = 8},/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"aux" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/glass_medical{name = "Medical Storage"; req_access = list(5,66); req_one_access = list(5)},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"auy" = (/turf/simulated/wall,/area/medical/cryo) +"auz" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/medical/cryo) +"auA" = (/obj/machinery/sleep_console,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"auB" = (/obj/machinery/atmospherics/unary/cryo_cell{dir = 2; layer = 3.3},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/medical/scanning) +"auC" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/medbay{c_tag = "Medical Diagnostics Center"},/turf/simulated/floor/tiled,/area/medical/scanning) +"auD" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"auE" = (/turf/simulated/floor/tiled/white,/area/medical/ward) +"auF" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"auG" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/machinery/door/firedoor/multi_tile,/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"auH" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 8; icon_state = "left"; name = "Janitorial Desk"},/obj/machinery/door/window/eastleft{dir = 4; icon_state = "left"; name = "Janitorial Desk"},/obj/machinery/door/blast/shutters{dir = 8; id = "janitor_blast"; layer = 3.3; name = "Janitorial Shutters"},/turf/simulated/floor/tiled,/area/janitor) +"auI" = (/obj/structure/filingcabinet/chestdrawer{name = "Scan Records"},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"auJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"auK" = (/obj/machinery/door/airlock/glass_medical{name = "Patient Ward"; req_access = list(); req_one_access = list()},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/ward) +"auL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"auM" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) +"auN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{name = "Medbay Primary Hallway"; req_one_access = list()},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"auO" = (/obj/machinery/door/window/westright{name = "Medbay Reception"; req_access = list(5,45)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) +"auP" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/reception) +"auQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/red{dir = 5},/obj/machinery/computer/guestpass{pixel_y = 30},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"auR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/reception) +"auS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/reception) +"auT" = (/obj/effect/floor_decal/corner/paleblue{dir = 8},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "2-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"auU" = (/obj/machinery/camera/network/medbay{c_tag = "Medical Reception"; dir = 1},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/reception) +"auV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"auW" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"auX" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access = list(26)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/janitor) +"auY" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/janitor) +"auZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/janitor) +"ava" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/floor_decal/corner/purple{dir = 6},/turf/simulated/floor/tiled,/area/janitor) +"avb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"avc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"avd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"ave" = (/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"avf" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"avg" = (/turf/simulated/wall/r_wall,/area/maintenance/bridge) +"avh" = (/obj/structure/railing,/obj/structure/catwalk,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/power) +"avi" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/railing,/obj/structure/catwalk,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"avj" = (/obj/machinery/computer/secure_data{dir = 4},/turf/simulated/floor/tiled/red,/area/security/outpost) +"avk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/red,/area/security/outpost) +"avl" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/red,/area/security/outpost) +"avm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/red,/area/security/outpost) +"avn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/red,/area/security/outpost) +"avo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/red,/area/security/outpost) +"avp" = (/obj/machinery/door/airlock/glass_external/public{frequency = 1379; id_tag = "SecurityPost_Exit_Interior"; locked = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/access_button/airlock_interior{master_tag = "SecurityPost_Exit"; pixel_x = 6; pixel_y = -26; req_one_access = list(1)},/turf/simulated/floor/tiled/red,/area/security/outpost) +"avq" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/obj/effect/floor_decal/rust,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techmaint,/area/security/outpost) +"avr" = (/obj/machinery/power/thermoregulator/cryogaia{pixel_y = 30},/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/effect/floor_decal/rust,/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor/tiled/techmaint,/area/security/outpost) +"avs" = (/obj/machinery/access_button/airlock_exterior{master_tag = "SecurityPost_Exit"; pixel_x = 6; pixel_y = -26; req_one_access = list(1)},/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "SecurityPost_Exit_Exterior"; locked = 1},/turf/simulated/floor/plating/snow/plating,/area/security/outpost) +"avt" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 8},/obj/effect/floor_decal/snow/floor/surround{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"avu" = (/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"avv" = (/obj/effect/floor_decal/snow/floor/edges3{dir = 4},/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"avw" = (/obj/effect/landmark{name = "carpspawn"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/solars) +"avx" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"avy" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"avz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"avA" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/medbay) +"avB" = (/obj/effect/floor_decal/corner/pink/full,/obj/machinery/computer/med_data/laptop{dir = 1},/obj/structure/table/glass,/obj/machinery/light,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"avC" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/structure/table/glass,/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/obj/item/weapon/pen,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"avD" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"avE" = (/obj/effect/floor_decal/corner/pink{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"avF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/pink,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"avG" = (/obj/structure/window/reinforced/polarized{dir = 1; id = "pr4_window_tint"},/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized{dir = 2; id = "pr4_window_tint"},/obj/structure/window/reinforced/polarized{dir = 4; id = "pr4_window_tint"},/obj/structure/window/reinforced/polarized{dir = 8; id = "pr4_window_tint"},/turf/simulated/floor,/area/medical/patient_c) +"avH" = (/obj/machinery/button/windowtint{id = "pr4_window_tint"; pixel_y = 26},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"avI" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"avJ" = (/obj/machinery/iv_drip,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/effect/floor_decal/corner/pink/full{dir = 1},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"avK" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/turf/simulated/floor/tiled,/area/medical/cryo) +"avL" = (/obj/machinery/atmospherics/unary/cryo_cell{dir = 2; layer = 3.3},/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/medical/cryo) +"avM" = (/obj/structure/table/rack,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/turf/simulated/floor/tiled/white,/area/medical/equipstorage) +"avN" = (/obj/machinery/atmospherics/unary/cryo_cell{dir = 2; layer = 3.3},/obj/effect/floor_decal/industrial/danger{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/medical/cryo) +"avO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"avP" = (/obj/effect/floor_decal/corner/pink/full{dir = 8},/obj/machinery/iv_drip,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/ward) +"avQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"avR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Patient Room C"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"avS" = (/turf/simulated/wall,/area/medical/exam_room) +"avT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"avU" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"avV" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"avW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"avX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"avY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"avZ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"awa" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/nanotrasen,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner/purple/full,/turf/simulated/floor/tiled,/area/janitor) +"awb" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/nanotrasen,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/obj/item/clothing/shoes/boots/winter,/turf/simulated/floor/tiled,/area/janitor) +"awc" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/floor_decal/corner/purple/full{dir = 4},/turf/simulated/floor/tiled,/area/janitor) +"awd" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/large/reinforced{anchored = 1; desc = "A hefty, reinforced metal crate with an electronic locking system. It's securely bolted to the floor and cannot be moved."; name = "gun safe"; req_access = list(1)},/obj/item/weapon/gun/projectile/revolver/consul,/obj/item/ammo_magazine/s44,/obj/item/ammo_magazine/s44,/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"awe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"awf" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/mob/living/simple_mob/animal/passive/mouse/brown/Tom,/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"awg" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/substation/civilian) +"awh" = (/obj/machinery/camera/network/command{c_tag = "COM - Vault"; dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"awi" = (/obj/machinery/power/sensor{name = "Powernet Senor- Surface Civilian Subgrid"; name_tag = "Surface Civilian Subgrid"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/security/nuke_storage) +"awj" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/bridge) +"awk" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/bridge) +"awl" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/bridge) +"awm" = (/obj/structure/catwalk,/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/power) +"awn" = (/obj/structure/catwalk,/obj/structure/railing{dir = 4},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/power) +"awo" = (/obj/structure/table/standard,/obj/item/weapon/cell/device/weapon{pixel_x = 4; pixel_y = 4},/obj/item/weapon/cell/device/weapon{pixel_x = 2; pixel_y = 2},/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/turf/simulated/floor/tiled/red,/area/security/outpost) +"awp" = (/obj/structure/cable/heavyduty{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/security/outpost) +"awq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/rack/shelf,/obj/machinery/light,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security,/obj/item/clothing/shoes/boots/winter/security,/turf/simulated/floor/tiled/red,/area/security/outpost) +"awr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security,/obj/item/clothing/shoes/boots/winter/security,/turf/simulated/floor/tiled/red,/area/security/outpost) +"aws" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/security/outpost) +"awt" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "SecurityPost_Exit"; name = "Security Post Exit Controller"; pixel_x = 6; pixel_y = -26; tag_exterior_door = "SecurityPost_Exit_Exterior"; tag_interior_door = "SecurityPost_Exit_Interior"},/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 6},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/security/outpost) +"awu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"awv" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/surround,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aww" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"awx" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"awy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/medbay) +"awz" = (/obj/structure/closet,/obj/item/stack/material/steel{amount = 4},/obj/item/stack/rods{amount = 2},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/medbay) +"awA" = (/obj/effect/floor_decal/corner/pink{dir = 9},/obj/machinery/camera/network/medbay{c_tag = "Medbay Recovery Wing"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"awB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"awC" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/bed/chair/office/light,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/corner/pink{dir = 6},/obj/machinery/camera/network/medbay{c_tag = "Medbay Patient Room D"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"awD" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = 2; pixel_y = 2},/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -2; pixel_y = -2},/obj/item/device/defib_kit/loaded,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"awE" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall,/area/medical/patient_c) +"awF" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/medical/cryo) +"awG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"awH" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled,/area/medical/cryo) +"awI" = (/obj/machinery/door/airlock/maintenance/medical,/turf/simulated/floor/plating,/area/medical/surgery_storage) +"awJ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"awK" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/turf/simulated/floor/tiled,/area/medical/cryo) +"awL" = (/obj/effect/floor_decal/industrial/danger{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/turf/simulated/floor/tiled,/area/medical/cryo) +"awM" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/medical/cryo) +"awN" = (/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"awO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"awP" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"awQ" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/structure/table/glass,/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"awR" = (/obj/machinery/computer/med_data/laptop{dir = 1},/obj/structure/table/glass,/obj/effect/floor_decal/corner/pink/full{dir = 4},/obj/machinery/light,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"awS" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"awT" = (/obj/machinery/vending/blood,/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"awU" = (/obj/item/weapon/coin/silver{pixel_x = 7; pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12; pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4; pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6; pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5; pixel_y = -8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/closet/crate/secure{name = "Silver Crate"; req_access = list(19)},/obj/item/weapon/coin/silver{pixel_x = 4; pixel_y = 8},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"awV" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"awW" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/structure/closet/crate/secure{name = "Gold Crate"; req_access = list(19)},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"awX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/bridge) +"awY" = (/turf/simulated/wall/r_wall,/area/bridge_hallway) +"awZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/bridge) +"axa" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/heavyduty{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"axb" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 8},/obj/structure/catwalk,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"axc" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/catwalk,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"axd" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"axe" = (/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"axf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating,/area/security/outpost) +"axg" = (/obj/effect/floor_decal/snow/floor/edges3,/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"axh" = (/obj/item/weapon/caution/cone,/turf/simulated/floor,/area/maintenance/medbay) +"axi" = (/turf/simulated/wall,/area/medical/patient_b) +"axj" = (/obj/effect/floor_decal/corner/pink/full{dir = 8},/obj/machinery/iv_drip,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"axk" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"axl" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 36},/obj/machinery/button/windowtint{id = "pr2_window_tint"; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"axm" = (/obj/structure/window/reinforced/polarized{dir = 1; id = "pr1_window_tint"},/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized{dir = 2; id = "pr2_window_tint"},/obj/structure/window/reinforced/polarized{dir = 4; id = "pr2_window_tint"},/obj/structure/window/reinforced/polarized{dir = 8; id = "pr2_window_tint"},/turf/simulated/floor,/area/medical/patient_b) +"axn" = (/obj/effect/floor_decal/corner/pink{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"axo" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"axp" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"axq" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"axr" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/medical/cryo) +"axs" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/medical/cryo) +"axt" = (/turf/simulated/wall,/area/medical/patient_wing) +"axu" = (/obj/machinery/door/airlock/maintenance/medical,/turf/simulated/floor/plating,/area/medical/surgeryobs) +"axv" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/medical/cryo) +"axw" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/medical/cryo) +"axx" = (/obj/structure/table/glass,/obj/item/weapon/storage/pill_bottle/tramadol,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/effect/floor_decal/corner/pink/full{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"axy" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Recovery Ward"},/turf/simulated/floor/tiled/white,/area/medical/ward) +"axz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"axA" = (/obj/effect/floor_decal/industrial/danger{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/medical/cryo) +"axB" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/medical/cryo) +"axC" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/medical/cryo) +"axD" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"axE" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"axF" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall,/area/medical/reception) +"axG" = (/obj/structure/noticeboard/medical,/turf/simulated/wall,/area/medical/patient_c) +"axH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/ward) +"axI" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/ward) +"axJ" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/medical/cryo) +"axK" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/medical/cryo) +"axL" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/corner/pink/full{dir = 1},/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/medical/ward) +"axM" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/medical/cryo) +"axN" = (/obj/effect/floor_decal/industrial/danger{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/medical/cryo) +"axO" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"axP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"axQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"axR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"axS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Civilian Upper Substation"; req_one_access = list(11)},/turf/simulated/floor,/area/maintenance/substation/civilian) +"axT" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/plating,/area/maintenance/substation/civilian) +"axU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/civilian) +"axV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"axW" = (/obj/structure/closet/crate,/obj/item/stack/material/silver,/obj/item/stack/material/silver,/obj/item/stack/material/silver,/obj/item/stack/material/gold,/obj/item/stack/material/gold,/obj/item/stack/material/gold,/obj/item/weapon/storage/belt/champion,/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"axX" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"axY" = (/obj/structure/closet/secure_closet/freezer/money,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/item/weapon/storage/secure/briefcase/money{desc = "An sleek tidy briefcase."; name = "secure briefcase"},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"axZ" = (/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"aya" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{dir = 8},/turf/simulated/open,/area/bridge_hallway) +"ayb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/bridge) +"ayc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating,/area/maintenance/bridge) +"ayd" = (/obj/effect/floor_decal/rust,/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/structure/cable/heavyduty{icon_state = "1-4"},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"aye" = (/obj/structure/railing{dir = 1},/obj/structure/railing,/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,/obj/machinery/atmospherics/pipe/manifold/visible/supply,/obj/structure/cable/heavyduty{icon_state = "1-4"},/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"ayf" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"ayg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/plating,/area/maintenance/medbay) +"ayh" = (/obj/effect/decal/cleanable/blood/oil{name = "oil"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"ayi" = (/obj/effect/floor_decal/corner/pink{dir = 9},/obj/structure/bed/chair/office/light,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/camera/network/medbay{c_tag = "Medbay Patient Room A"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"ayj" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"ayk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"ayl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Patient Room B"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"aym" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"ayn" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"ayo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"ayp" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"ayq" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/medical/cryo) +"ayr" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/corner/pink/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"ays" = (/obj/machinery/door/airlock/glass_medical{id_tag = "Surgery"; name = "Surgical Wing"; req_access = list(5)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"ayt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"ayu" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"ayv" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{id = "preop2"},/obj/structure/window/reinforced/polarized{dir = 4; id = "preop2"},/obj/structure/window/reinforced/polarized{dir = 8; id = "preop2"},/obj/structure/window/reinforced/polarized{dir = 1; id = "preop2"},/turf/simulated/floor/plating,/area/medical/ward) +"ayw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"ayx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"ayy" = (/obj/effect/floor_decal/corner/pink{dir = 9},/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/medical/ward) +"ayz" = (/obj/effect/floor_decal/corner/paleblue{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"ayA" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/maintenance/medbay) +"ayB" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/maintenance/medbay) +"ayC" = (/turf/simulated/wall,/area/constructionsite/medical) +"ayD" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/random/medical,/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/medical/scanning) +"ayE" = (/obj/item/weapon/tool/wrench,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/machinery/cell_charger,/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/light{dir = 1},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/medical/cryo) +"ayF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/medical/scanning) +"ayG" = (/obj/item/weapon/tool/crowbar,/turf/simulated/floor/plating,/area/constructionsite/medical) +"ayH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ayI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ayJ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ayK" = (/turf/simulated/wall,/area/maintenance/substation/civilian) +"ayL" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Surface Civilian Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/civilian) +"ayM" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/civilian) +"ayN" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Surface Civilian"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/nuke_storage) +"ayO" = (/obj/machinery/door/airlock/vault/bolted{req_access = list(53)},/obj/machinery/door/blast/regular{dir = 8; id = "Vault2"; layer = 3.3; name = "Vault Blast Door"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"ayP" = (/obj/machinery/door/airlock/vault/bolted{req_access = list(53)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/blast/regular{dir = 8; id = "Vault2"; layer = 3.3; name = "Vault Blast Door"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage) +"ayQ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/maintenance/bridge) +"ayR" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"ayS" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"ayT" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/wall/r_wall,/area/bridge_hallway) +"ayU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/bridge) +"ayV" = (/turf/simulated/floor/plating,/area/maintenance/bridge) +"ayW" = (/obj/structure/cable/heavyduty,/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating,/area/maintenance/bridge) +"ayX" = (/obj/effect/floor_decal/rust,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 8},/obj/structure/catwalk,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"ayY" = (/obj/effect/floor_decal/corner/pink/full,/obj/machinery/computer/med_data/laptop{dir = 1},/obj/structure/table/glass,/obj/machinery/light,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"ayZ" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/structure/table/glass,/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"aza" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"azb" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azc" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/medical/patient_wing) +"azd" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/table/glass,/obj/item/device/defib_kit/loaded,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"aze" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/bridge) +"azf" = (/turf/simulated/floor/plating,/area/medical/surgeryobs) +"azg" = (/obj/structure/bed/chair/comfy/teal{dir = 4},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azh" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/item/device/radio/intercom{broadcasting = 0; canhear_range = 5; dir = 1; frequency = 1487; icon_state = "intercom"; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = 21},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azi" = (/obj/structure/bed/chair/comfy/teal{dir = 8},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azj" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azk" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/table/glass,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azl" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/medical/medbaymain) +"azm" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"azn" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/effect/floor_decal/corner/paleblue/full,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/medical/cryo) +"azo" = (/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/medical/cryo) +"azp" = (/obj/structure/bed/chair{dir = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"azq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/bridge) +"azr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"azs" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medbay_aft) +"azt" = (/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/medbay_aft) +"azu" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/effect/floor_decal/corner/paleblue/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"azv" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/constructionsite/medical) +"azw" = (/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/plating,/area/constructionsite/medical) +"azx" = (/obj/machinery/atmospherics/unary/freezer{dir = 1; icon_state = "freezer"},/obj/effect/floor_decal/industrial/danger,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/camera/network/medbay{c_tag = "Cryogenics"; dir = 1},/turf/simulated/floor/tiled,/area/medical/cryo) +"azy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"azz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"azA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"azB" = (/obj/machinery/chemical_dispenser/bar_soft/full{pixel_y = 32},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"azC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/substation/civilian) +"azD" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/substation/civilian) +"azE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 10},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"azF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/bridge_hallway) +"azG" = (/obj/machinery/button/remote/blast_door{id = "Vault2"; pixel_x = 28; pixel_y = 6; req_access = list(19)},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/blue,/area/bridge_hallway) +"azH" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(19)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/bridge_hallway) +"azI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"azJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"azK" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 8},/obj/structure/cable{icon_state = "32-1"},/turf/simulated/open,/area/bridge_hallway) +"azL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/bridge) +"azM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating,/area/maintenance/bridge) +"azN" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/floor_decal/corner/pink/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"azO" = (/turf/simulated/floor/tiled/white,/area/medical/scanning) +"azP" = (/obj/structure/table/rack,/turf/simulated/floor/plating,/area/constructionsite/medical) +"azQ" = (/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/danger,/obj/effect/floor_decal/industrial/danger{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/medical/cryo) +"azR" = (/turf/simulated/floor/plating,/area/constructionsite/medical) +"azS" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azT" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azU" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azV" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azW" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azY" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"azZ" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"aAa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"aAb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance/sec{name = "Security Maintenance"; req_access = list(63); req_one_access = list(1)},/turf/simulated/floor/plating,/area/medical/surgeryobs) +"aAc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{name = "Medical Secondary Entry"; req_one_access = list(5)},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"aAd" = (/turf/simulated/wall,/area/medical/surgeryprep) +"aAe" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/medical/surgeryprep) +"aAf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "Surgery"; name = "Pre-Op Prep Room"; req_access = list(); req_one_access = list()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aAg" = (/turf/simulated/wall,/area/medical/medbay_emt_bay) +"aAh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aAi" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/effect/floor_decal/corner/beige{dir = 5},/obj/effect/floor_decal/corner/beige{dir = 9},/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aAj" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/table/glass,/obj/random/medical,/obj/random/medical,/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"aAk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aAl" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/hallway/primary/central_one) +"aAm" = (/turf/simulated/open,/area/hallway/primary/central_one) +"aAn" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/open,/area/hallway/primary/central_one) +"aAo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Civilian Upper Substation"; req_one_access = list(11)},/turf/simulated/floor,/area/maintenance/substation/civilian) +"aAp" = (/turf/simulated/wall,/area/bridge_hallway) +"aAq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"aAr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"aAs" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"aAt" = (/obj/machinery/door/airlock/command,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"aAu" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain) +"aAv" = (/obj/structure/fireplace{pixel_y = -15},/turf/simulated/wall/r_wall,/area/crew_quarters/captain) +"aAw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aAx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aAy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aAz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{name = "Paramedic Station"; req_one_access = list(5,66)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aAA" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/medical/medbay_emt_bay) +"aAB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the brig foyer."; dir = 8; id = "medbayfoyer"; name = "Medbay Foyer Doors"; pixel_x = 26; pixel_y = -6; req_access = list()},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"aAC" = (/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"aAD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"aAE" = (/obj/structure/sign/directions/evac,/obj/structure/sign/directions/medical{dir = 1; pixel_y = 8},/turf/simulated/wall,/area/medical/medbay_emt_bay) +"aAF" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/corner/pink/full{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "PreOperation 1"},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aAG" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aAH" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/computer/med_data/laptop{dir = 2; pixel_x = -5},/obj/effect/floor_decal/corner/pink/full{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aAI" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 4; id = "preop1"},/obj/structure/window/reinforced/polarized{dir = 8; id = "preop1"},/obj/structure/window/reinforced/polarized{dir = 1; id = "preop1"},/turf/simulated/floor/plating,/area/medical/surgeryprep) +"aAJ" = (/obj/structure/table/bench/padded,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aAK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aAL" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/machinery/camera/network/medbay{c_tag = "Surgery Hallway"},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aAM" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 1; id = "preop2"},/obj/structure/window/reinforced/polarized{dir = 4; id = "preop2"},/obj/structure/window/reinforced/polarized{dir = 8; id = "preop2"},/turf/simulated/floor/plating,/area/medical/surgeryprep) +"aAN" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/computer/med_data/laptop{dir = 2; pixel_x = 5},/obj/effect/floor_decal/corner/pink/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aAO" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/item/device/radio/intercom/department/medbay{dir = 1; pixel_y = 21},/obj/structure/curtain/open/privacy,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aAP" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/corner/pink/full{dir = 1},/obj/machinery/camera/network/medbay{c_tag = "PreOperation 2"},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aAQ" = (/obj/structure/table/rack,/obj/item/weapon/rig/medical/equipped,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aAR" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aAS" = (/obj/structure/closet/secure_closet/paramedic,/obj/item/clothing/accessory/storage/black_vest,/obj/random/medical,/obj/random/medical,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aAT" = (/obj/structure/closet/secure_closet/paramedic,/obj/random/medical,/obj/random/medical,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aAU" = (/obj/structure/sign/warning/radioactive{desc = "A sign denoting that this elevator shaft is not radiation proof"; name = "\improper NON-RADIATION SHIELDED AREA"; pixel_x = -30},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aAV" = (/obj/machinery/chem_master,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aAW" = (/obj/item/frame/light,/turf/simulated/floor/plating,/area/constructionsite/medical) +"aAX" = (/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"aAY" = (/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/turf/simulated/floor/plating,/area/constructionsite/medical) +"aAZ" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aBa" = (/obj/item/frame,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/constructionsite/medical) +"aBb" = (/obj/item/weapon/stool/padded{pixel_y = 5},/obj/effect/floor_decal/spline/plain{dir = 1},/obj/effect/floor_decal/corner/beige{dir = 5},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aBc" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/effect/floor_decal/corner/beige{dir = 5},/obj/effect/floor_decal/corner/beige{dir = 6},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aBd" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/hallway/primary/central_one) +"aBe" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aBf" = (/obj/machinery/door/airlock/maintenance{req_access = list(12)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/constructionsite/medical) +"aBg" = (/obj/item/stack/material/steel{amount = 50},/turf/simulated/floor/plating,/area/constructionsite/medical) +"aBh" = (/obj/machinery/camera/network/medbay{c_tag = "medbay EMT bay"},/turf/simulated/floor/plating,/area/medical/medbay_emt_bay) +"aBi" = (/obj/machinery/mech_recharger,/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay_emt_bay) +"aBj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"aBk" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aBl" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aBm" = (/obj/machinery/door/airlock/glass_command{id_tag = "sbridgedoor"; name = "Command Department"; req_access = list(19)},/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBn" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBo" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBq" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBu" = (/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/blue{dir = 5},/obj/machinery/camera/network/command{c_tag = "Bridge Hallway Fore Starboard"},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBw" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aBy" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain) +"aBz" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aBA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aBB" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aBC" = (/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aBD" = (/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aBE" = (/obj/machinery/camera/network/command{c_tag = "Colony Director's office North"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aBF" = (/obj/machinery/computer/arcade,/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"aBG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aBH" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/medbay) +"aBI" = (/turf/simulated/wall,/area/medical/surgery_storage) +"aBJ" = (/obj/machinery/door/airlock/medical{name = "Operating Theatre Storage"; req_access = list(45)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aBK" = (/turf/simulated/wall,/area/medical/surgeryobs) +"aBL" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/medical/medbay_emt_bay) +"aBM" = (/turf/simulated/wall,/area/medical/surgery2) +"aBN" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{id = "preop1"},/obj/structure/window/reinforced/polarized{dir = 4; id = "preop1"},/obj/structure/window/reinforced/polarized{dir = 8; id = "preop1"},/obj/structure/window/reinforced/polarized{dir = 1; id = "preop1"},/turf/simulated/floor/plating,/area/medical/surgeryprep) +"aBO" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/pink/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aBP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/pink{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aBQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; name = "Construction Site"},/turf/simulated/floor/plating,/area/constructionsite/medical) +"aBR" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance/medical,/turf/simulated/floor/plating,/area/medical/surgery_hallway) +"aBS" = (/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aBT" = (/turf/simulated/wall,/area/medical/surgery) +"aBU" = (/obj/item/weapon/stool/padded,/obj/machinery/button/windowtint{id = "preop1"; pixel_x = 8; pixel_y = 30},/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aBV" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{id = "preop1"},/obj/structure/window/reinforced/polarized{dir = 4; id = "preop1"},/obj/structure/window/reinforced/polarized{dir = 8; id = "preop1"},/turf/simulated/floor/plating,/area/medical/surgeryprep) +"aBW" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medbay_aft) +"aBX" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/railing{dir = 8},/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/open,/area/hallway/primary/central_one) +"aBY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aBZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/hop) +"aCa" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/plating,/area/constructionsite/medical) +"aCb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/rust/mono_rusted2,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "hop_office_line"; name = "HoP Office Line Shutters"; opacity = 0},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aCc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/constructionsite/medical) +"aCd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aCe" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aCf" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/open,/area/hallway/primary/central_one) +"aCg" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aCh" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "hop_office_line"; name = "HoP Office Line Shutters"; opacity = 0},/obj/machinery/flasher{id = "hopflash"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/plating,/area/hallway/primary/central_one) +"aCi" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/obj/machinery/camera/network/command{c_tag = "Bridge North Entrance"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aCj" = (/obj/machinery/door/airlock/glass_command{id_tag = "sbridgedoor"; name = "Command Department"; req_access = list(19)},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCk" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/obj/machinery/camera/network/command{c_tag = "Bridge Hallway Fore Port"; dir = 1},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/junction/yjunction,/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aCw" = (/obj/machinery/door/airlock/command{id_tag = "captaindoor"; name = "Colony Director's Office"; req_access = list(20); req_one_access = list(20)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aCx" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aCy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aCz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aCA" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"aCB" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/donut,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"aCC" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"aCD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aCE" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/weapon/melee/chainofcommand,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aCF" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/maintenance/medbay) +"aCG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/medbay) +"aCH" = (/obj/structure/closet/crate/freezer,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aCI" = (/obj/structure/closet/crate/freezer,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aCJ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/camera/network/medbay{c_tag = "Surgery Storage"},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aCK" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aCL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/reinforced,/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/hop) +"aCM" = (/obj/structure/table/standard,/obj/item/weapon/cell/potato,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aCN" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"aCO" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aCP" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/ward) +"aCQ" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"aCR" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/scanning) +"aCS" = (/obj/machinery/bodyscanner,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/scanning) +"aCT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aCU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/open,/area/hallway/primary/central_one) +"aCV" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "hop_office_line"; name = "HoP Office Line Shutters"; opacity = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/plating,/area/hallway/primary/central_one) +"aCW" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/railing{dir = 8},/turf/simulated/open,/area/hallway/primary/central_one) +"aCX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "hop_office_line"; name = "HoP Office Line Shutters"; opacity = 0},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aCY" = (/turf/simulated/wall,/area/medical/psych) +"aCZ" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = list(57)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aDa" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/open,/area/hallway/primary/central_one) +"aDb" = (/turf/simulated/wall,/area/hallway/primary/central_one) +"aDc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/multi_tile,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aDd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"; req_one_access = list()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aDe" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aDf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/autoname,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aDg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aDh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/multi_tile,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aDi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aDj" = (/obj/machinery/computer/id_restorer,/turf/simulated/wall,/area/crew_quarters/heads/hop) +"aDk" = (/turf/simulated/wall,/area/crew_quarters/heads/hop) +"aDl" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/hop) +"aDm" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/blue{dir = 9},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aDn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway) +"aDo" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aDp" = (/obj/structure/flora/pottedplant{icon_state = "plant-10"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aDq" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"aDr" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/security_space_law,/obj/item/device/taperecorder,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"aDs" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"aDt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aDu" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aDv" = (/obj/structure/grille,/obj/structure/lattice,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aDw" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aDx" = (/obj/structure/ladder/updown,/turf/simulated/floor/plating,/area/maintenance/medbay) +"aDy" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/engineeringatmos{name = "Pipe-Power Floor Transfer"},/turf/simulated/floor/tiled/white,/area/maintenance/medbay) +"aDz" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aDA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aDB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aDC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"aDD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aDE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aDF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aDG" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aDH" = (/obj/machinery/door/airlock/glass{name = "Meeting Room"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/meeting) +"aDI" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aDJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/ward) +"aDK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"aDL" = (/obj/machinery/body_scanconsole,/turf/simulated/floor/tiled/white,/area/medical/scanning) +"aDM" = (/obj/machinery/door/airlock/glass_medical{id_tag = "Surgery"; name = "Surgical Wing"; req_access = list(); req_one_access = list()},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/ward) +"aDN" = (/turf/simulated/floor/tiled/white,/area/medical/surgery) +"aDO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"aDP" = (/obj/structure/railing{dir = 1; flags = null},/turf/simulated/open,/area/hallway/secondary/exit) +"aDQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aDR" = (/turf/simulated/wall,/area/maintenance/medbay_aft) +"aDS" = (/obj/structure/table/bench/padded,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aDT" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{id = "preop2"},/obj/structure/window/reinforced/polarized{dir = 4; id = "preop2"},/obj/structure/window/reinforced/polarized{dir = 8; id = "preop2"},/turf/simulated/floor/plating,/area/medical/surgeryprep) +"aDU" = (/obj/item/weapon/stool/padded,/obj/machinery/button/windowtint{id = "preop2"; pixel_x = -8; pixel_y = 30},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aDV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/pink{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aDW" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/pink/full{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aDX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/ward) +"aDY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/ward) +"aDZ" = (/obj/machinery/door/airlock/highsecurity/red,/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"aEa" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/hallway/primary/central_one) +"aEb" = (/obj/structure/window/reinforced,/obj/structure/railing,/turf/simulated/open,/area/hallway/primary/central_one) +"aEc" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing,/turf/simulated/open,/area/hallway/primary/central_one) +"aEd" = (/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/hop) +"aEe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aEf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aEg" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/obj/machinery/button/flasher{id = "hopflash"; pixel_x = -25; pixel_y = 5},/obj/machinery/button/remote/blast_door{id = "hop_office_line"; name = "Line Shutters"; pixel_x = -35; pixel_y = 7},/obj/machinery/button/remote/blast_door{id = "hop_office_desk"; name = "Desk shutter Control"; pixel_x = -35; pixel_y = -7},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aEh" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/computer/guestpass{pixel_x = 0; pixel_y = 30},/obj/item/weapon/folder/blue_hop,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aEi" = (/obj/machinery/vending/cart,/obj/machinery/button/remote/blast_door{id = "hop_office_desk"; name = "Desk shutter Control"; pixel_y = 30},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aEj" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 30},/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aEk" = (/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aEl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway) +"aEm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{id = "mechbay"; name = "Mech Bay"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) +"aEn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/reinforced,/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/hop) +"aEo" = (/turf/simulated/floor/tiled/dark,/area/maintenance/bridge) +"aEp" = (/obj/item/weapon/book/manual/nuclear,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aEq" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aEr" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aEs" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Captain's Office"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aEt" = (/obj/structure/grille/broken,/obj/structure/lattice,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aEu" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/maintenance/medbay) +"aEv" = (/obj/structure/closet/crate/medical,/obj/item/weapon/surgical/surgicaldrill,/obj/item/weapon/surgical/FixOVein,/obj/item/weapon/surgical/circular_saw,/obj/item/weapon/surgical/scalpel,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/weapon/surgical/retractor,/obj/item/weapon/surgical/hemostat,/obj/item/weapon/surgical/cautery,/obj/item/weapon/surgical/bonesetter,/obj/item/weapon/surgical/bonegel,/obj/item/stack/nanopaste,/obj/item/weapon/autopsy_scanner,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aEw" = (/obj/machinery/iv_drip,/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aEx" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/obj/item/weapon/reagent_containers/glass/bottle/biomass,/obj/machinery/organ_printer/flesh/full,/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aEy" = (/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage) +"aEz" = (/obj/structure/table/rack,/obj/machinery/door/window/westright{dir = 4; name = "EVA Suit Storage"; req_access = list(5)},/obj/item/device/suit_cooling_unit,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical,/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/shoes/boots/winter/medical,/obj/machinery/camera/network/medbay{c_tag = "Medbay EMT office"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aEA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aEB" = (/obj/structure/closet,/turf/simulated/floor/tiled,/area/security/checkpoint) +"aEC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aED" = (/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aEE" = (/turf/simulated/wall,/area/medical/scanning) +"aEF" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/open,/area/hallway/primary/central_one) +"aEG" = (/obj/structure/railing{dir = 2; flags = null},/turf/simulated/open,/area/hallway/primary/central_one) +"aEH" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/open,/area/hallway/primary/central_one) +"aEI" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/checkpoint) +"aEJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Primary Hallway"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aEK" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 2; req_access = list()},/obj/machinery/door/firedoor/multi_tile{dir = 2},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aEL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/multi_tile/metal/mait{name = "Construction Site"},/turf/simulated/floor/plating,/area/constructionsite/medical) +"aEM" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/door/window/brigdoor/southleft,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/random/handgun/sec,/obj/random/handgun/sec,/obj/random/handgun/sec,/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aEN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aEO" = (/obj/machinery/papershredder,/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aEP" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/steel,/area/medical/medbay_emt_bay) +"aEQ" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel,/area/medical/medbay_emt_bay) +"aER" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aES" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/constructionsite/medical) +"aET" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/medbay3) +"aEU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"aEV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aEW" = (/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aEX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/maintenance/security) +"aEY" = (/obj/machinery/requests_console/preset/bridge{pixel_y = 32},/obj/machinery/camera/network/command{c_tag = "Command Meeting Room"},/obj/machinery/papershredder,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aEZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aFa" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{dir = 1; flags = null},/turf/simulated/open,/area/hallway/secondary/exit) +"aFb" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"aFc" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "hop_office_desk"; name = "HoP Office Privacy Shutters"; opacity = 0},/obj/machinery/door/window/northleft{dir = 8; icon_state = "left"; name = "Reception Window"},/obj/machinery/door/window/brigdoor/eastright{name = "Head of Personnel's Desk"; req_access = list(57)},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"aFd" = (/obj/effect/landmark/start{name = "Head of Personnel"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aFe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aFf" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aFg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aFh" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = list(57)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aFi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aFj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/bridge_hallway) +"aFk" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aFl" = (/obj/structure/closet/secure_closet/guncabinet{req_access = list(19); req_one_access = list(19)},/obj/item/weapon/gun/energy/protector,/obj/item/weapon/gun/energy/protector,/obj/item/weapon/gun/energy/protector,/turf/simulated/floor/tiled/dark,/area/maintenance/bridge) +"aFm" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aFn" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aFo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aFp" = (/mob/living/simple_mob/animal/passive/fox/renault,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aFq" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aFr" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aFs" = (/obj/structure/disposalpipe/up,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/medbay) +"aFt" = (/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/medbay) +"aFu" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Bar"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/multi_tile{dir = 2},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aFv" = (/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aFw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aFx" = (/obj/machinery/door/firedoor/glass/hidden,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/brown{dir = 4},/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aFy" = (/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"aFz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"aFA" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/door/firedoor/glass/hidden,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"aFB" = (/obj/machinery/door/firedoor/glass/hidden,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aFC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aFD" = (/obj/machinery/door/firedoor/glass/hidden,/obj/effect/floor_decal/corner/brown{dir = 6},/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aFE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aFF" = (/turf/simulated/wall,/area/crew_quarters/meeting) +"aFG" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"aFH" = (/obj/structure/railing{dir = 2; flags = null},/turf/simulated/open,/area/hallway/secondary/exit) +"aFI" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aFJ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aFK" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/open,/area/hallway/secondary/exit) +"aFL" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aFM" = (/obj/machinery/door/airlock/glass_external/public{name = "Emergency Departures Access"},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"aFN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aFO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aFP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Doors"; opacity = 0},/obj/machinery/door/airlock/multi_tile/glass{name = "Security Lobby"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/effect/floor_decal/corner/red{dir = 9},/obj/machinery/door/firedoor/multi_tile,/turf/simulated/floor/tiled/monofloor{dir = 8},/area/security/lobby) +"aFQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "hop_office_desk"; name = "HoP Office Privacy Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/cable/green,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) +"aFR" = (/obj/machinery/computer/card{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aFS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/hop) +"aFT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/hop) +"aFU" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/omnihud,/obj/machinery/light{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aFV" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) +"aFW" = (/obj/effect/floor_decal/corner/blue{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aFX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway) +"aFY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aFZ" = (/obj/structure/table/rack,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/captain) +"aGa" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/captain) +"aGb" = (/obj/machinery/shower{pixel_y = 2},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/captain) +"aGc" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/matches,/obj/item/clothing/mask/smokable/cigarette/cigar,/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aGd" = (/obj/structure/table/woodentable,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/item/device/megaphone,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aGe" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aGf" = (/obj/item/weapon/pen/blue,/obj/item/weapon/pen/red{pixel_x = -5; pixel_y = -1},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aGg" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue_captain,/obj/item/weapon/stamp/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aGh" = (/obj/structure/table/woodentable,/obj/machinery/computer/skills,/obj/item/device/perfect_tele{name = "Director's translocator"},/obj/machinery/button/remote/airlock{dir = 4; id = "captaindoor"; name = "Colony Director Office Door"; pixel_x = 30},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aGi" = (/obj/structure/flora/tree/pine,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"aGj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aGk" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aGl" = (/obj/structure/disposalpipe/down{dir = 4},/obj/structure/lattice,/turf/simulated/open,/area/maintenance/medbay) +"aGm" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aGn" = (/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 4},/obj/structure/lattice,/obj/structure/cable{icon_state = "32-4"},/obj/structure/disposalpipe/broken{dir = 8},/turf/simulated/open,/area/maintenance/medbay) +"aGo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aGp" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel,/area/maintenance/medbay) +"aGq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/medbay) +"aGr" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/medbay) +"aGs" = (/obj/structure/closet/crate,/obj/random/drinkbottle,/obj/random/drinkbottle,/obj/random/maintenance/clean,/obj/item/weapon/handcuffs/fuzzy,/turf/simulated/floor,/area/maintenance/medbay) +"aGt" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/maintenance/medbay) +"aGu" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/engine_room) +"aGv" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aGw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aGx" = (/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aGy" = (/obj/machinery/button/windowtint{id = "meeting"; pixel_y = 25},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aGz" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aGA" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/space_heater,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aGB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"aGC" = (/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/camera/network/medbay{c_tag = "Medbay Psychiatrists Office"; dir = 4},/obj/item/weapon/stool/padded,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/turf/simulated/floor/wood,/area/medical/psych) +"aGD" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/medical/psych) +"aGE" = (/obj/structure/window/reinforced/polarized{dir = 1; id = "mental_health"},/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized{dir = 2; id = "mental_health"},/obj/structure/window/reinforced/polarized{dir = 4; id = "mental_health"},/obj/structure/window/reinforced/polarized{dir = 8; id = "mental_health"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/medical/psych) +"aGF" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/item/ammo_magazine/m9mmt/rubber,/obj/item/ammo_magazine/m9mmt/rubber,/obj/item/ammo_magazine/m9mmt/rubber,/obj/machinery/door/window/brigdoor/northleft{dir = 8; name = "Ammo"; req_access = list(1)},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4},/obj/item/ammo_magazine/m9mmt/rubber,/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aGG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"aGH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aGI" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/corner/paleblue,/turf/simulated/floor/tiled/white,/area/medical/medbay) +"aGJ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"aGK" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "hop_office_desk"; name = "HoP Office Privacy Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/cable/green,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) +"aGL" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aGM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/hop) +"aGN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/mob/living/simple_mob/animal/passive/dog/corgi/Ian,/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/hop) +"aGO" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Head of Personnel's Office"},/obj/machinery/ai_status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aGP" = (/obj/effect/floor_decal/corner/blue{dir = 9},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aGQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway) +"aGR" = (/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aGS" = (/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/bridge) +"aGT" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/captain) +"aGU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/captain) +"aGV" = (/obj/structure/toilet{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/captain) +"aGW" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/crew_quarters/captain) +"aGX" = (/obj/structure/closet/secure_closet/captains,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command,/obj/item/clothing/shoes/boots/winter/command{name = "colony director's snow boots"},/obj/item/clothing/glasses/omnihud/all,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aGY" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/effect/landmark/start{name = "Colony Director"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aGZ" = (/obj/machinery/computer/card{dir = 8},/obj/item/weapon/card/id/gold/captain/spare,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aHa" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/structure/railing{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aHb" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"aHc" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aHd" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges3{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aHe" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aHf" = (/turf/simulated/wall/r_wall,/area/maintenance/medbay) +"aHg" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -2; pixel_y = -5},/obj/item/weapon/storage/briefcase{pixel_x = 3; pixel_y = 0},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aHh" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aHi" = (/obj/structure/closet/lawcloset,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aHj" = (/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aHk" = (/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/obj/item/device/camera{pixel_x = 3; pixel_y = -4},/obj/item/device/flash,/obj/item/device/flash,/obj/item/weapon/storage/secure/briefcase,/obj/structure/closet,/obj/item/weapon/storage/secure/briefcase,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/obj/item/device/camera{pixel_x = 3; pixel_y = -4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aHl" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Internal Affairs"},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aHm" = (/obj/machinery/photocopier,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aHn" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aHo" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aHp" = (/turf/simulated/wall,/area/lawoffice) +"aHq" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aHr" = (/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aHs" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aHt" = (/obj/machinery/photocopier,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aHu" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aHv" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aHw" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) +"aHx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aHy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/door/airlock/multi_tile/glass{req_access = list(); req_one_access = list()},/obj/machinery/door/firedoor/multi_tile,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aHz" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aHA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aHB" = (/obj/structure/flora/pottedplant/fern,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aHC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"aHD" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/obj/machinery/camera/network/command{c_tag = "Head of Personnel"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aHE" = (/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aHF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/hop) +"aHG" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 0},/obj/machinery/light_switch{pixel_x = 34; pixel_y = 0},/obj/machinery/keycard_auth{pixel_x = 24; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aHH" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/corner/blue{dir = 6},/obj/machinery/camera/network/command{c_tag = "Bridge Hallway Aft"; dir = 9},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aHI" = (/obj/machinery/door/airlock{name = "Private Restroom"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/captain) +"aHJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aHK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aHL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aHM" = (/obj/machinery/computer/communications{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aHN" = (/obj/machinery/door/window/brigdoor/westleft{name = "Security Checkpoint"; req_access = list(1)},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aHO" = (/obj/machinery/power/tracker,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aHP" = (/turf/simulated/wall,/area/maintenance/auxsolarport) +"aHQ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aHR" = (/obj/structure/sign/warning/lethal_turrets,/turf/simulated/wall,/area/borealis2/outdoors/grounds) +"aHS" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/structure/railing{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aHT" = (/obj/structure/grille,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/security/airlock) +"aHU" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/security/airlock) +"aHV" = (/turf/simulated/wall/r_wall,/area/security/armoury) +"aHW" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Internal Affairs Agent"},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aHX" = (/turf/simulated/floor/plating,/area/maintenance/medbay_aft) +"aHY" = (/obj/structure/table/standard,/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aHZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aIa" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aIb" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/button/remote/blast_door{id = "EMT"; name = "EMT Mech Bay"; pixel_x = 25; pixel_y = 25},/turf/simulated/floor/tiled/steel,/area/medical/medbay_emt_bay) +"aIc" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aId" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aIe" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue,/obj/item/weapon/folder/red,/obj/item/weapon/pen/multi,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aIf" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aIg" = (/obj/machinery/account_database,/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aIh" = (/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/obj/effect/floor_decal/corner/blue{dir = 9},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aIi" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(12)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/bridge_hallway) +"aIj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/camera/network/command{c_tag = "Colony Director's bedroom"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aIk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aIl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aIm" = (/obj/machinery/door/airlock/command{name = "Colony Director's Quarters"; req_access = list(20)},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"aIn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aIo" = (/obj/structure/table/rack,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/armor/captain,/obj/item/clothing/head/helmet/space/capspace,/obj/machinery/newscaster/security_unit{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aIp" = (/obj/structure/displaycase,/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aIq" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/keycard_auth{pixel_y = -32},/obj/machinery/camera/network/command{c_tag = "Colony Director's Office South"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aIr" = (/obj/structure/table/woodentable,/obj/machinery/button/remote/blast_door{id = "cap_office"; name = "Security Shutters"; pixel_x = 0; pixel_y = -24},/obj/item/weapon/disk/nuclear,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aIs" = (/obj/structure/filingcabinet,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aIt" = (/obj/machinery/porta_turret/stationary,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/security/airlock) +"aIu" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aIv" = (/obj/structure/grille,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aIw" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/closet/crate/solar,/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aIx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/closet/crate/solar,/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aIy" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/standard,/obj/item/clothing/gloves/yellow,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aIz" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/cable_coil/lime,/obj/structure/table/standard,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aIA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aIB" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aIC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aID" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aIE" = (/obj/structure/grille,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aIF" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 1},/obj/structure/railing,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"aIG" = (/obj/effect/floor_decal/rust,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 8},/obj/structure/catwalk,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"aIH" = (/obj/effect/floor_decal/rust,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/catwalk,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"aII" = (/obj/effect/floor_decal/rust,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"aIJ" = (/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"aIK" = (/turf/simulated/wall/r_wall,/area/security/airlock) +"aIL" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/window/brigdoor{name = "Riot Armor"; icon_state = "leftsecure"; dir = 2},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/autolathe{hacked = 1; name = "unlocked autolathe"},/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aIM" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/melee/baton/loaded,/obj/machinery/door/window/brigdoor/northright{dir = 2; icon_state = "rightsecure"; name = "Riot Armor"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aIN" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/melee/baton/loaded,/obj/machinery/door/window/brigdoor{name = "Riot Armor"; icon_state = "leftsecure"; dir = 2},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aIO" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/melee/baton/loaded,/obj/machinery/door/window/brigdoor/northright{dir = 2; icon_state = "rightsecure"; name = "Riot Armor"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aIP" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/empslite{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aIQ" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/handcuffs{pixel_x = 8; pixel_y = 6},/obj/item/weapon/storage/box/chemimp{pixel_x = 4; pixel_y = 3},/obj/item/weapon/storage/box/trackimp,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/camera/network/security{c_tag = "armoury"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aIR" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/window/brigdoor/eastleft{icon_state = "leftsecure"; dir = 2},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aIS" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/door/window/brigdoor/eastleft{icon_state = "leftsecure"; dir = 2},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aIT" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/door/window/brigdoor/eastright{icon_state = "rightsecure"; dir = 2},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aIU" = (/obj/structure/table/rack/shelf/steel,/obj/item/gunbox{pixel_y = 6},/obj/item/gunbox{pixel_y = -3},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/red,/area/security/armoury) +"aIV" = (/obj/machinery/suit_cycler/security{req_access = null},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aIW" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aIX" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aIY" = (/obj/structure/table/reinforced,/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/item/weapon/material/ashtray/plastic{pixel_x = 4; pixel_y = 6},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aIZ" = (/obj/structure/table/reinforced,/obj/item/weapon/folder{pixel_x = -4},/obj/item/weapon/folder/red{pixel_y = 3},/obj/item/weapon/folder/blue{pixel_x = 5},/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp/internalaffairs,/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJa" = (/obj/structure/table/reinforced,/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/item/weapon/material/ashtray/plastic{pixel_x = 4; pixel_y = 6},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJb" = (/obj/structure/table/reinforced,/obj/item/weapon/folder{pixel_x = -4},/obj/item/weapon/folder/red{pixel_y = 3},/obj/item/weapon/folder/blue{pixel_x = 5},/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp/internalaffairs,/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJc" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJd" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "lawyer_blast"},/turf/simulated/floor/plating,/area/lawoffice) +"aJe" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aJf" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/sink/kitchen{pixel_x = -30},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aJg" = (/obj/structure/table/standard,/obj/machinery/light,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) +"aJh" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aJi" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aJj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/ward) +"aJk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aJl" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aJm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aJn" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/structure/flora/pottedplant,/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aJo" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aJp" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/hop,/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aJq" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aJr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aJs" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aJt" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 9},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aJu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway) +"aJv" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aJw" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aJx" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/captaindouble,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aJy" = (/obj/structure/closet/wardrobe/captain,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"aJz" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/stool,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aJA" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Solar Farm - SMES 1"},/obj/structure/cable/heavyduty,/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aJB" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Solar Farm - SMES 2"},/obj/structure/cable/heavyduty,/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aJC" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Solar Farm - SMES 3"},/obj/structure/cable/heavyduty,/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aJD" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Solar Farm Output"; name_tag = "Solar Farm Output"},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"aJE" = (/obj/structure/closet/crate/secure/large/reinforced{anchored = 1; desc = "A hefty, reinforced metal crate with an electronic locking system. It's securely bolted to the floor and cannot be moved."; name = "gun safe"; req_access = list(58)},/obj/item/weapon/gun/projectile/shotgun/pump/combat,/obj/item/weapon/gun/projectile/shotgun/pump/combat,/obj/item/weapon/gun/projectile/automatic/z8,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aJF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aJG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aJH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aJI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aJJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aJK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aJL" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/brigdoor/westright{name = "Energy"},/obj/item/weapon/gun/energy/sniperrifle,/obj/item/weapon/gun/energy/ionrifle,/turf/simulated/floor/tiled/red,/area/security/armoury) +"aJM" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJO" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJR" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJS" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aJT" = (/obj/machinery/door/blast/shutters{dir = 4; id = "EMT"; layer = 3.1; name = "EMT Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay_emt_bay) +"aJU" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Internal Affairs"; req_access = list(38)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/lawoffice) +"aJV" = (/obj/structure/closet/firecloset/full/double,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aJW" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/wall/r_wall,/area/borealis2/outdoors/grounds) +"aJX" = (/obj/machinery/door/airlock/maintenance{req_access = list(12)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/medbay_aft) +"aJY" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aJZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aKa" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aKb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aKc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aKd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aKe" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aKf" = (/obj/machinery/computer/med_data{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aKg" = (/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aKh" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aKi" = (/obj/structure/closet/secure_closet/hop2,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command,/turf/simulated/floor/wood,/area/crew_quarters/heads/hop) +"aKj" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(19)},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor,/area/maintenance/bridge) +"aKk" = (/turf/simulated/wall,/area/maintenance/bridge) +"aKl" = (/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aKm" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/power/solar_control,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow,/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aKn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aKo" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aKp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aKq" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"aKr" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"aKs" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/borealis2/outdoors/grounds) +"aKt" = (/obj/machinery/camera/network/security{c_tag = "Security Firing Range"; dir = 4},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/table/rack,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/door/window/brigdoor/northright{dir = 4},/obj/item/weapon/gun/projectile/automatic/wt550,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/projectile/automatic/wt550,/turf/simulated/floor/tiled/red,/area/security/armoury) +"aKu" = (/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aKv" = (/obj/structure/table/rack,/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/red,/area/security/armoury) +"aKw" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/empslite{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aKx" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/handcuffs{pixel_x = 8; pixel_y = 6},/obj/item/weapon/storage/box/chemimp{pixel_x = 4; pixel_y = 3},/obj/item/weapon/storage/box/trackimp,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/red,/area/security/armoury) +"aKy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aKz" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/item/weapon/storage/box/shotgunshells,/obj/item/weapon/storage/box/shotgunshells,/obj/item/weapon/storage/box/shotgunammo,/obj/machinery/door/window/brigdoor/northright{dir = 8; name = "LETHALS"; req_access = list(1)},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aKA" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/bulletproof,/obj/item/clothing/shoes/leg_guard/bulletproof,/obj/item/clothing/suit/armor/bulletproof/alt,/obj/item/clothing/head/helmet/bulletproof,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/window/brigdoor/eastleft,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aKB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aKC" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/northright{dir = 8; name = "Combat Armor"},/obj/item/clothing/gloves/arm_guard/combat,/obj/item/clothing/shoes/leg_guard/combat,/obj/item/clothing/suit/armor/combat,/obj/item/clothing/head/helmet/combat,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aKD" = (/obj/machinery/camera/network/civilian{dir = 5},/obj/structure/flora/pottedplant{icon_state = "plant-21"},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aKE" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/effect/floor_decal/corner/paleblue/full,/obj/random/medical,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/medical/cryo) +"aKF" = (/obj/machinery/door/airlock/maintenance{req_access = list(12)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/central_one) +"aKG" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/machinery/sleeper{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"aKH" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aKI" = (/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Paramedic"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aKJ" = (/turf/simulated/wall/r_wall,/area/hallway/primary/central_one) +"aKK" = (/turf/simulated/wall/r_wall,/area/bridge) +"aKL" = (/obj/machinery/newscaster/security_unit,/turf/simulated/wall/r_wall,/area/bridge) +"aKM" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge) +"aKN" = (/obj/machinery/door/airlock/glass_command{id_tag = "sbridgedoor"; name = "Bridge"; req_access = list(19)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge) +"aKO" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aKP" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(12)},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/bridge) +"aKQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aKR" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aKS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aKT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aKU" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Solar Farm Input"; name_tag = "Solar Farm Input"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aKV" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aKW" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aKX" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aKY" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/multi_tile/metal/mait,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/maintenance/auxsolarport) +"aKZ" = (/obj/machinery/trailblazer/blue,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"aLa" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/item/weapon/gun/projectile/shotgun/pump{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/projectile/shotgun/pump,/obj/machinery/door/window/brigdoor/eastright{name = "Ballistics"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aLb" = (/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/structure/table/rack,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m9mmt,/obj/item/ammo_magazine/m9mmt,/obj/item/ammo_magazine/m9mmt,/obj/item/ammo_magazine/m9mmt,/obj/machinery/door/window/brigdoor/northleft{dir = 8; name = "LETHALS"; req_access = list(1)},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aLc" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/bulletproof,/obj/item/clothing/shoes/leg_guard/bulletproof,/obj/item/clothing/suit/armor/bulletproof/alt,/obj/item/clothing/head/helmet/bulletproof,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/window/brigdoor/eastright,/turf/simulated/floor/tiled/red,/area/security/armoury) +"aLd" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aLe" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/autolathe{desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; hacked = 1; name = "Unlocked Autolathe"},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aLf" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = -26},/obj/machinery/button/windowtint{id = "lawyer_blast"; pixel_x = 0; pixel_y = -36},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aLg" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aLh" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aLi" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aLj" = (/obj/machinery/camera/network/civilian{dir = 9},/obj/structure/flora/pottedplant{icon_state = "plant-06"},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"aLk" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/security) +"aLl" = (/turf/simulated/wall,/area/crew_quarters/kitchen) +"aLm" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aLn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aLo" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aLp" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/open,/area/crew_quarters/kitchen) +"aLq" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/machinery/camera/network/medbay{c_tag = "Triage"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/sleep_console,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"aLr" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aLs" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/hallway/primary/central_one) +"aLt" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/hallway/primary/central_one) +"aLu" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/hallway/primary/central_one) +"aLv" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/item/weapon/flag,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aLw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aLx" = (/obj/structure/table/reinforced,/obj/item/device/radio,/obj/item/device/radio{pixel_x = 2; pixel_y = 3},/obj/machinery/recharger,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aLy" = (/obj/machinery/computer/atmoscontrol{name = "\improper Auxiliary Atmospherics Computer"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/yellow/full{icon_state = "corner_white_full"; dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) +"aLz" = (/obj/machinery/computer/power_monitor,/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/machinery/camera/network/command{c_tag = "Bridge Fore"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aLA" = (/obj/machinery/computer/rcon,/obj/effect/floor_decal/corner/yellow/full{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/bridge) +"aLB" = (/turf/simulated/floor/tiled/dark,/area/bridge) +"aLC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge) +"aLD" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/bridge) +"aLE" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/command) +"aLF" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Electrical Maintenance"; req_access = list(19)},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/command) +"aLG" = (/turf/simulated/wall/r_wall,/area/bridge/blueshield) +"aLH" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(19)},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/bridge/blueshield) +"aLI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aLJ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/maintenance/auxsolarport) +"aLK" = (/turf/simulated/wall,/area/borealis2/outdoors/exterior/explore1) +"aLL" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aLM" = (/obj/structure/grille/broken,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aLN" = (/obj/structure/grille,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aLO" = (/obj/structure/girder,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aLP" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aLQ" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aLR" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aLS" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/flasher/portable,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aLT" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/flasher/portable,/turf/simulated/floor/tiled/red,/area/security/armoury) +"aLU" = (/obj/structure/closet/bombclosetsecurity,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/red,/area/security/armoury) +"aLV" = (/obj/machinery/mech_recharger,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aLW" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/machinery/door/window/brigdoor/northright{dir = 8; name = "Ammo"},/obj/structure/table/rack,/obj/item/weapon/storage/box/flashshells,/obj/item/weapon/storage/box/beanbags,/obj/item/weapon/storage/box/beanbags,/obj/item/weapon/storage/box/stunshells,/obj/item/weapon/storage/box/stunshells,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aLX" = (/obj/structure/table/rack,/obj/machinery/door/window/brigdoor/eastleft,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/item/weapon/gun/energy/gun{pixel_x = 3; pixel_y = 3},/obj/item/weapon/gun/energy/gun,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/red,/area/security/armoury) +"aLY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aLZ" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/laserproof,/obj/item/clothing/shoes/leg_guard/laserproof,/obj/item/clothing/suit/armor/laserproof{pixel_x = 0; pixel_y = 0},/obj/item/clothing/head/helmet/laserproof,/obj/machinery/door/window/brigdoor/eastright{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aMa" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/maintenance/substation/security) +"aMb" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/maintenance/substation/security) +"aMc" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Security"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/security) +"aMd" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Security Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/security) +"aMe" = (/turf/simulated/wall/r_wall,/area/lawoffice) +"aMf" = (/obj/structure/railing{dir = 2; flags = null},/turf/simulated/open,/area/crew_quarters/kitchen) +"aMg" = (/obj/machinery/atm,/turf/simulated/wall,/area/hallway/primary/central_one) +"aMh" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aMi" = (/obj/structure/table/standard,/obj/machinery/light,/obj/structure/closet/secure_closet/medical_wall{name = "anesthetic closet"; pixel_x = 32; req_access = list(29)},/obj/item/weapon/tank/anesthetic,/obj/item/weapon/tank/anesthetic,/obj/item/weapon/tank/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/item/clothing/mask/breath/medical,/obj/item/clothing/mask/breath/medical,/obj/item/weapon/storage/box/gloves,/obj/item/device/defib_kit/jumper_kit/loaded,/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"aMj" = (/obj/structure/filingcabinet/chestdrawer{dir = 1},/obj/machinery/requests_console/preset/cmo{pixel_y = -30},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"aMk" = (/obj/machinery/computer/timeclock/premade/west,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aMl" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aMm" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge) +"aMn" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/secure/briefcase,/turf/simulated/floor/tiled/dark,/area/bridge) +"aMo" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aMp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) +"aMq" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Command Secretary"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aMr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/dark,/area/bridge) +"aMs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/dark,/area/bridge) +"aMt" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/bridge) +"aMu" = (/obj/machinery/cell_charger,/obj/structure/table/steel,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/substation/command) +"aMv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/maintenance/substation/command) +"aMw" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Command Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/command) +"aMx" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aMy" = (/obj/effect/floor_decal/corner/blue/full{dir = 8},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aMz" = (/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aMA" = (/obj/effect/floor_decal/corner/blue{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aMB" = (/obj/structure/closet/secure_closet/blueshield,/obj/effect/floor_decal/corner/blue/full{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aMC" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/gray,/area/borealis2/outdoors/exterior/explore1) +"aMD" = (/obj/item/weapon/material/shard,/turf/simulated/floor/tiled/old_tile/gray,/area/borealis2/outdoors/exterior/explore1) +"aME" = (/obj/effect/decal/cleanable/blood/drip,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/gray,/area/borealis2/outdoors/exterior/explore1) +"aMF" = (/obj/structure/grille,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 10},/turf/simulated/floor/plating,/area/borealis2/outdoors/exterior/explore1) +"aMG" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aMH" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aMI" = (/obj/structure/closet/l3closet/security,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/red,/area/security/armoury) +"aMJ" = (/obj/structure/table/standard,/obj/item/weapon/cell/device/weapon{pixel_x = 4; pixel_y = 4},/obj/item/weapon/cell/device/weapon{pixel_x = 2; pixel_y = 2},/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/machinery/recharger/wallcharger{dir = 1; pixel_x = 4; pixel_y = -32},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aMK" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aML" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"aMM" = (/obj/structure/table/rack,/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/eastright,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/weapon/gun/energy/laser{pixel_y = 2},/obj/item/weapon/gun/energy/laser{pixel_y = -2},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aMN" = (/obj/machinery/button/remote/blast_door{id = "ArmorAc2"; name = "Armory Quick Deploy"; pixel_x = -23; pixel_y = -23; req_one_access = list(1)},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aMO" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/laserproof,/obj/item/clothing/shoes/leg_guard/laserproof,/obj/item/clothing/suit/armor/laserproof{pixel_x = 0; pixel_y = 0},/obj/item/clothing/head/helmet/laserproof,/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/eastleft{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/red,/area/security/armoury) +"aMP" = (/turf/simulated/floor/plating,/area/maintenance/substation/security) +"aMQ" = (/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Security Subgrid"; name_tag = "Security Subgrid"},/turf/simulated/floor,/area/maintenance/substation/security) +"aMR" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/maintenance/substation/security) +"aMS" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/security) +"aMT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Security Substation"; req_one_access = list(1,11,24)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/maintenance/substation/security) +"aMU" = (/obj/structure/disposalpipe/sortjunction/untagged{dir = 4},/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aMV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/security) +"aMW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/security) +"aMX" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/security) +"aMY" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access = list(28)},/obj/machinery/door/firedoor,/turf/simulated/floor,/area/crew_quarters/kitchen) +"aMZ" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aNa" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/extinguisher_cabinet{pixel_x = -4; pixel_y = 30},/obj/machinery/button/remote/blast_door{id = "kitchen"; name = "Kitchen shutters"; pixel_x = 8; pixel_y = 25},/obj/machinery/cooker/grill,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aNb" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aNc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"aNd" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aNe" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/cable/green,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge) +"aNf" = (/obj/machinery/computer/secure_data{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/red/full{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) +"aNg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) +"aNh" = (/obj/machinery/button/remote/blast_door{id = "bridge blast"; name = "Bridge Blastdoors"; pixel_x = -10; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/bridge) +"aNi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) +"aNj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/dark,/area/bridge) +"aNk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aNl" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) +"aNm" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor,/area/maintenance/substation/command) +"aNn" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/maintenance/substation/command) +"aNo" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Command"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/command) +"aNp" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/medical,/obj/random/maintenance/clean,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/bridge) +"aNq" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/bridge) +"aNr" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/bridge) +"aNs" = (/obj/structure/table/rack,/obj/item/weapon/flame/lighter/zippo/blue,/obj/effect/floor_decal/corner/blue{dir = 9},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aNt" = (/obj/structure/bed/chair/comfy/blue,/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aNu" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aNv" = (/obj/effect/floor_decal/corner/blue{dir = 6},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled,/area/bridge_hallway) +"aNw" = (/turf/simulated/floor/tiled/old_tile/gray,/area/borealis2/outdoors/exterior/explore1) +"aNx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/airlock/security{name = "Equipment Storage"; req_access = list(3)},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aNy" = (/obj/structure/sign/department/armory,/turf/simulated/wall/r_wall,/area/security/armoury) +"aNz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{dir = 8; id = "ArmorAc2"; layer = 3.3; name = "Quick Deployment"},/turf/simulated/floor/tiled/steel_grid,/area/security/armoury) +"aNA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{dir = 8; id = "ArmorAc2"; layer = 3.3; name = "Quick Deployment"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/security/armoury) +"aNB" = (/turf/simulated/wall,/area/security/armoury) +"aNC" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/security) +"aND" = (/obj/machinery/door/airlock/engineering{name = "Security Substation"; req_one_access = list(1,11,24)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/security) +"aNE" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/substation/security) +"aNF" = (/turf/simulated/wall/r_wall,/area/maintenance/security) +"aNG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/security) +"aNH" = (/turf/simulated/wall,/area/crew_quarters/bar) +"aNI" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aNJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aNK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"aNL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aNM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aNN" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aNO" = (/obj/machinery/computer/security{dir = 4},/obj/effect/floor_decal/corner/red/full,/turf/simulated/floor/tiled/dark,/area/bridge) +"aNP" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) +"aNQ" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -12},/turf/simulated/wall,/area/bridge) +"aNR" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/dark,/area/bridge) +"aNS" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/dark,/area/bridge) +"aNT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge) +"aNU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Electrical Maintenance"; req_access = list(19)},/turf/simulated/floor,/area/maintenance/substation/command) +"aNV" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/command) +"aNW" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Command Subgrid"; name_tag = "Command Subgrid"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/substation/command) +"aNX" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/maintenance/substation/command) +"aNY" = (/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"aNZ" = (/obj/structure/table/glass,/obj/effect/floor_decal/corner/blue{dir = 9},/obj/machinery/camera/network/command{c_tag = "Blueshield"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aOa" = (/obj/structure/table/glass,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aOb" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aOc" = (/obj/effect/floor_decal/corner/blue{dir = 6},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aOd" = (/obj/effect/decal/cleanable/blood/tracks/footprints,/turf/simulated/floor/tiled/old_tile/gray,/area/borealis2/outdoors/exterior/explore1) +"aOe" = (/obj/effect/decal/remains/posi,/turf/simulated/floor/tiled/old_tile/gray,/area/borealis2/outdoors/exterior/explore1) +"aOf" = (/turf/simulated/wall/r_wall,/area/security/warden) +"aOg" = (/obj/machinery/camera/network/security{c_tag = "Warden"; dir = 4},/obj/structure/table/steel,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/machinery/newscaster/security_unit{pixel_x = 0; pixel_y = 30},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/item/weapon/hand_labeler,/obj/item/device/retail_scanner/security{name = "fine payment scanner"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aOh" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/structure/closet/secure_closet/warden,/obj/effect/floor_decal/industrial/outline/grey,/obj/item/weapon/gun/projectile/shotgun/pump/combat{ammo_type = /obj/item/ammo_casing/a12g/beanbag; desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; name = "warden's shotgun"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aOi" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/warden) +"aOj" = (/turf/simulated/floor/tiled/dark,/area/security/warden) +"aOk" = (/obj/machinery/computer/security,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/warden) +"aOl" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/steel,/area/security/warden) +"aOm" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/brigdoor/southright,/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aOn" = (/obj/effect/floor_decal/corner/red{dir = 10},/obj/machinery/vending/security/yw,/turf/simulated/floor/tiled,/area/security/security_processing) +"aOo" = (/obj/machinery/button/remote/blast_door{id = "ArmorAc2"; name = "Armory Quick Deploy"; pixel_x = -23; pixel_y = 23; req_access = list(3)},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aOp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aOq" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/window/brigdoor/southleft,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/energy/ionrifle/pistol,/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aOr" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/storage/vest/heavy/officer,/obj/item/clothing/suit/storage/vest/heavy/officer,/obj/item/clothing/suit/storage/vest/heavy/officer,/obj/item/clothing/suit/storage/vest/heavy/officer,/obj/item/clothing/suit/storage/vest/heavy/officer,/obj/item/clothing/suit/storage/vest/heavy/officer,/obj/machinery/door/window/brigdoor/southright{name = "Combat Armor"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aOs" = (/turf/simulated/wall,/area/security/breakroom) +"aOt" = (/obj/structure/bed/chair,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"aOu" = (/obj/structure/bed/chair,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"aOv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/security{c_tag = "Security Break room"},/turf/simulated/floor/wood,/area/security/breakroom) +"aOw" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/security/breakroom) +"aOx" = (/obj/machinery/status_display{pixel_y = 30},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/security/breakroom) +"aOy" = (/turf/simulated/wall/r_wall,/area/security/breakroom) +"aOz" = (/obj/structure/reagent_dispensers/beerkeg,/obj/machinery/camera/network/civilian{c_tag = "Library Fore"; dir = 2},/obj/machinery/alarm{pixel_y = 22},/obj/machinery/chem_master,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aOA" = (/obj/structure/closet/secure_closet/bar{req_access = list(25)},/obj/item/weapon/storage/secure/safe{pixel_z = 30},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aOB" = (/obj/structure/closet/gmcloset{icon_closed = "black"; icon_state = "black"; name = "formal wardrobe"},/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/device/retail_scanner/civilian,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aOC" = (/obj/structure/table/marble,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/door/blast/shutters{dir = 1; id = "kitchen2"; layer = 3.1; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aOD" = (/obj/structure/closet/secure_closet/freezer/kitchen{req_access = list(28)},/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aOE" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aOF" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aOG" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aOH" = (/obj/structure/closet/secure_closet/freezer/kitchen{req_access = list(28)},/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/button/remote/blast_door{id = "kitchen2"; name = "Kitchen shutters"; pixel_x = 8; pixel_y = 25},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aOI" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aOJ" = (/obj/machinery/cooker/fryer,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aOK" = (/obj/machinery/cooker/oven,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aOL" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aOM" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/crew_quarters/kitchen) +"aON" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aOO" = (/obj/structure/table/reinforced,/obj/item/device/flash,/obj/item/device/flash,/obj/item/device/aicard,/obj/effect/floor_decal/corner/blue/full{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) +"aOP" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) +"aOQ" = (/obj/machinery/computer/aifixer{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) +"aOR" = (/turf/simulated/wall,/area/bridge) +"aOS" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/multitool,/obj/item/weapon/storage/toolbox/mechanical,/obj/structure/fireaxecabinet{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/bridge) +"aOT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aOU" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge) +"aOV" = (/obj/structure/sign/department/conference_room,/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"aOW" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aOX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aOY" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aOZ" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aPa" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aPb" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/bridge/blueshield) +"aPc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aPd" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24; pixel_y = 32},/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aPe" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aPf" = (/turf/simulated/wall,/area/security/airlock) +"aPg" = (/obj/structure/sign/warning/lethal_turrets,/turf/simulated/wall,/area/security/airlock) +"aPh" = (/obj/machinery/recharger/wallcharger{pixel_x = -24},/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/device/radio{pixel_x = -4},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aPi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aPj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aPk" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aPl" = (/obj/structure/table/steel,/obj/item/weapon/clipboard,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/device/binoculars,/obj/machinery/door/window/brigdoor/westleft{name = "Warden's Desk"; req_access = list(3)},/obj/machinery/door/window/brigdoor/eastright,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aPm" = (/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aPn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aPo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aPp" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aPq" = (/obj/structure/table/glass,/obj/item/weapon/deck/cards,/turf/simulated/floor/wood,/area/security/breakroom) +"aPr" = (/obj/structure/table/glass,/turf/simulated/floor/wood,/area/security/breakroom) +"aPs" = (/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor/wood,/area/security/breakroom) +"aPt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/security/breakroom) +"aPu" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donkpockets,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/wood,/area/security/breakroom) +"aPv" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance"; req_access = list(25)},/turf/simulated/floor,/area/crew_quarters/bar) +"aPw" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aPx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aPy" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; pixel_x = 28; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aPz" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aPA" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aPB" = (/obj/machinery/cooker/cereal,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/civilian{c_tag = "Kitchen West"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aPC" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aPD" = (/obj/machinery/cooker/candy,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aPE" = (/obj/machinery/smartfridge/plantvator,/turf/simulated/floor/plating,/area/crew_quarters/kitchen) +"aPF" = (/obj/machinery/door/firedoor/glass/hidden,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aPG" = (/obj/machinery/door/firedoor/glass/hidden,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_ridged,/area/hallway/primary/central_one) +"aPH" = (/turf/simulated/floor/greengrid,/area/hallway/primary/central_one) +"aPI" = (/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/hallway/primary/central_one) +"aPJ" = (/obj/machinery/door/firedoor/glass/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled/steel_ridged,/area/hallway/primary/central_one) +"aPK" = (/obj/machinery/door/firedoor/glass/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aPL" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/flora/ausbushes/sunnybush,/obj/machinery/door/firedoor/glass/hidden,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aPM" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/red,/obj/item/weapon/folder/blue,/obj/item/weapon/pen,/obj/effect/floor_decal/corner/blue{dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge) +"aPN" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donut,/obj/machinery/keycard_auth{pixel_x = -24; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/bridge) +"aPO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aPP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction{name = "Primary Tool Storage"; sortType = "Primary Tool Storage"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aPQ" = (/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command,/obj/structure/table/rack,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command,/obj/item/clothing/shoes/boots/winter/climbing,/obj/item/clothing/shoes/boots/winter/climbing,/obj/item/device/gps/command,/turf/simulated/floor/tiled/dark,/area/bridge) +"aPR" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/bridge) +"aPS" = (/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aPT" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Command Conf Room"},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aPU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aPV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aPW" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"aPX" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aPY" = (/obj/machinery/door/airlock/glass_command{id_tag = "sbridgedoor"; name = "Command Department"; req_access = list(19)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aPZ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction/yjunction,/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aQa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aQb" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aQc" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/effect/floor_decal/corner/blue/full{dir = 4},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"aQd" = (/obj/effect/floor_decal/rust/mono_rusted2,/turf/simulated/wall,/area/borealis2/outdoors/exterior/explore1) +"aQe" = (/obj/effect/floor_decal/rust/mono_rusted3,/turf/simulated/wall,/area/borealis2/outdoors/exterior/explore1) +"aQf" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aQg" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/security/airlock) +"aQh" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/security/airlock) +"aQi" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/security/airlock) +"aQj" = (/obj/machinery/power/thermoregulator/cryogaia{pixel_y = 30},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/security/airlock) +"aQk" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/rack/shelf,/obj/item/weapon/shovel,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-4"},/obj/item/weapon/ice_pick,/turf/simulated/floor/tiled,/area/security/airlock) +"aQl" = (/obj/machinery/turretid/lethal{pixel_y = 32; req_access = list(1)},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel,/area/security/airlock) +"aQm" = (/obj/machinery/light{dir = 8},/obj/structure/table/steel,/obj/machinery/photocopier/faxmachine,/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aQn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aQo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) +"aQp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Warden's Office"; req_access = list(3)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aQq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aQr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aQs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/security{c_tag = "Prison Disposal Processing"; dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aQt" = (/obj/machinery/newscaster/security_unit,/turf/simulated/wall/r_wall,/area/security/breakroom) +"aQu" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"aQv" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"aQw" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"aQx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/security/breakroom) +"aQy" = (/obj/structure/table/steel,/obj/machinery/microwave,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 26; pixel_y = 0},/turf/simulated/floor/wood,/area/security/breakroom) +"aQz" = (/obj/structure/table/woodentable,/obj/machinery/reagentgrinder,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/packageWrap,/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = -22},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aQA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aQB" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/beanbags,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/obj/item/weapon/paper{info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; name = "Shotgun permit"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aQC" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aQD" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aQE" = (/obj/machinery/vending/dinnerware,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aQF" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aQG" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/landmark/start{name = "Chef"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aQH" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aQI" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aQJ" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aQK" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/standard,/obj/item/weapon/material/kitchen/rollingpin,/obj/item/weapon/material/knife/butch,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aQL" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/hallway/primary/central_one) +"aQM" = (/obj/item/weapon/paper/shieldgen,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/hallway/primary/central_one) +"aQN" = (/obj/machinery/computer/station_alert/all{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/blue/full,/turf/simulated/floor/tiled/dark,/area/bridge) +"aQO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 8},/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/dark,/area/bridge) +"aQP" = (/obj/machinery/light{dir = 1},/obj/machinery/button/remote/blast_door{id = "bridge blast"; name = "Bridge Blastdoors"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aQQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aQR" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/command{c_tag = "Bridge Aft"; dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge) +"aQS" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge) +"aQT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) +"aQU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) +"aQV" = (/obj/machinery/door/airlock/command{name = "Conference Room"; req_access = list(19)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/bridge) +"aQW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aQX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aQY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aQZ" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start{name = "Command Secretary"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"aRa" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/security_space_law,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"aRb" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/red,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"aRc" = (/obj/structure/bed/chair/comfy/black{dir = 8},/obj/effect/landmark/start{name = "Command Secretary"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"aRd" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aRe" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(19)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/bridge/blueshield) +"aRf" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(19)},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/bridge) +"aRg" = (/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aRh" = (/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aRi" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aRj" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aRk" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "Security_exit_exterior"; locked = 1},/obj/machinery/access_button{master_tag = "Security_exit_control"; pixel_x = -6; pixel_y = -25; req_one_access = list(1)},/turf/simulated/floor/plating/snow/plating,/area/security/airlock) +"aRl" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/security/airlock) +"aRm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/security/airlock) +"aRn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/security/airlock) +"aRo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_external/public{frequency = 1379; id_tag = "Security_exit_interior"; locked = 1},/obj/machinery/access_button/airlock_interior{master_tag = "Security_exit_control"; pixel_x = -6; pixel_y = -25; req_one_access = list(1)},/turf/simulated/floor/tiled,/area/security/brig) +"aRp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aRq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aRr" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = -26; pixel_y = 22},/obj/machinery/computer/prisoner{dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aRs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aRt" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) +"aRu" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/steel,/area/security/warden) +"aRv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aRw" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aRx" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aRy" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/security/breakroom) +"aRz" = (/obj/machinery/door/airlock/glass_security{name = "Break Room"; req_access = list(1)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/security/breakroom) +"aRA" = (/obj/machinery/door/airlock{name = "Bar Backroom"; req_access = list(25)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aRB" = (/obj/machinery/vending/boozeomat,/turf/simulated/wall,/area/crew_quarters/bar) +"aRC" = (/obj/machinery/smartfridge/drinks,/turf/simulated/wall,/area/crew_quarters/bar) +"aRD" = (/obj/structure/table/marble,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.1; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"aRE" = (/obj/structure/table/marble,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.1; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"aRF" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/button/holosign{id = "barsign"; pixel_x = -25},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aRG" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/crew_quarters/bar) +"aRH" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access = list(28)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"aRI" = (/obj/machinery/holosign/bar{id = "barsign"},/turf/simulated/wall,/area/crew_quarters/bar) +"aRJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/hallway/primary/central_one) +"aRK" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aRL" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/cable/green,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge) +"aRM" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge) +"aRN" = (/obj/machinery/computer/communications{dir = 1},/obj/effect/floor_decal/corner/blue/full,/turf/simulated/floor/tiled/dark,/area/bridge) +"aRO" = (/obj/effect/floor_decal/corner/blue{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) +"aRP" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled/dark,/area/bridge) +"aRQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aRR" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Command Secretary"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aRS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge) +"aRT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge) +"aRU" = (/obj/machinery/door/airlock/command{name = "Conference Room"; req_access = list(19)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/wood,/area/bridge) +"aRV" = (/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aRW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aRX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aRY" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"aRZ" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"aSa" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"aSb" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"aSc" = (/obj/machinery/button/windowtint{id = "comconference"; pixel_x = 32},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aSd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aSe" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(19)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/bridge) +"aSf" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aSg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/structure/disposalpipe/junction,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aSh" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/medbay) +"aSi" = (/obj/structure/disposalpipe/down,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/bridge) +"aSj" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall,/area/maintenance/bridge) +"aSk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/maintenance/bridge) +"aSl" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/maintenance/bridge) +"aSm" = (/obj/effect/floor_decal/snow/floor/edges,/obj/structure/railing{dir = 2; flags = null},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aSn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/techmaint,/area/security/airlock) +"aSo" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "Security_exit_control"; name = "Security Exit Controller"; pixel_x = -5; pixel_y = -25; tag_exterior_door = "Security_exit_exterior"; tag_interior_door = "Security_exit_interior"},/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/security/airlock) +"aSp" = (/obj/machinery/camera/network/research_outpost{c_tag = "OPR - Expedition Airlock"; dir = 1},/obj/machinery/space_heater,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/security/airlock) +"aSq" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/security/brig) +"aSr" = (/turf/simulated/floor/tiled/steel,/area/security/brig) +"aSs" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/noticeboard/airlock{pixel_y = -30},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel,/area/security/brig) +"aSt" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aSu" = (/obj/machinery/computer/secure_data{dir = 4},/obj/machinery/camera/network/security{c_tag = "Security Firing Range"; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/item/device/radio/intercom/department/security{dir = 8; icon_state = "secintercom"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aSv" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Warden"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aSw" = (/obj/structure/table/steel,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/stamp/denied{pixel_x = 5},/obj/item/weapon/stamp/ward,/turf/simulated/floor/tiled/dark,/area/security/warden) +"aSx" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) +"aSy" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/steel,/area/security/warden) +"aSz" = (/obj/structure/table/rack,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 2; health = 1e+006},/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aSA" = (/obj/structure/table/rack,/obj/item/weapon/storage/box/seccarts{pixel_x = 3; pixel_y = 2},/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 2; health = 1e+006},/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aSB" = (/obj/structure/closet/secure_closet/detective,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/device/uv_light,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/obj/item/clothing/under/det/waistcoat,/obj/item/weapon/gun/energy/stunrevolver,/turf/simulated/floor/lino,/area/security/detectives_office) +"aSC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"aSD" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aSE" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aSF" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/security/briefing_room) +"aSG" = (/obj/machinery/photocopier,/turf/simulated/floor/tiled/steel,/area/security/briefing_room) +"aSH" = (/turf/simulated/floor/carpet,/area/security/briefing_room) +"aSI" = (/obj/effect/landmark/start{name = "Head of Security"},/obj/structure/bed/chair/comfy/black{dir = 2},/turf/simulated/floor/carpet,/area/security/briefing_room) +"aSJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/security/briefing_room) +"aSK" = (/turf/simulated/floor/tiled,/area/security/briefing_room) +"aSL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Door"; opacity = 0},/obj/machinery/door/airlock/maintenance/sec{name = "Security Maintenance"; req_access = list(1,12)},/turf/simulated/floor,/area/security/briefing_room) +"aSM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aSN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aSO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aSP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aSQ" = (/obj/machinery/chemical_dispenser/bar_alc/full{pixel_y = 32},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aSR" = (/obj/machinery/vending/cola,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner/red{dir = 5},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/security/main) +"aSS" = (/obj/machinery/media/jukebox,/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aST" = (/obj/item/weapon/stool/padded{pixel_y = 5},/obj/effect/floor_decal/corner/beige{dir = 10},/obj/effect/floor_decal/corner/beige{dir = 9},/obj/effect/floor_decal/spline/plain{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"aSU" = (/obj/effect/floor_decal/corner/beige{dir = 10},/obj/effect/floor_decal/spline/plain,/obj/item/weapon/stool/padded{pixel_y = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"aSV" = (/obj/effect/floor_decal/corner/beige{dir = 6},/obj/effect/floor_decal/corner/beige{dir = 10},/obj/effect/floor_decal/spline/plain{dir = 6},/obj/item/weapon/stool/padded{pixel_y = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"aSW" = (/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 6},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -2; pixel_y = 4},/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aSX" = (/obj/structure/device/piano{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aSY" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aSZ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aTa" = (/obj/effect/floor_decal/spline/fancy/wood{icon_state = "spline_fancy"; dir = 10},/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aTb" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aTc" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/ids,/obj/effect/floor_decal/corner/blue/full,/turf/simulated/floor/tiled/dark,/area/bridge) +"aTd" = (/obj/machinery/computer/card{dir = 1},/obj/effect/floor_decal/corner/blue/full{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) +"aTe" = (/obj/machinery/computer/crew{dir = 1},/obj/effect/floor_decal/corner/white/full,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge) +"aTf" = (/obj/machinery/computer/med_data{dir = 1},/obj/effect/floor_decal/corner/white/full{icon_state = "corner_white_full"; dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) +"aTg" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/bridge) +"aTh" = (/obj/machinery/door/airlock/glass_command{id_tag = "sbridgedoor"; name = "Bridge"; req_access = list(19)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge) +"aTi" = (/obj/structure/flora/pottedplant{icon_state = "plant-09"; name = "Steve"; pixel_y = 15},/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aTj" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aTk" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"aTl" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"aTm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aTn" = (/turf/simulated/wall/r_wall,/area/teleporter) +"aTo" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aTp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aTq" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aTr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aTs" = (/obj/structure/cable{icon_state = "1-2"},/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/maintenance/security) +"aTt" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/bridge) +"aTu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/bridge) +"aTv" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/security_starboard) +"aTw" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/maintenance/bridge) +"aTx" = (/obj/effect/floor_decal/rust/mono_rusted1,/turf/simulated/wall,/area/borealis2/outdoors/exterior/explore1) +"aTy" = (/obj/structure/lattice,/obj/structure/grille,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aTz" = (/obj/machinery/door/airlock/maintenance/sec{name = "Security Maintenance"; req_one_access = list(1,18)},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel,/area/security/airlock) +"aTA" = (/turf/simulated/wall/r_wall,/area/security/security_aid_station) +"aTB" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Cells"; req_access = list(1)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/brig) +"aTC" = (/obj/structure/table/steel,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/brigdoor/eastleft{dir = 2; name = "Warden's Desk"; req_access = list(1)},/obj/machinery/door/window/brigdoor/westleft{dir = 1; name = "Warden's Desk"; req_access = list(3)},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Doors"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/security/warden) +"aTD" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/steel,/area/security/warden) +"aTE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Warden's Office"; req_access = list(3)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) +"aTF" = (/turf/simulated/wall,/area/security/warden) +"aTG" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/steel,/area/security/security_equiptment_storage) +"aTH" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel,/area/security/security_equiptment_storage) +"aTI" = (/obj/machinery/door/airlock/glass_security{id_tag = null; layer = 2.8; name = "Security"; req_access = list(1); req_one_access = list(1)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/red,/area/security/security_equiptment_storage) +"aTJ" = (/turf/simulated/wall,/area/security/security_equiptment_storage) +"aTK" = (/turf/simulated/wall/r_wall,/area/security/briefing_room) +"aTL" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/machinery/photocopier/faxmachine,/turf/simulated/floor/tiled,/area/security/briefing_room) +"aTM" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aTN" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aTO" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aTP" = (/obj/structure/closet/secure_closet/detective,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/device/uv_light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom/department/security{dir = 8; icon_state = "secintercom"; pixel_x = -24; pixel_y = 0},/obj/item/clothing/under/det/black,/obj/item/weapon/gun/projectile/colt/detective,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/turf/simulated/floor/lino,/area/security/detectives_office) +"aTQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aTR" = (/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aTS" = (/obj/machinery/door/window/southleft{dir = 4; name = "Bar"; req_access = list(25)},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aTT" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aTU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aTV" = (/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aTW" = (/obj/structure/sign/department/shield,/turf/simulated/wall,/area/hallway/primary/central_one) +"aTX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/central_one) +"aTY" = (/obj/effect/floor_decal/spline/fancy/wood{icon_state = "spline_fancy"; dir = 10},/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aTZ" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aUa" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge) +"aUb" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/cable/green,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge) +"aUc" = (/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/blue{dir = 9},/turf/simulated/floor/tiled,/area/bridge) +"aUd" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge) +"aUe" = (/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled,/area/bridge) +"aUf" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized{id = "comconference"},/obj/structure/window/reinforced/polarized{dir = 1; id = "comconference"},/obj/structure/window/reinforced/polarized{dir = 8; id = "comconference"},/turf/simulated/floor/plating,/area/bridge/meeting_room) +"aUg" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized{id = "comconference"},/obj/structure/window/reinforced/polarized{dir = 1; id = "comconference"},/turf/simulated/floor/plating,/area/bridge/meeting_room) +"aUh" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized{id = "comconference"},/obj/structure/window/reinforced/polarized{dir = 1; id = "comconference"},/obj/structure/window/reinforced/polarized{dir = 4; id = "comconference"},/turf/simulated/floor/plating,/area/bridge/meeting_room) +"aUi" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(19)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor,/area/maintenance/bridge) +"aUj" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/teleporter) +"aUk" = (/obj/machinery/door/airlock/maintenance/cargo{req_access = list(50); req_one_access = list(48)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/quartermaster/disposals) +"aUl" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/disposals) +"aUm" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/window/reinforced/tinted{dir = 1},/obj/effect/floor_decal/rust,/obj/structure/disposaloutlet,/turf/simulated/floor,/area/quartermaster/disposals) +"aUn" = (/turf/simulated/wall,/area/quartermaster/disposals) +"aUo" = (/obj/effect/floor_decal/rust/color_rustedfull,/obj/machinery/door/airlock/glass_external/public,/turf/simulated/floor/tiled/old_tile/gray,/area/borealis2/outdoors/exterior/explore1) +"aUp" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/down,/obj/structure/cable/green{icon_state = "32-2"},/turf/simulated/open,/area/security/airlock) +"aUq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/security/airlock) +"aUr" = (/obj/structure/table/standard,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/random/firstaid,/turf/simulated/floor/tiled/white,/area/security/security_aid_station) +"aUs" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 14; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/turf/simulated/floor/tiled/white,/area/security/security_aid_station) +"aUt" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/item/stack/medical/bruise_pack{pixel_x = -4; pixel_y = 3},/obj/item/stack/medical/bruise_pack{pixel_x = 10},/obj/item/stack/medical/ointment{pixel_y = 10},/obj/machinery/alarm{pixel_y = 22},/obj/random/medical/lite,/turf/simulated/floor/tiled/white,/area/security/security_aid_station) +"aUu" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/security/security_aid_station) +"aUv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel,/area/security/brig) +"aUw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aUx" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aUy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aUz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/steel,/area/security/brig) +"aUA" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled,/area/security/brig) +"aUB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aUC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aUD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aUE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/steel,/area/security/brig) +"aUF" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aUG" = (/obj/structure/flora/pottedplant,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/corner/red/full{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/security/brig) +"aUH" = (/turf/simulated/wall,/area/security/briefing_room) +"aUI" = (/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/security_space_law,/obj/structure/table/glass,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aUJ" = (/obj/item/weapon/folder/red,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/security/briefing_room) +"aUK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"aUL" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aUM" = (/obj/item/weapon/folder/red,/obj/structure/table/glass,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aUN" = (/obj/machinery/status_display,/turf/simulated/wall,/area/crew_quarters/bar) +"aUO" = (/obj/machinery/door/blast/shutters{dir = 2; id = "bar"; layer = 3.1; name = "Bar Shutters"},/obj/structure/table/marble,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aUP" = (/obj/machinery/door/blast/shutters{dir = 2; id = "bar"; layer = 3.1; name = "Bar Shutters"},/obj/machinery/cash_register/civilian{dir = 1},/obj/structure/table/marble,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aUQ" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aUR" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aUS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aUT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aUU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aUV" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aUW" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aUX" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aUY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aUZ" = (/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aVa" = (/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aVb" = (/obj/effect/floor_decal/spline/fancy/wood{icon_state = "spline_fancy"; dir = 10},/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aVc" = (/obj/effect/floor_decal/spline/fancy/wood,/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aVd" = (/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aVe" = (/obj/effect/floor_decal/spline/fancy/wood,/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aVf" = (/obj/effect/floor_decal/spline/fancy/wood,/obj/item/weapon/flag,/turf/simulated/floor/grass,/area/hallway/primary/central_one) +"aVg" = (/obj/structure/sign/department/bridge,/turf/simulated/wall/r_wall,/area/bridge) +"aVh" = (/obj/machinery/door/airlock/glass_command{id_tag = "sbridgedoor"; name = "Command Department"; req_access = list(19)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge) +"aVi" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/corner/blue/full{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aVj" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/blue{dir = 5},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aVk" = (/obj/machinery/vending/cigarette{name = "Cigarette machine"; prices = list(); products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2)},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aVl" = (/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aVm" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aVn" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aVo" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aVp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aVq" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/teleporter) +"aVr" = (/obj/machinery/camera/network/command{c_tag = "COM - Bridge Starboard"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/teleporter) +"aVs" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/teleporter) +"aVt" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/teleporter) +"aVu" = (/obj/structure/table/standard,/obj/item/weapon/hand_tele,/turf/simulated/floor/tiled/dark,/area/teleporter) +"aVv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/disposals) +"aVw" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/disposals) +"aVx" = (/obj/machinery/conveyor{dir = 3; id = "packageSort1"},/obj/structure/plasticflaps/mining,/turf/simulated/floor{dir = 1},/area/quartermaster/disposals) +"aVy" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/surround,/obj/structure/railing{dir = 2; flags = null},/obj/structure/railing{dir = 8},/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aVz" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"aVA" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/security/airlock) +"aVB" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/security/airlock) +"aVC" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/security/security_aid_station) +"aVD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/security/security_aid_station) +"aVE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/security/security_aid_station) +"aVF" = (/obj/machinery/door/airlock/glass_security{name = "Security Medical"; req_access = newlist()},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/security_aid_station) +"aVG" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aVH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aVI" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner/red{dir = 8},/turf/simulated/floor/tiled,/area/security/brig) +"aVJ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/red,/turf/simulated/floor/tiled/steel,/area/security/brig) +"aVK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/security{c_tag = "Security Brig Port"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/red{dir = 10},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/security/brig) +"aVL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/brig) +"aVM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/brig) +"aVN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/red{dir = 8},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aVO" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel,/area/security/brig) +"aVP" = (/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security,/obj/effect/floor_decal/corner/red{dir = 6},/obj/item/clothing/shoes/boots/winter/security,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security,/obj/item/clothing/shoes/boots/winter/security,/obj/item/device/gps/security,/turf/simulated/floor/tiled/steel,/area/security/brig) +"aVQ" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/security/briefing_room) +"aVR" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aVS" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aVT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"aVU" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/camera/network/security{c_tag = "Security Briefing"; dir = 8},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aVV" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aVW" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aVX" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aVY" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aVZ" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aWa" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aWb" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aWc" = (/obj/structure/bed/chair/wood/wings,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aWd" = (/obj/structure/bed/chair/wood/wings,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aWe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aWf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aWg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aWh" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Doors"; opacity = 0},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monofloor{dir = 4},/area/security/lobby) +"aWi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWk" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 4},/obj/machinery/camera/network/command{c_tag = "Bridge Aft Entrance"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWn" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWo" = (/obj/effect/floor_decal/corner/blue{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWp" = (/obj/machinery/door/firedoor/glass/hidden,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWq" = (/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWu" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aWv" = (/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access = list(17)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/teleporter) +"aWw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/teleporter) +"aWx" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/teleporter) +"aWy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/teleporter) +"aWz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/teleporter) +"aWA" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/teleporter) +"aWB" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/teleporter) +"aWC" = (/obj/machinery/computer/teleporter{dir = 8},/turf/simulated/floor/tiled/dark,/area/teleporter) +"aWD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/tiled,/area/quartermaster/disposals) +"aWE" = (/obj/item/weapon/stool,/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/disposals) +"aWF" = (/obj/machinery/conveyor{dir = 2; id = "packageSort1"},/turf/simulated/floor{dir = 1},/area/quartermaster/disposals) +"aWG" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/disposals) +"aWH" = (/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 10},/turf/simulated/floor/plating,/area/borealis2/outdoors/exterior/explore1) +"aWI" = (/turf/simulated/wall/r_wall,/area/security/security_cell_hallway) +"aWJ" = (/obj/structure/bed/roller,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/white,/area/security/security_aid_station) +"aWK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/security/security_aid_station) +"aWL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/camera/network/security{c_tag = "Security Medical Station"; dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/white,/area/security/security_aid_station) +"aWM" = (/turf/simulated/wall,/area/security/security_aid_station) +"aWN" = (/turf/simulated/wall,/area/security/security_cell_hallway) +"aWO" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Cells"; req_access = list(1)},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"aWP" = (/obj/machinery/requests_console/preset/security,/turf/simulated/wall,/area/security/security_cell_hallway) +"aWQ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aWR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aWS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aWT" = (/obj/structure/table/rack/shelf,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security,/obj/effect/floor_decal/corner/red{dir = 6},/obj/item/clothing/shoes/boots/winter/security,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security,/obj/item/clothing/shoes/boots/winter/security,/obj/item/device/gps/security,/turf/simulated/floor/tiled,/area/security/brig) +"aWU" = (/obj/item/weapon/folder/red,/obj/item/clothing/glasses/hud/security,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/security/briefing_room) +"aWV" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aWW" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"aWX" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/security/briefing_room) +"aWY" = (/obj/item/weapon/folder/red,/obj/structure/table/glass,/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/briefing_room) +"aWZ" = (/obj/machinery/door/airlock/maintenance{req_access = list(12)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/crew_quarters/bar) +"aXa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aXb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aXc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aXd" = (/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aXe" = (/obj/structure/table/gamblingtable,/obj/item/weapon/dice,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aXf" = (/obj/structure/table/gamblingtable,/obj/item/weapon/deck/cards,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aXg" = (/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aXh" = (/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aXi" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_ridged,/area/hallway/primary/central_one) +"aXj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/hallway/primary/central_one) +"aXn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXp" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/hallway/primary/central_one) +"aXq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction/yjunction{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXu" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/turf/simulated/floor,/area/engineering/engine_room) +"aXv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXy" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aXA" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled/steel_ridged,/area/hallway/primary/central_one) +"aXB" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/teleporter) +"aXC" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/teleporter) +"aXD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/teleporter) +"aXE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/teleporter) +"aXF" = (/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/teleporter) +"aXG" = (/obj/machinery/teleport/station,/turf/simulated/floor/tiled/dark,/area/teleporter) +"aXH" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/disposals) +"aXI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/disposals) +"aXJ" = (/obj/structure/grille,/obj/structure/cable/green,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "Cell 1 Blastdoor"; name = "Security Blast Door"; opacity = 0},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/plating,/area/security/security_cell_hallway) +"aXK" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/obj/machinery/camera/network/prison{c_tag = "Brig Cell 1"; dir = 2},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"aXL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"aXM" = (/obj/effect/floor_decal/corner/red/full{dir = 8},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aXN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aXO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aXP" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aXQ" = (/obj/structure/table/standard,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aXR" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/effect/floor_decal/corner/red{dir = 5},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aXS" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aXT" = (/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aXU" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aXV" = (/turf/simulated/open,/area/security/security_cell_hallway) +"aXW" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/security/security_cell_hallway) +"aXX" = (/obj/structure/table/glass,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/toy/xmas_cracker,/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aXY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/security/brig) +"aXZ" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel,/area/security/brig) +"aYa" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/item/device/radio/intercom/department/security{dir = 4; icon_state = "secintercom"; pixel_x = 24; pixel_y = 0},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aYb" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aYc" = (/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aYd" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aYe" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aYf" = (/obj/structure/coatrack,/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aYg" = (/obj/structure/table/gamblingtable,/obj/item/weapon/deck/cah/black,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aYh" = (/obj/structure/table/gamblingtable,/obj/item/weapon/deck/cah,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aYi" = (/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aYj" = (/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/structure/table/woodentable,/obj/machinery/light/small,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aYk" = (/obj/structure/sign/department/bar{pixel_x = -32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aYl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aYm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aYn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aYo" = (/turf/simulated/wall,/area/storage/primary) +"aYp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/storage/primary) +"aYq" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/storage/primary) +"aYr" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/sign/department/ass,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/storage/primary) +"aYs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/storage/primary) +"aYt" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/storage/art) +"aYu" = (/turf/simulated/wall,/area/storage/art) +"aYv" = (/obj/machinery/door/airlock/glass{name = "Art Storage"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/storage/art) +"aYw" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/storage/art) +"aYx" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/briefcase/inflatable,/obj/random/maintenance/cargo,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aYy" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/crew_quarters/meeting) +"aYz" = (/turf/simulated/wall,/area/hallway/primary/starboard) +"aYA" = (/turf/simulated/wall,/area/storage/emergency_storage/emergency) +"aYB" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/machinery/light,/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"aYC" = (/obj/structure/closet/crate,/obj/item/weapon/tool/crowbar,/turf/simulated/floor/tiled,/area/teleporter) +"aYD" = (/obj/structure/closet/crate,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/teleporter) +"aYE" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/teleporter) +"aYF" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/teleporter) +"aYG" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled,/area/teleporter) +"aYH" = (/obj/machinery/teleport/hub,/turf/simulated/floor/tiled/dark,/area/teleporter) +"aYI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/cargo{c_tag = "Trash Chute"; dir = 4; name = "security camera"},/turf/simulated/floor/tiled,/area/quartermaster/disposals) +"aYJ" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/disposals) +"aYK" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/color_rustedfull,/obj/machinery/door/airlock/glass_external/public,/turf/simulated/floor/tiled/old_tile/gray,/area/borealis2/outdoors/exterior/explore1) +"aYL" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/overlay/snow/floor,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aYM" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable/green,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "Cell 1 Blastdoor"; name = "Security Blast Door"; opacity = 0},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/security/security_cell_hallway) +"aYN" = (/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28; pixel_y = 0},/obj/structure/bed/padded,/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"aYO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"aYP" = (/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aYQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aYR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aYS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aYT" = (/obj/structure/railing,/turf/simulated/open,/area/security/security_cell_hallway) +"aYU" = (/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/brig) +"aYV" = (/obj/structure/extinguisher_cabinet{pixel_x = 25; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled,/area/security/brig) +"aYW" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/security/briefing_room) +"aYX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Break Room"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/security/briefing_room) +"aYY" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aYZ" = (/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 6},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -2; pixel_y = 4},/obj/item/weapon/flame/candle,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"aZa" = (/turf/simulated/wall,/area/crew_quarters/barrestroom) +"aZb" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"aZc" = (/obj/structure/sign/double/barsign,/turf/simulated/wall,/area/crew_quarters/bar) +"aZd" = (/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled/white,/area/security/forensics) +"aZe" = (/obj/effect/floor_decal/corner/red{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aZf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aZg" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet,/area/hallway/primary/central_one) +"aZh" = (/obj/structure/table/glass,/turf/simulated/floor/carpet,/area/hallway/primary/central_one) +"aZi" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet,/area/hallway/primary/central_one) +"aZj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"aZk" = (/obj/machinery/requests_console{department = "Tool Storage"; departmentType = 0; pixel_y = 30},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/storage/primary) +"aZl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/storage/primary) +"aZm" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/primary) +"aZn" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Primary Tool Storage"; dir = 2},/turf/simulated/floor/tiled,/area/storage/primary) +"aZo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/storage/primary) +"aZp" = (/obj/machinery/vending/assist,/obj/machinery/status_display{layer = 4; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/primary) +"aZq" = (/obj/structure/table/standard,/obj/item/device/camera_film{pixel_x = -2; pixel_y = -2},/obj/item/device/camera_film{pixel_x = 2; pixel_y = 2},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/storage/art) +"aZr" = (/obj/structure/table/standard,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/turf/simulated/floor/tiled,/area/storage/art) +"aZs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/storage/art) +"aZt" = (/obj/structure/table/standard,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/simulated/floor/tiled,/area/storage/art) +"aZu" = (/obj/structure/table/standard,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/machinery/light_switch{dir = 8; pixel_x = 28},/turf/simulated/floor/tiled,/area/storage/art) +"aZv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"; req_one_access = list()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/storage/emergency_storage/emergency) +"aZw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"aZx" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "preop1"; name = "Privacy Shutters"; opacity = 0},/obj/effect/floor_decal/corner/pink{dir = 1},/obj/effect/floor_decal/corner/paleblue{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aZy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"aZz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/medbay_aft) +"aZA" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"aZB" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled/dark,/area/teleporter) +"aZC" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/teleporter) +"aZD" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/teleporter) +"aZE" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/tiled/dark,/area/teleporter) +"aZF" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled/dark,/area/teleporter) +"aZG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/disposals) +"aZH" = (/obj/machinery/conveyor{dir = 2; id = "packageSort1"},/obj/structure/plasticflaps/mining,/turf/simulated/floor{dir = 1},/area/quartermaster/disposals) +"aZI" = (/turf/simulated/wall,/area/quartermaster/warehouse) +"aZJ" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aZK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aZL" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aZM" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aZN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aZO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"aZP" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aZQ" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"aZR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"aZS" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"aZT" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Cell 1 Blastdoor"; name = "Security Blast Door"; opacity = 0},/obj/machinery/door/window/brigdoor/southleft{dir = 8; id = "Cell 1"; name = "Cell 1"; req_access = list(2)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"aZU" = (/obj/machinery/button/remote/blast_door{id = "Cell 1 Blastdoor"; name = "Cell 1 Door"; pixel_x = -32; pixel_y = 28; req_access = list(2)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door_timer/cell_3{id = "Cell 1"; name = "Cell 1"; pixel_x = 0; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"aZV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aZW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aZX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"aZY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/red,/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"aZZ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/red{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"baa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"bab" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"bac" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"bad" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_cell_hallway) +"bae" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Cells"; req_access = list(1)},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"baf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/brig) +"bag" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/brig) +"bah" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/brig) +"bai" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/brig) +"baj" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/brig) +"bak" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/brig) +"bal" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/brig) +"bam" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled/steel,/area/security/brig) +"ban" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/brig) +"bao" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/red/full{dir = 1},/turf/simulated/floor/tiled,/area/security/brig) +"bap" = (/turf/simulated/wall/r_wall,/area/security/brig) +"baq" = (/turf/simulated/wall/r_wall,/area/crew_quarters/bar) +"bar" = (/turf/simulated/wall/r_wall,/area/crew_quarters/barrestroom) +"bas" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bat" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 26},/obj/machinery/light,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bau" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bav" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"baw" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bax" = (/turf/simulated/floor/plating,/area/crew_quarters/barrestroom) +"bay" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"baz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"baA" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/effect/floor_decal/corner/red,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"baB" = (/obj/structure/table/glass,/obj/machinery/light,/turf/simulated/floor/carpet,/area/hallway/primary/central_one) +"baC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"baD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"baE" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/primary) +"baF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/storage/primary) +"baG" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/storage/primary) +"baH" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/primary) +"baI" = (/obj/machinery/vending/tool,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/storage/primary) +"baJ" = (/obj/structure/table/standard,/obj/item/device/camera,/obj/item/device/camera{pixel_x = 3; pixel_y = -4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/storage/art) +"baK" = (/turf/simulated/floor/tiled,/area/storage/art) +"baL" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/storage/art) +"baM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/storage/art) +"baN" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/storage/art) +"baO" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine,/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"baP" = (/obj/machinery/door/airlock/glass{name = "Meeting Room"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/meeting) +"baQ" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/ward) +"baR" = (/obj/effect/floor_decal/corner/pink,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"baS" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/corner/brown/full{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"baT" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/box/cups,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/brown/full{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"baU" = (/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access = list(50); req_one_access = list()},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/disposals) +"baV" = (/obj/structure/sign/warning/mail_delivery,/turf/simulated/wall,/area/quartermaster/disposals) +"baW" = (/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/rust,/obj/structure/window/reinforced/tinted,/obj/machinery/disposal/deliveryChute{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/disposals) +"baX" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"baY" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/module/power_control,/obj/item/weapon/cell{maxcharge = 2000},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"baZ" = (/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bba" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 24},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bbb" = (/obj/structure/closet/crate/medical,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bbc" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bbd" = (/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/obj/structure/cable/yellow,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"bbe" = (/turf/simulated/shuttle/wall,/area/shuttle/prison/prison) +"bbf" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/simulated/shuttle/plating,/area/shuttle/prison/prison) +"bbg" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bbh" = (/turf/simulated/wall/r_wall,/area/security/labor) +"bbi" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Labor Camp dock"; req_access = list(1)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/labor) +"bbj" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/security/labor) +"bbk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Cells"; req_access = list(1)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/labor) +"bbl" = (/obj/machinery/button/remote/blast_door{id = "Cell 3 Blastdoor"; name = "Cell 3 Door"; pixel_x = -1; pixel_y = -28; req_access = list(2)},/obj/machinery/door_timer/cell_3{pixel_x = -32},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner/red/full,/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bbm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bbn" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bbo" = (/obj/machinery/door_timer/cell_3{id = "Cell 2"; name = "Cell 2"; pixel_y = -32},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/red{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bbp" = (/obj/machinery/button/remote/blast_door{id = "Cell 2 Blastdoor"; name = "Cell 2 Door"; pixel_x = -1; pixel_y = -28; req_access = list(2)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/camera/network/security{c_tag = "SEC - Cell Hallway"; dir = 1},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bbq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bbr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Cells"; req_access = list(1)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bbs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/security/brig) +"bbt" = (/obj/machinery/status_display{pixel_y = -30},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/security/brig) +"bbu" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/red,/obj/machinery/camera/network/security{c_tag = "Security Brig Starboard"; dir = 1},/turf/simulated/floor/tiled,/area/security/brig) +"bbv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/brig) +"bbw" = (/obj/machinery/light,/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/brig) +"bbx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/red{dir = 8},/turf/simulated/floor/tiled/steel,/area/security/brig) +"bby" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled/steel,/area/security/brig) +"bbz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Door"; opacity = 0},/obj/machinery/door/airlock/maintenance/sec{name = "Security Maintenance"; req_access = list(1,12)},/turf/simulated/floor,/area/security/brig) +"bbA" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/security) +"bbB" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Door"; opacity = 0},/obj/machinery/door/airlock/maintenance/sec{name = "Security Maintenance"; req_access = list(1,12)},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/security/security_bathroom) +"bbC" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bbD" = (/obj/structure/sink{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bbE" = (/obj/structure/sink{pixel_y = 32},/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bbF" = (/obj/structure/curtain/open/shower/security,/obj/machinery/shower,/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bbG" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bbH" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bbI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bbJ" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bbK" = (/turf/simulated/wall,/area/security/lobby) +"bbL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Primary Hallway"},/obj/machinery/door/firedoor/multi_tile{dir = 2},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bbM" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Primary Hallway"},/obj/machinery/door/firedoor/multi_tile{dir = 2},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bbN" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Doors"; opacity = 0},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/security/lobby) +"bbO" = (/turf/simulated/wall,/area/hallway/primary/aft) +"bbP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bbQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bbR" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/storage/primary) +"bbS" = (/turf/simulated/floor/tiled,/area/storage/primary) +"bbT" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/cell_charger,/turf/simulated/floor/tiled,/area/storage/primary) +"bbU" = (/obj/machinery/lapvend,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/storage/primary) +"bbV" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; name = "Medbay"; sortType = "Medbay"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bbW" = (/obj/structure/table/standard,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box{pixel_x = 3; pixel_y = 3},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/item/weapon/tape_roll{pixel_x = 4; pixel_y = 4},/obj/item/weapon/tape_roll,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) +"bbX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/storage/art) +"bbY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) +"bbZ" = (/obj/structure/table/standard,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/device/taperecorder,/obj/item/device/taperecorder,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/art) +"bca" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bcb" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/wall/r_wall,/area/engineering/engine_room) +"bcc" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/turf/simulated/wall/r_lead,/area/borealis2/outdoors/grounds) +"bcd" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "preop2"; name = "Privacy Shutters"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bce" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bcf" = (/obj/structure/table/bench/padded,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bcg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bch" = (/obj/structure/table/bench/padded,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/floor_decal/corner/brown{dir = 5},/obj/effect/decal/cleanable/ash,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bci" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bcj" = (/obj/structure/flora/pottedplant/largebush,/obj/effect/floor_decal/corner/brown/full{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bck" = (/obj/structure/sign/department/mail,/turf/simulated/wall,/area/quartermaster/delivery) +"bcl" = (/obj/structure/filingcabinet/filingcabinet,/obj/effect/floor_decal/corner/brown/full{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bcm" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/camera/network/cargo{c_tag = "Delivery office"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bcn" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 0; pixel_y = 30},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bco" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bcp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bcq" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/structure/disposalpipe/sortjunction/wildcard,/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bcr" = (/turf/simulated/wall,/area/quartermaster/delivery) +"bcs" = (/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Warehouse"; dir = 4; name = "security camera"},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bct" = (/obj/effect/landmark{name = "blobstart"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bcu" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bcv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bcw" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bcx" = (/turf/simulated/shuttle/floor/red,/area/shuttle/prison/prison) +"bcy" = (/turf/simulated/wall,/area/security/labor) +"bcz" = (/obj/structure/table/rack,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/brigdoor/southleft{req_one_access = list(1)},/turf/simulated/floor/tiled/dark,/area/security/labor) +"bcA" = (/obj/structure/table/rack,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/door/window/brigdoor/southright{req_one_access = list(1)},/turf/simulated/floor/tiled/dark,/area/security/labor) +"bcB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/labor) +"bcC" = (/turf/simulated/floor/tiled/dark,/area/security/labor) +"bcD" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/turf/simulated/floor/tiled/dark,/area/security/labor) +"bcE" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable/green,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "Cell 3 Blastdoor"; name = "Security Blast Door"; opacity = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/plating,/area/security/security_cell_hallway) +"bcF" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Cell 3 Blastdoor"; name = "Security Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/window/brigdoor/southleft{id = "Cell 3"; name = "Cell 3"; req_access = list(2)},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bcG" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable/green,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "Cell 2 Blastdoor"; name = "Security Blast Door"; opacity = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/plating,/area/security/security_cell_hallway) +"bcH" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Cell 2 Blastdoor"; name = "Security Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/window/brigdoor/southleft{id = "Cell 2"; name = "Cell 2"; req_access = list(2)},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bcI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Interrogation Observation"; req_access = list(63)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/interrogation) +"bcJ" = (/turf/simulated/wall,/area/security/interrogation) +"bcK" = (/obj/structure/sign/department/interrogation,/turf/simulated/wall,/area/security/interrogation) +"bcL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Interrogation"; req_access = list(63)},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bcM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bcN" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/hallway) +"bcO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled,/area/security/hallway) +"bcP" = (/turf/simulated/wall/r_wall,/area/security/hallway) +"bcQ" = (/turf/simulated/wall,/area/security/security_bathroom) +"bcR" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bcS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bcT" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bcU" = (/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bcV" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bcW" = (/obj/machinery/light/small{dir = 8},/obj/structure/toilet{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bcX" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bcY" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) +"bcZ" = (/turf/simulated/wall/r_wall,/area/security/lobby) +"bda" = (/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled,/area/security/lobby) +"bdb" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/security/lobby) +"bdc" = (/obj/structure/table/standard,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/security_space_law,/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled,/area/security/lobby) +"bdd" = (/obj/structure/closet,/obj/random/maintenance/security,/obj/random/contraband,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/hallway/primary/aft) +"bde" = (/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bdf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bdg" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled,/area/storage/primary) +"bdh" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/storage/primary) +"bdi" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -28},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled,/area/storage/primary) +"bdj" = (/obj/machinery/door/airlock/glass{name = "Art Storage"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/storage/art) +"bdk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bdl" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bdm" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bdn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bdo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bdp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bdq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bdr" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(31); req_one_access = list()},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/delivery) +"bds" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bdt" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bdu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bdv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bdw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bdx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bdy" = (/obj/machinery/door/blast/shutters{dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/delivery) +"bdz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bdA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bdB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bdC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bdD" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bdE" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/shuttle/floor/red,/area/shuttle/prison/prison) +"bdF" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/fans/tiny{name = "Thermal Regulator Vent"},/turf/simulated/shuttle/plating,/area/shuttle/prison/prison) +"bdG" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{locked = 1},/turf/simulated/floor/plating/snow/plating,/area/security/labor) +"bdH" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/security/labor) +"bdI" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/security/labor) +"bdJ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external,/turf/snow/drift{dir = 4},/area/security/labor) +"bdK" = (/obj/machinery/suit_cycler/security{req_access = null},/turf/simulated/floor/tiled/dark,/area/security/labor) +"bdL" = (/obj/effect/floor_decal/corner/red{dir = 5},/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bdM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bdN" = (/obj/effect/floor_decal/corner/red{dir = 5},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"bdO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bdP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bdQ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bdR" = (/obj/structure/bed/chair,/obj/machinery/camera/network/interrogation,/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bdS" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bdT" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) +"bdU" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/security/hallway) +"bdV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bdW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bdX" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/floor_decal/corner/red/full{dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) +"bdY" = (/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bdZ" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"bea" = (/obj/structure/curtain/open/shower/security,/obj/machinery/shower{dir = 1},/turf/simulated/floor/tiled/freezer,/area/security/security_bathroom) +"beb" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/corner/red/full{dir = 8},/turf/simulated/floor/tiled/steel,/area/security/main) +"bec" = (/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled/steel,/area/security/main) +"bed" = (/obj/machinery/door/airlock/glass_security{id_tag = "BrigFoyer"; layer = 2.8; name = "Security Wing"; req_access = list(); req_one_access = list(1,19)},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled/red,/area/security/lobby) +"bee" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/lobby) +"bef" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Examination Room"; req_access = list(5,45); req_one_access = list()},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"beg" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/steel,/area/security/lobby) +"beh" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/glasses/sunglasses{desc = "My vision is augmented"; icon_state = "sun"; name = "Augmented shades"},/turf/simulated/floor/plating,/area/hallway/primary/aft) +"bei" = (/obj/machinery/computer/timeclock/premade/west,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bej" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bek" = (/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bel" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/turf/simulated/floor/tiled/steel_grid,/area/storage/primary) +"bem" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"ben" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"beo" = (/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bep" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"beq" = (/obj/machinery/door/firedoor/glass/hidden,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"ber" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bes" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bet" = (/obj/machinery/iv_drip,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/ward) +"beu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bev" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bew" = (/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bex" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bey" = (/obj/effect/floor_decal/corner/brown,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bez" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(31); req_one_access = list()},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/delivery) +"beA" = (/obj/effect/floor_decal/corner/brown{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"beB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"beC" = (/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"beD" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"beE" = (/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = 26; pixel_y = -6; req_access = list(31)},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/brown,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"beF" = (/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -26; pixel_y = -6; req_access = list(31)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"beG" = (/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"beH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"beI" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/crate,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"beJ" = (/obj/effect/floor_decal/rust/color_rustedfull,/obj/machinery/door/airlock/glass_external/freezable,/turf/simulated/floor/tiled/old_tile/gray,/area/borealis2/outdoors/exterior/explore1) +"beK" = (/obj/structure/grille,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/solars) +"beL" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor,/area/shuttle/prison/prison) +"beM" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/box/trackimp,/turf/simulated/floor/tiled/dark,/area/security/labor) +"beN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/labor) +"beO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/labor) +"beP" = (/obj/structure/closet/secure_closet/brig,/turf/simulated/floor/tiled/dark,/area/security/labor) +"beQ" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/obj/machinery/camera/network/prison{c_tag = "Brig Cell 3"; dir = 1},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"beR" = (/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"beS" = (/obj/machinery/flasher{id = "Cell 3"; pixel_x = -28; pixel_y = 0},/obj/structure/bed/padded,/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"beT" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/obj/machinery/camera/network/prison{c_tag = "Prison Visitation"; dir = 1},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"beU" = (/obj/machinery/flasher{id = "Cell 2"; pixel_x = -28; pixel_y = 0},/obj/structure/bed/padded,/turf/simulated/floor/tiled,/area/security/security_cell_hallway) +"beV" = (/obj/item/device/radio/intercom/interrogation{dir = 8; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/interrogation{c_tag = "Interrogation Viewing"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"beW" = (/obj/machinery/computer/security/telescreen{layer = 4; name = "Observation Screen"; network = list("Interrogation"); pixel_x = 34; pixel_y = 0},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"beX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"beY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/obj/item/device/taperecorder,/obj/item/device/radio/intercom/interrogation{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"beZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bfa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Interrogation"; req_access = list(63)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bfb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bfc" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bfd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bfe" = (/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bff" = (/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bfg" = (/turf/simulated/wall/r_wall,/area/security/security_bathroom) +"bfh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/security{name = "Equipment Cleaning"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/security_bathroom) +"bfi" = (/turf/simulated/wall,/area/security/hallway) +"bfj" = (/obj/machinery/status_display,/turf/simulated/wall,/area/security/hallway) +"bfk" = (/obj/machinery/vending/cigarette,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/corner/red/full{dir = 8},/turf/simulated/floor/tiled,/area/security/main) +"bfl" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donut,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/main) +"bfm" = (/obj/structure/cable/heavyduty,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/engineering/workshop) +"bfn" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/main) +"bfo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/main) +"bfp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red,/turf/simulated/floor/tiled/steel,/area/security/main) +"bfq" = (/obj/machinery/door/airlock/glass_security{id_tag = "BrigFoyer"; layer = 2.8; name = "Security Wing"; req_access = list(); req_one_access = list(1,19)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled/red,/area/security/lobby) +"bfr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled/steel,/area/security/lobby) +"bfs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled/steel,/area/security/lobby) +"bft" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/red/full{dir = 4},/obj/structure/bed/chair{dir = 8},/obj/machinery/camera/network/security{c_tag = "Security Lobby"; dir = 8},/turf/simulated/floor/tiled,/area/security/lobby) +"bfu" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/suit/storage/vest/hoscoat/jensen{armor = list("melee" = 30, "bullet" = 20, "laser" = 20, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); desc = "Its an old dusty trenchcoat...what a shame"; name = "Trenchcoat"},/turf/simulated/floor/plating,/area/hallway/primary/aft) +"bfv" = (/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bfw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bfx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bfy" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/security{name = "Detective"; req_access = list(4)},/turf/simulated/floor/lino,/area/security/detectives_office) +"bfz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfC" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"bfD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfI" = (/obj/structure/window/reinforced,/obj/structure/table/rack,/obj/machinery/door/window/westleft{dir = 4; name = "EVA Suit Storage"; req_access = list(5)},/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/medical,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical,/obj/item/weapon/tank/oxygen,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bfJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{name = "Paramedic Station"; req_one_access = list(5,66)},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bfK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfL" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bfN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bfO" = (/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bfP" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bfQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bfR" = (/obj/effect/floor_decal/corner/brown{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bfS" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/machinery/door/window/northright{dir = 4; name = "Mailing Room"; req_access = list(50)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bfT" = (/obj/effect/landmark/start{name = "Cargo Technician"},/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bfU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bfV" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bfW" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bfX" = (/obj/machinery/button/remote/blast_door{id = "warehouse"; name = "Warehouse Door Control"; pixel_x = -26; pixel_y = -38; req_access = list(31)},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bfY" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bfZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bga" = (/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bgb" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bgc" = (/turf/simulated/shuttle/floor,/area/shuttle/prison/prison) +"bgd" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/coin/iron,/turf/simulated/floor/tiled/dark,/area/security/labor) +"bge" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/labor) +"bgf" = (/obj/structure/closet/secure_closet/brig,/obj/machinery/camera/network/security{c_tag = "Security Labor Transfer"; dir = 8},/turf/simulated/floor/tiled/dark,/area/security/labor) +"bgg" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bgh" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bgi" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bgj" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bgk" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/interrogation) +"bgl" = (/obj/structure/table/standard,/obj/item/clothing/accessory/badge/holo,/obj/item/clothing/accessory/badge/holo,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/hallway) +"bgm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/red{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bgn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bgo" = (/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bgp" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/reagentgrinder,/obj/machinery/camera/network/civilian{c_tag = "Kitchen East"; dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bgq" = (/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/hallway) +"bgr" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/corner/red{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/security/hallway) +"bgs" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) +"bgt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bgu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/hallway) +"bgv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/red{dir = 5},/obj/structure/reagent_dispensers/peppertank{pixel_y = 32},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bgw" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/steel{amount = 50},/obj/item/clothing/glasses/welding,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/machinery/camera/network/research,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/computer/guestpass{pixel_y = 30},/turf/simulated/floor/tiled/steel,/area/rnd/lab) +"bgx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/hallway) +"bgy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled,/area/security/main) +"bgz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/main) +"bgA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/security/main) +"bgB" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/security/main) +"bgC" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled,/area/security/main) +"bgD" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/security/lobby) +"bgE" = (/obj/structure/table/reinforced,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/window/brigdoor/southleft{dir = 1; name = "Secure Door"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bgF" = (/obj/structure/table/reinforced,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/window/brigdoor/southright{dir = 1; name = "Secure Door"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bgG" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/security/lobby) +"bgH" = (/obj/structure/symbol/ca,/turf/simulated/wall,/area/hallway/primary/aft) +"bgI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bgJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bgK" = (/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bgL" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/corner/pink/full,/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bgM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bgN" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bgO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bgP" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bgQ" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bgR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bgS" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bgT" = (/turf/simulated/wall,/area/assembly/robotics) +"bgU" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bgV" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/brown,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bgW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bgX" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bgY" = (/obj/machinery/computer/supplycomp{dir = 8},/obj/effect/floor_decal/corner/brown/full{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bgZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/delivery) +"bha" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/camera/network/cargo{dir = 4; name = "security camera"},/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bhb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bhc" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/brown,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bhd" = (/obj/structure/table/steel,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bhe" = (/obj/structure/table/steel,/obj/item/weapon/wrapping_paper,/obj/item/weapon/wrapping_paper,/obj/item/weapon/wrapping_paper,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bhf" = (/obj/structure/table/steel,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/corner/brown/full{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bhg" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bhh" = (/obj/structure/closet/crate/internals,/obj/machinery/light/small,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bhi" = (/obj/structure/closet/crate/freezer,/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bhj" = (/obj/effect/floor_decal/corner_steel_grid,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bhk" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bhl" = (/obj/effect/floor_decal/corner_steel_grid{dir = 8},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bhm" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bhn" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/prison/prison) +"bho" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/security/labor) +"bhp" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/security/labor) +"bhq" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/labor) +"bhr" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/storage/tech) +"bhs" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/device/analyzer/plant_analyzer,/obj/item/device/healthanalyzer,/obj/item/device/analyzer,/obj/item/device/analyzer,/turf/simulated/floor/plating,/area/storage/tech) +"bht" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/autolathe,/obj/item/weapon/circuitboard/partslathe,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/storage/tech) +"bhu" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/unary_atmos/heater,/obj/item/weapon/circuitboard/unary_atmos/cooler{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) +"bhv" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/storage/tech) +"bhw" = (/obj/machinery/vending/assist,/turf/simulated/floor,/area/storage/tech) +"bhx" = (/turf/simulated/wall/r_wall,/area/storage/tech) +"bhy" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/hos) +"bhz" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/red{dir = 9},/obj/machinery/camera/network/security{c_tag = "Security Hallway Port"; dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bhA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bhB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bhC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red,/turf/simulated/floor/tiled,/area/security/hallway) +"bhD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/hallway) +"bhE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 8},/turf/simulated/floor/tiled,/area/security/hallway) +"bhF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bhG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) +"bhH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled,/area/security/hallway) +"bhI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 10},/obj/machinery/camera/network/security{c_tag = "Security Hallway Center"; dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) +"bhJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bhK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/red{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bhL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 8},/turf/simulated/floor/tiled/steel,/area/security/main) +"bhM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/main) +"bhN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled/steel,/area/security/main) +"bhO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/security/main) +"bhP" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled/steel,/area/security/main) +"bhQ" = (/obj/machinery/computer/security{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bhR" = (/obj/machinery/button/remote/airlock{desc = "A remote control switch for the brig foyer."; id = "BrigFoyer"; name = "Brig Foyer Doors"; pixel_x = -6; pixel_y = 26; req_access = list(63)},/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bhS" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bhT" = (/obj/machinery/computer/secure_data{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bhU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"bhV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bhW" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bhX" = (/turf/simulated/wall,/area/rnd/lab) +"bhY" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/rnd/lab) +"bhZ" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/assembly/robotics) +"bia" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southright{name = "Robotics Desk"; req_access = list(29)},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/assembly/robotics) +"bib" = (/obj/machinery/computer/rdconsole/robotics,/obj/machinery/alarm{pixel_y = 25},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bic" = (/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30},/obj/machinery/light{dir = 1},/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bid" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bie" = (/turf/simulated/floor/plating,/area/hallway/primary/starboard) +"bif" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"big" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bih" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bii" = (/obj/structure/disposalpipe/junction,/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bij" = (/obj/structure/sign/department/cargo,/turf/simulated/wall,/area/quartermaster/office) +"bik" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/office) +"bil" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/northright{dir = 2; name = "Mailing Room"; req_access = list(50)},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bim" = (/turf/simulated/wall,/area/quartermaster/office) +"bin" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(31); req_one_access = list()},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/office) +"bio" = (/obj/machinery/door/blast/shutters{dir = 2; id = "warehouse"; name = "Warehouse Shutters"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse) +"bip" = (/obj/machinery/door/blast/shutters{dir = 2; id = "warehouse"; name = "Warehouse Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse) +"biq" = (/obj/effect/floor_decal/snow/floor/edges3,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"bir" = (/obj/effect/floor_decal/corner_steel_grid{dir = 6},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bis" = (/obj/effect/floor_decal/industrial/warning/dust/corner,/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/obj/machinery/light/flamp/noshade,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bit" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/railing{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"biu" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/railing{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"biv" = (/obj/effect/floor_decal/corner_steel_grid{dir = 9},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"biw" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"bix" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"biy" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/shuttle/floor,/area/shuttle/prison/prison) +"biz" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/tech) +"biA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/tech) +"biB" = (/turf/simulated/floor,/area/storage/tech) +"biC" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/storage/tech) +"biD" = (/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/turf/simulated/floor,/area/storage/tech) +"biE" = (/turf/simulated/floor/plating,/area/storage/tech) +"biF" = (/obj/structure/flora/pottedplant/crystal,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"biG" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/secure/safe{pixel_x = 6; pixel_y = 28},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/paper{desc = ""; info = "In the event that more weapon permits are needed, please fax Central Command to request more. Please also include a reason for the request. Blank permits will be shipped to cargo for pickup. If long-term permits are desired, please contact your NanoTrasen Employee Representitive for more information."; name = "note from CentCom about permits"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"biH" = (/obj/item/modular_computer/console/preset/command,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"biI" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"biJ" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"biK" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"biL" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{id = "hos"},/obj/structure/window/reinforced/polarized{dir = 4; id = "hos"},/obj/structure/window/reinforced/polarized{dir = 1; id = "hos"},/obj/structure/window/reinforced/polarized{dir = 8; id = "hos"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hos) +"biM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"biN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/hallway) +"biO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"biP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/security/hallway) +"biQ" = (/turf/simulated/wall,/area/security/security_processing) +"biR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Processing"; req_access = list(1)},/turf/simulated/floor/tiled/steel_grid,/area/security/security_processing) +"biS" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/security/security_processing) +"biT" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/security/security_processing) +"biU" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/security/security_processing) +"biV" = (/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/machinery/camera/network/security{c_tag = "Security Firing Range"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled,/area/security/main) +"biW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/main) +"biX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel,/area/security/main) +"biY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/main) +"biZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/security/main) +"bja" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/steel,/area/security/main) +"bjb" = (/obj/machinery/door/window/brigdoor/westleft{name = "Security Checkpoint"; req_access = list(1)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bjc" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bjd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bje" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bjf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"bjg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"bjh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"bji" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bjj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bjk" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bjl" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/structure/reagent_dispensers/acid{pixel_x = -30},/turf/simulated/floor/tiled/dark,/area/rnd/lab) +"bjm" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/rnd/lab) +"bjn" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/tiled/dark,/area/rnd/lab) +"bjo" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/rnd/lab) +"bjp" = (/obj/machinery/computer/supplycomp/control{dir = 8},/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/computer/guestpass{pixel_y = 30},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bjq" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/lab) +"bjr" = (/obj/item/weapon/stock_parts/console_screen,/obj/structure/table/standard,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/machinery/recharger{pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/mauve/border{dir = 5},/turf/simulated/floor/tiled,/area/rnd/lab) +"bjs" = (/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 0},/obj/item/device/flash,/obj/item/device/flash,/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bjt" = (/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bju" = (/obj/structure/closet{name = "materials"},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/plasteel{amount = 10},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bjv" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/mecha_part_fabricator,/turf/simulated/floor/tiled,/area/assembly/robotics) +"bjw" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/pros_fabricator,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/assembly/robotics) +"bjx" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/standard,/obj/item/device/robotanalyzer,/obj/item/device/robotanalyzer,/obj/item/device/mmi/digital/posibrain,/turf/simulated/floor/tiled,/area/assembly/robotics) +"bjy" = (/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bjz" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bjA" = (/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = 32},/turf/simulated/floor/tiled/white,/area/assembly/chargebay) +"bjB" = (/turf/simulated/wall,/area/assembly/chargebay) +"bjC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bjD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bjE" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bjF" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/structure/table/standard,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bjG" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bjH" = (/obj/structure/bed/chair{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/quartermaster) +"bjI" = (/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table/standard,/obj/item/weapon/stamp/cargo,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bjJ" = (/obj/machinery/camera/network/cargo,/obj/structure/flora/pottedplant/xmas,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/effect/floor_decal/corner/brown{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bjK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bjL" = (/obj/machinery/status_display/supply_display,/turf/simulated/wall,/area/quartermaster/office) +"bjM" = (/obj/machinery/navbeacon/delivery/south{location = "QM #2"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bjN" = (/obj/machinery/navbeacon/delivery/south{location = "QM #3"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bjO" = (/obj/structure/closet/emcloset,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bjP" = (/obj/machinery/button/remote/blast_door{id = "warehouse"; name = "Warehouse Door Control"; pixel_x = 6; pixel_y = 26; req_access = list(31)},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bjQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bjR" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bjS" = (/obj/structure/closet/emcloset,/obj/machinery/status_display/supply_display{pixel_y = 32},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bjT" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/stamp/cargo,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/cargo,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bjU" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/storage/backpack/dufflebag,/obj/item/weapon/stamp/cargo,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/cargo,/obj/item/clothing/shoes/boots/winter/supply{name = "cargo snow boots"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bjV" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bjW" = (/obj/structure/railing{dir = 1},/obj/machinery/light/flamp/noshade,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bjX" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/structure/railing{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bjY" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/supply/station) +"bjZ" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bka" = (/obj/machinery/status_display,/turf/simulated/wall,/area/hallway/secondary/exit) +"bkb" = (/turf/simulated/wall/r_wall,/area/storage/secure) +"bkc" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) +"bkd" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/weapon/circuitboard/transhuman_synthprinter{pixel_x = -3; pixel_y = 4},/obj/item/weapon/circuitboard/rdconsole{pixel_x = 0; pixel_y = 2},/obj/item/weapon/circuitboard/destructive_analyzer,/obj/item/weapon/circuitboard/protolathe{pixel_x = 3; pixel_y = -2},/obj/item/weapon/circuitboard/rdserver{pixel_x = 6; pixel_y = -4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/storage/tech) +"bke" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/arcade/orion_trail{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/jukebox{pixel_x = 0; pixel_y = 0},/obj/item/weapon/circuitboard/message_monitor{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/arcade/battle{pixel_x = 6; pixel_y = -5},/turf/simulated/floor/plating,/area/storage/tech) +"bkf" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/tech) +"bkg" = (/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5; pixel_y = 0},/obj/item/device/integrated_electronics/wirer{pixel_x = 5; pixel_y = 0},/turf/simulated/floor,/area/storage/tech) +"bkh" = (/obj/structure/closet/secure_closet/hos,/obj/item/clothing/suit/space/void/security/fluff/hos{armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10); species_restricted = null},/obj/item/clothing/head/helmet/space/void/security/fluff/hos{armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10); species_restricted = null},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bki" = (/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bkj" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bkk" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bkl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bkm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{id_tag = "HoSdoor"; name = "Head of Security"; req_access = list(58)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/hos) +"bkn" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bko" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bkp" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "HoS Office"; sortType = "HoS Office"},/turf/simulated/floor/tiled,/area/security/hallway) +"bkq" = (/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"bkr" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/plating,/area/security/security_processing) +"bks" = (/obj/structure/table/steel,/obj/item/device/camera,/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing) +"bkt" = (/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"bku" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) +"bkv" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/security_processing) +"bkw" = (/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/megaphone,/obj/item/weapon/packageWrap,/obj/item/weapon/storage/box,/obj/item/weapon/hand_labeler,/obj/item/device/universal_translator,/obj/item/device/radio/intercom{pixel_y = 24; req_access = list()},/obj/structure/table/steel,/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/security_processing) +"bkx" = (/obj/structure/table/steel,/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled,/area/security/security_processing) +"bky" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/red/full{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"bkz" = (/obj/machinery/requests_console/preset/security,/turf/simulated/wall,/area/security/security_processing) +"bkA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled/steel,/area/security/main) +"bkB" = (/turf/simulated/floor/tiled/steel,/area/security/main) +"bkC" = (/obj/effect/floor_decal/corner/red,/turf/simulated/floor/tiled/steel,/area/security/main) +"bkD" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner/red{dir = 10},/obj/machinery/camera/network/security{c_tag = "Security Hallway Starboard"; dir = 1},/turf/simulated/floor/tiled/steel,/area/security/main) +"bkE" = (/obj/machinery/papershredder,/obj/effect/floor_decal/corner/red{dir = 8},/turf/simulated/floor/tiled,/area/security/main) +"bkF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/main) +"bkG" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donut,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/cable/green,/obj/item/device/retail_scanner/security{name = "fine payment scanner"},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bkH" = (/obj/structure/table/steel,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/obj/item/device/radio{pixel_x = -4},/obj/item/device/radio{pixel_x = 4; pixel_y = 4},/obj/item/device/radio/intercom/department/security{dir = 4; icon_state = "secintercom"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"bkI" = (/obj/machinery/button/remote/blast_door{id = "preop1"; name = "PreOp Privacy Shutters"; pixel_y = -30; req_access = list(45)},/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bkJ" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bkK" = (/obj/machinery/computer/rdconsole/core{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/rnd/lab) +"bkL" = (/turf/simulated/floor/tiled/dark,/area/rnd/lab) +"bkM" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/tiled/dark,/area/rnd/lab) +"bkN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/lab) +"bkO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/lab) +"bkP" = (/turf/simulated/floor/tiled,/area/rnd/lab) +"bkQ" = (/obj/item/weapon/folder/white,/obj/structure/table/standard,/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/reagent_containers/dropper{pixel_y = -4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/machinery/requests_console/preset/research{pixel_x = 32},/turf/simulated/floor/tiled/steel,/area/rnd/lab) +"bkR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bkS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bkT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/assembly/robotics) +"bkU" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/assembly/robotics) +"bkV" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/assembly/robotics) +"bkW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bkX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bkY" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay) +"bkZ" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bla" = (/obj/machinery/mech_recharger,/turf/simulated/floor/plating,/area/assembly/chargebay) +"blb" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/turf/simulated/floor/plating,/area/assembly/chargebay) +"blc" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bld" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"ble" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(31); req_one_access = list()},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/office) +"blf" = (/turf/simulated/floor/tiled,/area/quartermaster/office) +"blg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 8; pixel_x = 28},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/office) +"blh" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bli" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"blj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"blk" = (/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bll" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"blm" = (/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bln" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/explore1) +"blo" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/shuttle/prison/prison) +"blp" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/robotics{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/mecha_control{pixel_x = 1; pixel_y = -1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/storage/secure) +"blq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/storage/secure) +"blr" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/security/mining{pixel_x = 1; pixel_y = 3},/obj/item/weapon/circuitboard/autolathe,/obj/item/weapon/circuitboard/scan_consolenew{pixel_x = 6; pixel_y = -3},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/storage/tech) +"bls" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/secure_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/security{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/skills{pixel_x = 4; pixel_y = -3},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/storage/tech) +"blt" = (/obj/structure/table/steel,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/simulated/floor,/area/storage/tech) +"blu" = (/obj/structure/closet/secure_closet/hos2,/obj/machinery/camera/network/security{c_tag = "Head of Security"; dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"blv" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{pixel_x = -4; pixel_y = 8},/obj/item/device/taperecorder{pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"blw" = (/obj/structure/table/woodentable,/obj/machinery/computer/skills{dir = 8; pixel_y = 4},/obj/item/clothing/accessory/permit/gun{desc = "An example of a card indicating that the owner is allowed to carry a firearm. There's a note saying to fax CentCom if you want to order more blank permits."; name = "sample weapon permit"; owner = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"blx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bly" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"blz" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/red{dir = 10},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"blA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/effect/floor_decal/corner/red{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"blB" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction/yjunction{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"blC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/hallway) +"blD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"blE" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"blF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"blG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"blH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"blI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"blJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Processing"; req_access = list(1)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/red{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/security/security_processing) +"blK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/main) +"blL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel,/area/security/main) +"blM" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donut,/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled,/area/security/main) +"blN" = (/turf/simulated/wall,/area/security/detectives_office) +"blO" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/security/detectives_office) +"blP" = (/obj/machinery/door/airlock/glass_security{id_tag = "detdoor"; name = "Detective"; req_access = list(4)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/security/detectives_office) +"blQ" = (/obj/machinery/computer/security/wooden_tv,/obj/machinery/button/windowtint{id = "detectivetint"; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet,/area/security/detectives_office) +"blR" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/structure/window/reinforced/polarized{dir = 4; id = "detectivetint"},/turf/simulated/floor/carpet,/area/security/detectives_office) +"blS" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "detectivetint"},/turf/simulated/floor/plating,/area/security/detectives_office) +"blT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"blU" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"blV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/standard,/obj/machinery/cash_register/science,/turf/simulated/floor/tiled/steel_grid,/area/rnd/lab) +"blW" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/lab) +"blX" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/lab) +"blY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/rnd/lab) +"blZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/lab) +"bma" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/lab) +"bmb" = (/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bmc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bmd" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bme" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bmf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bmg" = (/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bmh" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bmi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/button/remote/blast_door{id = "mechbay"; name = "Mechbay Door"; pixel_x = -30},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bmj" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/starboard) +"bmk" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/brown,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bml" = (/obj/structure/bed/chair/comfy/brown,/obj/effect/floor_decal/corner/brown{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bmm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bmn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bmo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bmp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bmq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bmr" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bms" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access = list(31); req_one_access = list()},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/office) +"bmt" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bmu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bmv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bmw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bmx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bmy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bmz" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bmA" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "QMLoad2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bmB" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/storage) +"bmC" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bmD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bmE" = (/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior) +"bmF" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/shuttle/prison/prison) +"bmG" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bmH" = (/obj/structure/railing,/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bmI" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/card{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/communications{pixel_x = 5; pixel_y = -5},/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/storage/secure) +"bmJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/storage/secure) +"bmK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access = list(19,23); req_one_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/storage/secure) +"bmL" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/storage/tech) +"bmM" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/transhuman_clonepod{pixel_x = -2; pixel_y = 3},/obj/item/weapon/circuitboard/resleeving_control{pixel_x = 0; pixel_y = 1},/obj/item/weapon/circuitboard/body_designer{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/med_data{pixel_x = 5; pixel_y = -3},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/storage/tech) +"bmN" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/storage/tech) +"bmO" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/powermonitor{pixel_x = 0; pixel_y = 3},/obj/item/weapon/circuitboard/stationalert_engineering{pixel_x = 2; pixel_y = 1},/obj/item/weapon/circuitboard/security/engineering{pixel_x = 5; pixel_y = -1},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = 6; pixel_y = -3},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/storage/tech) +"bmP" = (/obj/structure/table/steel,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor,/area/storage/tech) +"bmQ" = (/obj/structure/filingcabinet,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bmR" = (/obj/machinery/button/remote/airlock{id = "HoSdoor"; name = "Office Door"; pixel_x = 36; pixel_y = -26},/obj/machinery/button/windowtint{id = "hos"; pixel_x = 26; pixel_y = -30; req_access = list(58)},/obj/machinery/button/remote/blast_door{id = "security_lockdown"; name = "Brig Lockdown"; pixel_x = 36; pixel_y = -39; req_access = list(2)},/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bmS" = (/obj/structure/table/woodentable,/obj/item/weapon/stamp/hos,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bmT" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bmU" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_x = 32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bmV" = (/turf/simulated/wall,/area/security/security_lockerroom) +"bmW" = (/obj/machinery/door/airlock/security{name = "Security Locker Room"; req_access = list(1)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/security_lockerroom) +"bmX" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/security/security_lockerroom) +"bmY" = (/obj/structure/table/steel,/obj/item/device/taperecorder,/obj/item/weapon/storage/box/evidence,/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/effect/floor_decal/corner/red{dir = 8},/turf/simulated/floor/tiled,/area/security/security_processing) +"bmZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"bna" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "preop1"; name = "Privacy Shutters"; opacity = 0},/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/paleblue,/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bnb" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"bnc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"bnd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/red,/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"bne" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Processing"; req_access = list(1)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/security/security_processing) +"bnf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled/steel,/area/security/main) +"bng" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled/steel,/area/security/main) +"bnh" = (/obj/structure/table/standard,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/corner/red/full{dir = 4},/turf/simulated/floor/tiled,/area/security/main) +"bni" = (/obj/machinery/computer/secure_data/detective_computer{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled/freezer,/area/security/forensics) +"bnj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/lino,/area/security/detectives_office) +"bnk" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/security_space_law,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/lino,/area/security/detectives_office) +"bnl" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/machinery/camera/network/security{c_tag = "Detective"},/turf/simulated/floor/lino,/area/security/detectives_office) +"bnm" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/photo_album{pixel_y = -10},/obj/item/device/camera_film,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; pictures_left = 30; pixel_x = 2; pixel_y = 3},/turf/simulated/floor/lino,/area/security/detectives_office) +"bnn" = (/obj/item/weapon/storage/secure/safe{pixel_x = 6; pixel_y = 28},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bno" = (/obj/effect/landmark/start{name = "Detective"},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bnp" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/obj/structure/window/reinforced/polarized{dir = 4; id = "detectivetint"},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bnq" = (/obj/item/weapon/stool,/turf/simulated/floor/tiled/steel,/area/security/detectives_office) +"bnr" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 4; name = "Research and Development Desk"; req_access = list(7)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/rnd/lab) +"bns" = (/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/rnd/lab) +"bnt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lab) +"bnu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/rnd/lab) +"bnv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/rnd/lab) +"bnw" = (/turf/simulated/floor/tiled/steel,/area/rnd/lab) +"bnx" = (/obj/structure/noticeboard{pixel_y = 27},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/table/reinforced,/obj/machinery/door/window/westright{req_access = list(7)},/obj/machinery/door/window/eastright{req_access = list(7)},/turf/simulated/floor/tiled,/area/assembly/robotics) +"bny" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bnz" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bnA" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 5},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bnB" = (/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bnC" = (/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/light,/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bnD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bnE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) +"bnF" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bnG" = (/obj/structure/table/standard,/obj/item/weapon/material/ashtray/glass,/obj/machinery/newscaster{pixel_x = -28; pixel_y = 32},/obj/item/weapon/deck/cards,/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bnH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bnI" = (/obj/machinery/autolathe,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bnJ" = (/obj/structure/table/standard,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/item/device/multitool,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bnK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bnL" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access = list(31); req_one_access = list()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/office) +"bnM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bnN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bnO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bnP" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bnQ" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bnR" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/simulated/floor,/area/quartermaster/storage) +"bnS" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_bay_door"; locked = 1; name = "Cargo Docking Hatch"},/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bnT" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/borgupload{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/aiupload{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/transhuman_resleever{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/tiled/dark,/area/storage/secure) +"bnU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled/dark,/area/storage/secure) +"bnV" = (/obj/effect/floor_decal/rust,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor,/area/storage/tech) +"bnW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/storage/tech) +"bnX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/storage/tech) +"bnY" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/storage/tech) +"bnZ" = (/obj/structure/table/steel,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/turf/simulated/floor,/area/storage/tech) +"boa" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/red_hos,/obj/item/weapon/pen/multi,/obj/machinery/keycard_auth{pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bob" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"boc" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{dir = 2; pixel_x = -10; pixel_y = 12},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bod" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"boe" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bof" = (/obj/machinery/recharger/wallcharger{pixel_y = 32},/obj/structure/table/steel,/obj/effect/floor_decal/corner/red/full{dir = 8},/obj/item/device/holowarrant,/obj/item/device/holowarrant,/obj/item/device/holowarrant,/obj/item/device/holowarrant,/obj/item/device/holowarrant,/turf/simulated/floor/tiled/steel,/area/security/security_lockerroom) +"bog" = (/obj/machinery/recharger/wallcharger{pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel,/area/security/security_lockerroom) +"boh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel,/area/security/security_lockerroom) +"boi" = (/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_lockerroom) +"boj" = (/obj/structure/closet/wardrobe/red,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/item/clothing/suit/storage/toggle/yw/secjacket,/obj/item/clothing/suit/storage/toggle/yw/secjacket,/obj/item/clothing/suit/storage/toggle/yw/secjacket,/obj/effect/floor_decal/corner/red/full{dir = 1},/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/turf/simulated/floor/tiled,/area/security/security_lockerroom) +"bok" = (/obj/structure/table/steel,/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/red{pixel_x = 2; pixel_y = 4},/obj/item/weapon/folder/red,/obj/effect/floor_decal/corner/red/full,/turf/simulated/floor/tiled,/area/security/security_processing) +"bol" = (/obj/effect/floor_decal/corner/red{dir = 6},/obj/machinery/vending/security/yw,/turf/simulated/floor/tiled,/area/security/security_lockerroom) +"bom" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/effect/floor_decal/corner/red{dir = 8},/turf/simulated/floor/tiled,/area/security/security_processing) +"bon" = (/obj/structure/table/steel,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled,/area/security/security_processing) +"boo" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/security/security_processing) +"bop" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"boq" = (/turf/simulated/wall,/area/security/evidence_storage) +"bor" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"bos" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/lino,/area/security/detectives_office) +"bot" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/lino,/area/security/detectives_office) +"bou" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/lino,/area/security/detectives_office) +"bov" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/lino,/area/security/detectives_office) +"bow" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/security/detectives_office) +"box" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/carpet,/area/security/detectives_office) +"boy" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/clothing/glasses/sunglasses,/obj/structure/window/reinforced/polarized{dir = 4; id = "detectivetint"},/turf/simulated/floor/carpet,/area/security/detectives_office) +"boz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"boA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"boB" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/rnd/lab) +"boC" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel,/area/rnd/lab) +"boD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/lab) +"boE" = (/obj/effect/floor_decal/industrial/outline,/obj/structure/closet/wardrobe/science_white,/turf/simulated/floor/tiled,/area/rnd/lab) +"boF" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/computer/transhuman/resleeving,/obj/item/weapon/book/manual/resleeving,/obj/item/weapon/storage/box/backup_kit,/obj/structure/window/reinforced,/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"boG" = (/obj/machinery/transhuman/synthprinter,/obj/structure/window/reinforced,/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"boH" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/transhuman/resleever,/obj/structure/window/reinforced,/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"boI" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"boJ" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera/network/research{c_tag = "Robotics"; dir = 8; network = list("Research")},/turf/simulated/floor/tiled,/area/assembly/robotics) +"boK" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/starboard) +"boL" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"boM" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/effect/floor_decal/corner/brown/full,/turf/simulated/floor/tiled,/area/quartermaster/office) +"boN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office) +"boO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/office) +"boP" = (/obj/structure/table/standard,/obj/item/device/retail_scanner/civilian{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) +"boQ" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office) +"boR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/office) +"boS" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/brown,/turf/simulated/floor/tiled,/area/quartermaster/office) +"boT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/engine,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"boU" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"boV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"boW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"boX" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"boY" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"boZ" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bpa" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_bay_door"; locked = 1; name = "Cargo Docking Hatch"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bpb" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_bay_door"; locked = 1; name = "Cargo Docking Hatch"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bpc" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"bpd" = (/obj/effect/floor_decal/corner_steel_grid{dir = 8},/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"bpe" = (/obj/structure/table/steel,/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/machinery/light/small,/turf/simulated/floor,/area/storage/tech) +"bpf" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/clothing/gloves/yellow,/obj/item/device/t_scanner,/obj/item/clothing/glasses/meson,/obj/item/device/multitool,/turf/simulated/floor/plating,/area/storage/tech) +"bpg" = (/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flash,/obj/item/device/flash,/obj/structure/table/steel,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/plating,/area/storage/tech) +"bph" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) +"bpi" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/obj/machinery/ai_status_display{pixel_x = 32; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/tech) +"bpj" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Head of Security"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bpk" = (/obj/machinery/computer/secure_data{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bpl" = (/obj/machinery/computer/security{dir = 1},/obj/item/device/radio/intercom/department/security{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bpm" = (/obj/structure/table/woodentable,/obj/item/device/radio/off,/obj/item/device/megaphone,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bpn" = (/obj/machinery/photocopier,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bpo" = (/mob/living/simple_mob/animal/giant_spider{desc = "The HoS's pet spider Lorenzo. He seems to have a piece of grey fabric in his mouth."; faction = "neutral"; name = "Lorenzo"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bpp" = (/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = -26; pixel_y = 0},/obj/item/weapon/storage/box/nifsofts_security,/obj/structure/table/steel,/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled,/area/security/security_lockerroom) +"bpq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/steel,/area/security/security_lockerroom) +"bpr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel,/area/security/security_lockerroom) +"bps" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel,/area/security/security_lockerroom) +"bpt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"bpu" = (/obj/machinery/computer/secure_data{dir = 4},/obj/item/device/radio/intercom/department/security{dir = 8; icon_state = "secintercom"; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/corner/red/full,/turf/simulated/floor/tiled,/area/security/security_processing) +"bpv" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/red{dir = 10},/obj/machinery/camera/network/security{c_tag = "Security Processing"; dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing) +"bpw" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"bpx" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/red/full{dir = 4},/turf/simulated/floor/tiled/steel,/area/security/security_processing) +"bpy" = (/obj/machinery/door/airlock/security{name = "Evidence Storage"; req_access = list(1)},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"bpz" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bpA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bpB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bpC" = (/obj/machinery/door/airlock/glass_security{id_tag = "detdoor"; name = "Secure Evidence Storage"; req_access = list(4)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office) +"bpD" = (/obj/effect/floor_decal/spline/plain,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office) +"bpE" = (/obj/effect/floor_decal/spline/plain,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office) +"bpF" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office) +"bpG" = (/obj/effect/floor_decal/spline/plain,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/lino,/area/security/detectives_office) +"bpH" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office) +"bpI" = (/obj/effect/floor_decal/spline/plain,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office) +"bpJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"bpK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bpL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bpM" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/rnd/lab) +"bpN" = (/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/obj/item/device/gps/science,/obj/item/device/gps/science,/obj/item/clothing/shoes/boots/winter/science,/obj/item/clothing/shoes/boots/winter/science,/turf/simulated/floor/tiled,/area/rnd/lab) +"bpO" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lab) +"bpP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/autolathe{desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; hacked = 1; name = "Unlocked Autolathe"},/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled,/area/rnd/lab) +"bpQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/lab) +"bpR" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled,/area/rnd/lab) +"bpS" = (/obj/machinery/status_display,/turf/simulated/wall,/area/assembly/robotics) +"bpT" = (/obj/structure/closet/wardrobe/robotics_black,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science,/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"bpU" = (/obj/structure/closet/wardrobe/robotics_black,/obj/effect/floor_decal/rust,/obj/random/maintenance/research,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science,/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"bpV" = (/turf/simulated/floor/tiled,/area/assembly/robotics) +"bpW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/assembly/robotics) +"bpX" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bpY" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bpZ" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/rust,/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bqa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bqb" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bqc" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bqd" = (/obj/structure/table/standard,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/effect/floor_decal/corner/brown{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqe" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqg" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bqi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bqj" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bqk" = (/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "cargo_bay"; layer = 3.3; name = "cargo bay hatch controller"; pixel_x = 30; pixel_y = 0; req_one_access = list(13,31); tag_door = "cargo_bay_door"},/obj/machinery/camera/network/cargo{dir = 9; c_tag = "CRG - Mining Airlock"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bql" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bqm" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bqn" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/railing{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior) +"bqo" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/railing{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior) +"bqp" = (/obj/effect/floor_decal/corner_steel_grid{dir = 9},/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"bqq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access = list(23); req_one_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/storage/tech) +"bqr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access = list(23); req_one_access = newlist()},/turf/simulated/floor/plating,/area/storage/tech) +"bqs" = (/turf/simulated/wall/r_wall,/area/engineering/workshop) +"bqt" = (/turf/simulated/wall/r_wall,/area/security/security_lockerroom) +"bqu" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/industrial/outline,/obj/item/clothing/suit/armor/vest/wolftaur,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"bqv" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"bqw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"bqx" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"bqy" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/industrial/outline,/obj/item/clothing/suit/armor/vest/wolftaur,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"bqz" = (/turf/simulated/floor/plating,/area/security/security_processing) +"bqA" = (/turf/simulated/wall/r_wall,/area/security/security_processing) +"bqB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bqC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bqD" = (/obj/structure/closet{name = "Evidence Closet"},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bqE" = (/turf/simulated/wall,/area/security/forensics) +"bqF" = (/obj/structure/closet{name = "Evidence Closet"},/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/briefcase/crimekit,/obj/item/weapon/storage/briefcase/crimekit,/obj/effect/floor_decal/corner/red{dir = 9},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bqG" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bqH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bqI" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bqJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bqK" = (/turf/simulated/floor/tiled/white,/area/security/forensics) +"bqL" = (/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit,/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; frequency = 1475; icon_state = "intercom"; listening = 1; name = "Station Intercom (Security)"; pixel_x = 21; pixel_y = 0},/obj/effect/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bqM" = (/turf/simulated/wall/r_wall,/area/security/forensics) +"bqN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/smartfridge/chemistry,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bqO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"bqP" = (/obj/effect/floor_decal/corner/pink/full,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bqQ" = (/obj/machinery/door/airlock/glass_research{name = "Research and Development"; req_access = list(7)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/rnd/lab) +"bqR" = (/obj/machinery/door/airlock/glass_research{name = "Research and Development"; req_access = list(7)},/turf/simulated/floor/tiled/steel,/area/rnd/lab) +"bqS" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bqT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bqU" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bqV" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/assembly/robotics) +"bqW" = (/obj/machinery/optable{name = "Robotics Operating Table"},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bqX" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall,/area/assembly/robotics) +"bqY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bqZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/ice_pick,/obj/effect/floor_decal/corner/red,/obj/effect/floor_decal/corner/white{dir = 4},/obj/structure/table/rack,/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"bra" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"brb" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 9},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/security/forensics) +"brc" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"brd" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bre" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/autoname{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"brf" = (/obj/structure/table/standard,/obj/item/weapon/tape_roll,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/obj/effect/floor_decal/corner/brown/full,/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/tiled,/area/quartermaster/office) +"brg" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/machinery/recharger,/obj/effect/floor_decal/corner/brown{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office) +"brh" = (/obj/effect/floor_decal/corner/brown,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bri" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/office) +"brj" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/corner/brown/full{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) +"brk" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"brl" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"brm" = (/obj/structure/railing{dir = 1},/obj/machinery/light/flamp/noshade,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior) +"brn" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior) +"bro" = (/turf/simulated/wall,/area/engineering/workshop) +"brp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/engineering/workshop) +"brq" = (/turf/simulated/floor/tiled/techfloor,/area/engineering/workshop) +"brr" = (/obj/machinery/camera/network/engineering{c_tag = "Engineering Breakroom"},/turf/simulated/floor/tiled/techfloor,/area/engineering/workshop) +"brs" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full,/turf/simulated/floor,/area/engineering/workshop) +"brt" = (/obj/effect/floor_decal/corner/yellow/full{icon_state = "corner_white_full"; dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bru" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"brv" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"brw" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/item/clothing/gloves/yellow,/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"brx" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bry" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"brz" = (/obj/structure/closet/wardrobe/engineering_yellow,/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"brA" = (/obj/structure/frame,/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"brB" = (/obj/structure/flora/pottedplant{icon_state = "plant-21"},/obj/effect/floor_decal/corner/yellow/full{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"brC" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/industrial/outline,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"brD" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"brE" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"brF" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"brG" = (/turf/simulated/floor/plating,/area/security/security_lockerroom) +"brH" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/closet/secure_closet{name = "secure evidence locker"},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"brI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"brJ" = (/obj/machinery/door/airlock/security{name = "Secure Evidence Storage"; req_access = list(1)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"brK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"brL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"brM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"brN" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"brO" = (/obj/structure/table/reinforced,/obj/machinery/microscope,/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled/white,/area/security/forensics) +"brP" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/security/forensics) +"brQ" = (/obj/effect/landmark/start{name = "Detective"},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) +"brR" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/luminol,/obj/item/device/uv_light,/obj/item/clothing/gloves/sterile/latex,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled/white,/area/security/forensics) +"brS" = (/obj/structure/sign/department/sci{pixel_x = 32},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"brT" = (/turf/simulated/wall,/area/rnd/research) +"brU" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/industrial/warning,/obj/machinery/camera/network/research{c_tag = "Research Port Entry"},/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"brV" = (/obj/structure/sink{pixel_y = 16},/obj/structure/closet/hydrant{pixel_x = 32},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"brW" = (/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/turf/simulated/floor/tiled/white,/area/rnd/research) +"brX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research) +"brY" = (/turf/simulated/floor/tiled/white,/area/rnd/research) +"brZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/washing_machine,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bsa" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/assembly/robotics) +"bsb" = (/obj/structure/table/rack,/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/assembly/robotics) +"bsc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bsd" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"bse" = (/obj/structure/table/standard,/obj/item/weapon/surgical/circular_saw,/obj/item/weapon/surgical/scalpel{pixel_y = 12},/obj/item/weapon/surgical/hemostat,/obj/item/weapon/surgical/retractor,/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bsf" = (/turf/simulated/wall/r_wall,/area/borealis2/outdoors/grounds) +"bsg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/assembly/chargebay) +"bsh" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/assembly/chargebay) +"bsi" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bsj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bsk" = (/obj/effect/floor_decal/corner/brown{dir = 6},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bsl" = (/turf/simulated/wall,/area/quartermaster) +"bsm" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "QM"},/turf/simulated/floor/plating,/area/quartermaster) +"bsn" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access = list(41); req_one_access = list()},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster) +"bso" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bsp" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bsq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bsr" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bss" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bst" = (/obj/machinery/conveyor{dir = 10; icon_state = "conveyor0"; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) +"bsu" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_bay_door"; locked = 1; name = "Cargo Docking Hatch"},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bsv" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) +"bsw" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/titanium,/area/borealis2/outdoors/grounds) +"bsx" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior) +"bsy" = (/obj/machinery/trailblazer/yellow,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bsz" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engineering/workshop) +"bsA" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/engineering/workshop) +"bsB" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/machinery/camera/network/engineering{c_tag = "ENG - Break Room"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bsC" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/workshop) +"bsD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/workshop) +"bsE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled,/area/engineering/workshop) +"bsF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bsG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bsH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bsI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bsJ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) +"bsK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bsL" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bsM" = (/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bsN" = (/obj/effect/floor_decal/corner/yellow{dir = 6},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bsO" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/industrial/outline,/obj/item/clothing/shoes/boots/jackboots/toeless,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"bsP" = (/obj/item/weapon/stool/padded,/obj/machinery/camera/network/security{c_tag = "Prison Court"; dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"bsQ" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"bsR" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"bsS" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/industrial/outline,/obj/item/clothing/shoes/boots/jackboots/toeless,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"bsT" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/closet/secure_closet{name = "secure evidence locker"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bsU" = (/turf/simulated/wall/r_wall,/area/security/evidence_storage) +"bsV" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bsW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bsX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bsY" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bsZ" = (/obj/machinery/button/remote/blast_door{id = "preop1"; name = "PreOp Privacy Shutters"; pixel_y = -30; req_access = list(45)},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bta" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/swabs{layer = 5},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/weapon/folder/red,/obj/item/weapon/folder/blue{pixel_y = -3},/obj/item/weapon/folder/yellow{pixel_y = -5},/obj/machinery/light{dir = 2},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled/white,/area/security/forensics) +"btb" = (/obj/structure/table/reinforced,/obj/item/device/mass_spectrometer/adv,/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/item/device/reagent_scanner,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/tiled/white,/area/security/forensics) +"btc" = (/obj/machinery/dnaforensics,/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled/white,/area/security/forensics) +"btd" = (/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit/powder,/obj/machinery/light{dir = 2},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bte" = (/turf/simulated/wall,/area/borealis2/elevator/medbay) +"btf" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"btg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bth" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bti" = (/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"btj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"btk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"btl" = (/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"btm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"btn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bto" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/rnd/research) +"btp" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"btq" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/sign/department/robo,/turf/simulated/floor/plating,/area/assembly/robotics) +"btr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bts" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"btt" = (/obj/machinery/door/airlock/glass_research{name = "Mech Bay"; req_access = list(29,47)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/assembly/chargebay) +"btu" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/assembly/chargebay) +"btv" = (/obj/structure/sign/department/sci{pixel_x = -32},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"btw" = (/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"btx" = (/obj/machinery/light_switch{pixel_y = 21},/turf/simulated/floor/wood,/area/quartermaster) +"bty" = (/turf/simulated/floor/wood,/area/quartermaster) +"btz" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/quartermaster) +"btA" = (/obj/structure/table/standard,/obj/item/weapon/coin/silver,/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/quartermaster) +"btB" = (/obj/structure/table/standard,/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/turf/simulated/floor/wood,/area/quartermaster) +"btC" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"btD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"btE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"btF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"btG" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) +"btH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/storage) +"btI" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/storage) +"btJ" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/titanium,/area/borealis2/outdoors/grounds) +"btK" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior) +"btL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/syndicate_station/north) +"btM" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"btN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"btO" = (/obj/effect/floor_decal/rust,/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/structure/cable/heavyduty{icon_state = "1-4"},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"btP" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 1},/obj/structure/railing,/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"btQ" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 8},/obj/structure/catwalk,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"btR" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/catwalk,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"btS" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"btT" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 1},/obj/structure/railing,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/power) +"btU" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/engineering/workshop) +"btV" = (/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/simulated/floor/plating,/area/engineering/workshop) +"btW" = (/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"btX" = (/turf/simulated/floor/carpet,/area/engineering/workshop) +"btY" = (/obj/structure/table/glass,/turf/simulated/floor/carpet,/area/engineering/workshop) +"btZ" = (/obj/structure/bed/chair/sofa/right{dir = 8},/turf/simulated/floor/carpet,/area/engineering/workshop) +"bua" = (/obj/machinery/cryopod{dir = 4},/obj/structure/window/reinforced,/obj/machinery/computer/cryopod{pixel_x = -32},/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bub" = (/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"buc" = (/obj/machinery/hologram/holopad,/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bud" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bue" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"buf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bug" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"buh" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bui" = (/obj/effect/floor_decal/corner/yellow{dir = 6},/obj/vehicle/train/trolley,/obj/machinery/camera/network/engineering{c_tag = "Atmospherics Hallway"; dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"buj" = (/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"buk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/security{c_tag = "Prison Disposal Processing"; dir = 8},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bul" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/camera/network/security{c_tag = "Evidence Storage"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bum" = (/obj/structure/table/standard,/obj/machinery/camera/network/security{c_tag = "SEC - Evidence Storage"; dir = 8},/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bun" = (/obj/structure/table/marble,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/door/blast/shutters{dir = 4; id = "kitchen"; layer = 3.1; name = "Kitchen Shutters"},/obj/machinery/door/window/westright{req_access = list(28)},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"buo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bup" = (/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buq" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bur" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bus" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"but" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/rnd/research) +"buv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buw" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bux" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buy" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/rnd/research) +"buA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research) +"buB" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buC" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buD" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buG" = (/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buJ" = (/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"buK" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"buL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/sortjunction/flipped{name = "QM Office"; sortType = "QM Office"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"buM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"buN" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access = list(41); req_one_access = list()},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster) +"buO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/quartermaster) +"buP" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Quartermaster"},/turf/simulated/floor/wood,/area/quartermaster) +"buQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/quartermaster) +"buR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/quartermaster) +"buS" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32; pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/quartermaster) +"buT" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"buU" = (/obj/machinery/conveyor_switch/oneway{convdir = 1; id = "QMLoad"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"buV" = (/obj/effect/floor_decal/snow/floor/edges3{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"buW" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/structure/railing,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior) +"buX" = (/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"buY" = (/obj/structure/table/standard,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/obj/item/weapon/circuitboard/teleporter,/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/door/window/brigdoor/westright{req_access = list(30)},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"buZ" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/glasses/square,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bva" = (/obj/structure/bed/chair/sofa/left{dir = 1},/turf/simulated/floor/carpet,/area/engineering/workshop) +"bvb" = (/obj/structure/bed/chair/sofa{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/carpet,/area/engineering/workshop) +"bvc" = (/obj/structure/bed/chair/sofa/corner{dir = 8},/turf/simulated/floor/carpet,/area/engineering/workshop) +"bvd" = (/obj/machinery/computer/station_alert{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bve" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/tool/wrench,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"bvf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bvg" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bvh" = (/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/yellow{dir = 4},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bvi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "ceoffice"; name = "CE Office Privacy Shutters"; opacity = 0},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"bvj" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Chief Engineer's Office"},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 6; name = "Chief Engineer RC"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/corner/blue/full{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bvk" = (/obj/machinery/computer/atmos_alert,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bvl" = (/obj/machinery/computer/station_alert/all,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bvm" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 27},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bvn" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bvo" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/effect/floor_decal/corner/blue{dir = 5},/obj/item/weapon/hand_tele,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bvp" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/breath,/obj/item/weapon/rig/ce/equipped,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bvq" = (/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 24},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for the engine core airlock hatch bolts."; id = "engine_access_hatch"; name = "Engine Hatch Bolt Control"; pixel_x = -6; pixel_y = 32; req_access = newlist(); specialfunctions = 4},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for engine core."; id = "EngineVent"; name = "Engine Ventillatory Control"; pixel_x = 6; pixel_y = 32; req_access = newlist()},/obj/structure/table/reinforced,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd,/obj/machinery/newscaster{layer = 3.3; pixel_x = 27; pixel_y = 0},/obj/effect/floor_decal/corner/blue/full{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bvr" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/chief) +"bvs" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/closet/secure_closet{name = "secure evidence locker"},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bvt" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/closet/secure_closet{name = "secure evidence locker"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bvu" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/light_switch{pixel_x = 0; pixel_y = -26},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bvv" = (/obj/vehicle/train/security/trolley/cargo,/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bvw" = (/obj/vehicle/train/security/engine,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"bvx" = (/turf/simulated/wall/r_wall,/area/engineering/foyer) +"bvy" = (/obj/machinery/recharge_station,/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/turf/simulated/floor/carpet,/area/engineering/foyer) +"bvz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet,/area/engineering/foyer) +"bvA" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/carpet,/area/engineering/foyer) +"bvB" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet,/area/engineering/foyer) +"bvC" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/camera/network/engineering,/obj/effect/floor_decal/corner/yellow/full{icon_state = "corner_white_full"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bvD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bvE" = (/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bvF" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/foyer) +"bvG" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bvH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bvI" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"bvJ" = (/turf/simulated/wall/r_wall,/area/rnd/research) +"bvK" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"bvL" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"bvM" = (/obj/machinery/vending/cigarette,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvN" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvO" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvQ" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvR" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; name = "Research"; sortType = "Research"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "RD Office"; sortType = "RD Office"},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; name = "Robotics"; sortType = "Robotics"},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvX" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvY" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bvZ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bwa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bwb" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bwc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bwd" = (/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bwe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bwf" = (/obj/effect/floor_decal/corner/brown,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bwg" = (/obj/structure/table/standard,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/quartermaster) +"bwh" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/turf/simulated/floor/wood,/area/quartermaster) +"bwi" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/megaphone,/turf/simulated/floor/wood,/area/quartermaster) +"bwj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 9},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bwk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/wood,/area/quartermaster) +"bwl" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/quartermaster) +"bwm" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access = list(41); req_one_access = list()},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster) +"bwn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwq" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwr" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bws" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor,/area/quartermaster/storage) +"bwt" = (/obj/machinery/status_display/supply_display{pixel_y = -32},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/light/small,/turf/simulated/floor,/area/quartermaster/storage) +"bwu" = (/obj/effect/floor_decal/corner_steel_grid{dir = 5},/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"bwv" = (/obj/effect/floor_decal/corner_steel_grid{dir = 1},/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"bww" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"bwx" = (/obj/structure/railing,/obj/machinery/light/flamp/noshade,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/exterior) +"bwy" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/engi,/turf/simulated/floor/tiled/dark,/area/engineering/workshop) +"bwz" = (/obj/structure/frame,/obj/effect/floor_decal/corner/yellow{dir = 9},/obj/machinery/camera/network/engineering{c_tag = "Engineering Workshop Port"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bwA" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bwB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bwC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bwD" = (/obj/effect/floor_decal/corner/blue{dir = 4},/obj/vehicle/train/engine,/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bwE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "ceoffice"; name = "CE Office Privacy Shutters"; opacity = 0},/obj/structure/cable/green,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"bwF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bwG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bwH" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bwI" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = -12; req_access = list(10)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bwJ" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "ceoffice"; name = "Chief Engineer Privacy Shutters"; pixel_x = -26; pixel_y = 18; req_access = list(56)},/obj/effect/landmark/start{name = "Chief Engineer"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bwK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bwL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bwM" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/corner/blue/full{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bwN" = (/obj/machinery/vending/cola,/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/carpet,/area/engineering/foyer) +"bwO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet,/area/engineering/foyer) +"bwP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/engineering/foyer) +"bwQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/engineering/foyer) +"bwR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bwS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/decal/cleanable/ash,/turf/simulated/floor/tiled,/area/engineering/foyer) +"bwT" = (/turf/simulated/floor/tiled,/area/engineering/foyer) +"bwU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Lobby"; req_one_access = list()},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer) +"bwV" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bwW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bwX" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/barman_recipes,/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/obj/item/weapon/tool/screwdriver,/obj/item/weapon/flame/lighter/zippo,/obj/machinery/light_switch{pixel_x = -36; pixel_y = 0},/obj/machinery/button/remote/blast_door{id = "bar"; name = "Bar Shutters"; pixel_x = -26; pixel_y = 0},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/autoname{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bwY" = (/turf/simulated/wall/r_wall,/area/hallway/primary/aft) +"bwZ" = (/turf/simulated/wall/r_wall,/area/rnd/workshop) +"bxa" = (/turf/simulated/wall,/area/rnd/workshop) +"bxb" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bxc" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/junction,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bxd" = (/turf/simulated/wall,/area/rnd/rdoffice) +"bxe" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full,/turf/simulated/floor/plating,/area/rnd/rdoffice) +"bxf" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{id_tag = "researchdoor"; name = "Research Director"; req_access = list(30)},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bxg" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bxh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bxi" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bxj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bxk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bxl" = (/obj/machinery/atm,/turf/simulated/wall,/area/crew_quarters/bar) +"bxm" = (/mob/living/simple_mob/animal/passive/dog/corgi/Lisa,/turf/simulated/floor/wood,/area/quartermaster) +"bxn" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/quartermaster) +"bxo" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxp" = (/obj/structure/table/standard,/obj/item/clothing/head/soft,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/clothing/head/soft,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxr" = (/turf/simulated/wall,/area/quartermaster/storage) +"bxs" = (/obj/effect/floor_decal/snow/floor/surround{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bxt" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds/solars) +"bxu" = (/obj/structure/lattice,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bxv" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "Engineering_exit_exterior"; locked = 1},/turf/simulated/floor/plating/snow/plating,/area/engineering/hallway) +"bxw" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "Engineering_exit_control"; name = "Engineering Port Exit Controller"; pixel_x = -6; pixel_y = 25; tag_exterior_door = "Engineering_exit_exterior"; tag_interior_door = "Engineering_exit_interior"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bxx" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/hallway) +"bxy" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "Engineering_exit_interior"; locked = 1; name = "Engineering Internal Airlock"; req_one_access = list(13)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bxz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bxA" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/camera/network/engineering{c_tag = "Engineering Exit Port"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bxB" = (/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"; req_one_access = list()},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bxC" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/engineering/hallway) +"bxD" = (/turf/simulated/wall,/area/engineering/hallway) +"bxE" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/floor_decal/corner/yellow{dir = 9},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bxF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bxG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/decal/cleanable/liquid_fuel,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bxH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bxI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bxJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bxK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/command{name = "Chief Engineer"; req_access = list(56)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bxL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bxM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bxN" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bxO" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/clothing/glasses/welding/superior,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/book/manual/supermatter_engine,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bxP" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bxQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bxR" = (/obj/machinery/light_switch{pixel_x = 24; pixel_y = -12},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bxS" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bxT" = (/turf/simulated/wall,/area/engineering/engineering_monitoring) +"bxU" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_monitoring) +"bxV" = (/obj/structure/sign/department/eng,/turf/simulated/wall/r_wall,/area/engineering/engineering_monitoring) +"bxW" = (/obj/structure/window/reinforced,/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet,/area/engineering/foyer) +"bxX" = (/obj/structure/window/reinforced,/obj/structure/bed/chair{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/engineering/foyer) +"bxY" = (/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bxZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bya" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow,/turf/simulated/floor/tiled,/area/engineering/foyer) +"byb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Lobby"; req_one_access = list()},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer) +"byc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"byd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"bye" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/effect/floor_decal/corner/yellow,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"byf" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/corner/yellow,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/aft) +"byg" = (/obj/effect/floor_decal/techfloor{dir = 9},/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"byh" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"byi" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/table/steel,/obj/machinery/camera/network/research,/obj/item/device/integrated_circuit_printer,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"byj" = (/obj/effect/floor_decal/techfloor{dir = 5},/obj/structure/table/steel,/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"byk" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"byl" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bym" = (/obj/machinery/disposal,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"byn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/obj/structure/flora/pottedplant/crystal,/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"byo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"byp" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/hop) +"byq" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/rack/shelf,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/obj/item/clothing/shoes/boots/winter,/obj/item/weapon/ice_pick,/turf/simulated/floor/tiled,/area/hallway/secondary/exit) +"byr" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bys" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"byt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"byu" = (/obj/machinery/button/remote/blast_door{id = "preop2"; name = "PreOp Privacy Shutters"; pixel_y = -30; req_access = list(45)},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"byv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "preop2"; name = "Privacy Shutters"; opacity = 0},/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"byw" = (/obj/structure/filingcabinet,/turf/simulated/floor/wood,/area/quartermaster) +"byx" = (/obj/machinery/camera/network/cargo{dir = 1},/obj/machinery/computer/supplycomp/control,/turf/simulated/floor/wood,/area/quartermaster) +"byy" = (/obj/machinery/computer/security/mining{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/obj/machinery/light,/turf/simulated/floor/wood,/area/quartermaster) +"byz" = (/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/wood,/area/quartermaster) +"byA" = (/obj/structure/closet,/obj/item/weapon/storage/backpack/dufflebag,/turf/simulated/floor/wood,/area/quartermaster) +"byB" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/quartermaster) +"byC" = (/turf/simulated/wall,/area/quartermaster/miningwing) +"byD" = (/obj/machinery/door/airlock/glass_mining{name = "Mining Operations"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/miningwing) +"byE" = (/obj/machinery/mineral/equipment_vendor,/obj/effect/floor_decal/corner/brown/full{dir = 8},/turf/simulated/floor,/area/quartermaster/miningwing) +"byF" = (/obj/machinery/mech_recharger,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/plating,/area/quartermaster/miningwing) +"byG" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/mineral/equipment_vendor,/obj/effect/floor_decal/corner/brown/full{dir = 1},/turf/simulated/floor,/area/quartermaster/miningwing) +"byH" = (/obj/effect/floor_decal/corner_steel_grid{dir = 6},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"byI" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/machinery/light/flamp/noshade,/turf/simulated/floor/tiled/cryogaia,/area/borealis2/outdoors/grounds) +"byJ" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"byK" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/structure/railing,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"byL" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/railing,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"byM" = (/obj/structure/railing,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"byN" = (/obj/structure/railing,/obj/machinery/light/flamp/noshade,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"byO" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 1},/obj/structure/railing,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/syndicate_station/north) +"byP" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"byQ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "Engineering_exit_exterior"; locked = 1},/obj/machinery/access_button/airlock_exterior{master_tag = "Engineering_exit_control"; pixel_x = -6; pixel_y = -25; req_one_access = list(11,24)},/turf/simulated/floor/plating/snow/plating,/area/engineering/hallway) +"byR" = (/obj/machinery/light/small,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/obj/structure/cable/green,/obj/machinery/power/thermoregulator/cryogaia{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/techmaint,/area/engineering/hallway) +"byS" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/hallway) +"byT" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "Engineering_exit_interior"; locked = 1; name = "Engineering Internal Airlock"; req_one_access = list(13)},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/access_button/airlock_interior{master_tag = "Engineering_exit_control"; pixel_x = -6; pixel_y = -25; req_one_access = list(11,24)},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"byU" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"byV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"byW" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/hallway) +"byX" = (/obj/structure/table/reinforced,/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/effect/floor_decal/corner/yellow/full,/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"byY" = (/obj/structure/table/reinforced,/obj/item/stack/material/plasteel{amount = 10},/obj/item/stack/material/plasteel{amount = 10},/obj/item/stack/material/plasteel{amount = 10},/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/plastic{amount = 50},/obj/effect/floor_decal/corner/yellow{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"byZ" = (/obj/structure/table/reinforced,/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/machinery/light,/obj/effect/floor_decal/corner/yellow{dir = 10},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bza" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/effect/floor_decal/corner/yellow{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bzb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 8},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bzc" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/yellow,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bzd" = (/obj/structure/table/reinforced,/obj/item/stack/rods{amount = 50},/obj/item/weapon/airlock_electronics,/obj/item/weapon/airlock_electronics,/obj/item/weapon/cell/high,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bze" = (/obj/structure/table/reinforced,/obj/item/device/floor_painter,/obj/item/device/multitool{pixel_x = 5},/obj/item/device/t_scanner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"bzf" = (/obj/structure/table/reinforced,/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off,/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/yellow{dir = 8},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bzg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "ceoffice"; name = "CE Office Privacy Shutters"; opacity = 0},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"bzh" = (/obj/structure/table/reinforced,/obj/item/weapon/stamp/ce,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/flame/lighter/zippo,/obj/item/device/megaphone,/obj/item/weapon/folder/yellow_ce,/obj/item/weapon/pen/multi,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bzi" = (/obj/structure/flora/pottedplant{icon_state = "plant-20"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bzj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bzk" = (/obj/machinery/light,/obj/effect/floor_decal/corner/blue{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bzl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bzm" = (/obj/item/modular_computer/console/preset/command{dir = 1},/mob/living/simple_mob/animal/passive/bird/parrot/poly,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bzn" = (/obj/machinery/camera/network/engineering{c_tag = "Chief Engineer's Office"; dir = 1},/obj/effect/floor_decal/corner/blue/full{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bzo" = (/obj/machinery/button/remote/driver{id = "enginecore"; name = "Emergency Core Eject"; pixel_x = 21; pixel_y = 0},/obj/structure/window/basic{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/chief) +"bzp" = (/turf/simulated/wall,/area/crew_quarters/heads/chief) +"bzq" = (/obj/machinery/computer/atmoscontrol{dir = 4},/obj/machinery/camera/network/engineering{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bzr" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bzs" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/electrical,/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bzt" = (/obj/structure/table/reinforced,/obj/item/weapon/deck/cards,/obj/machinery/computer/guestpass{pixel_y = 32},/obj/machinery/camera/network/engineering{c_tag = "Engineering Monitoring"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bzu" = (/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bzv" = (/obj/machinery/computer/station_alert,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bzw" = (/obj/machinery/computer/atmos_alert,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bzx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/floor_decal/corner/yellow/full{icon_state = "corner_white_full"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bzy" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bzz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bzA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bzB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bzC" = (/obj/structure/flora/pottedplant,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bzD" = (/turf/simulated/wall,/area/gateway) +"bzE" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/gateway) +"bzF" = (/obj/machinery/door/airlock/glass{name = "Public Gateway Access"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway) +"bzG" = (/turf/simulated/wall/r_wall,/area/gateway) +"bzH" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel,/obj/item/device/integrated_electronics/wirer{pixel_x = 5; pixel_y = 0},/obj/item/device/integrated_electronics/debugger{pixel_x = -5; pixel_y = 0},/obj/machinery/newscaster{pixel_x = -25},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bzI" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bzJ" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bzK" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel,/obj/item/device/electronic_assembly/large{pixel_y = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bzL" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bzM" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bzN" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bzO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bzP" = (/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bzQ" = (/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bzR" = (/obj/structure/closet/secure_closet/RD,/obj/item/clothing/glasses/omnihud/rnd,/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/requests_console/preset/rd{pixel_x = 30; pixel_y = 30},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bzS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bzT" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/rnd/research) +"bzU" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor,/area/rnd/research) +"bzV" = (/obj/structure/table/rack,/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/plating,/area/rnd/research) +"bzW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bzX" = (/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bzY" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bzZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bAa" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bAb" = (/obj/structure/table/steel,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bAc" = (/obj/effect/floor_decal/corner/brown{dir = 1},/turf/simulated/floor/tiled/steel,/area/quartermaster/miningwing) +"bAd" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel,/area/quartermaster/miningwing) +"bAe" = (/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled/steel,/area/quartermaster/miningwing) +"bAf" = (/obj/structure/table/steel,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/effect/floor_decal/corner/brown/full{dir = 1},/turf/simulated/floor/tiled/dark,/area/quartermaster/miningwing) +"bAg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/miningwing) +"bAh" = (/obj/effect/floor_decal/corner_steel_grid{dir = 4},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bAi" = (/obj/effect/floor_decal/corner_steel_grid{dir = 5},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bAj" = (/obj/effect/floor_decal/corner_steel_grid{dir = 1},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bAk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bAl" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/noticeboard/airlock{pixel_x = 30},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bAm" = (/obj/machinery/status_display,/turf/simulated/wall,/area/engineering/workshop) +"bAn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bAo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/workshop) +"bAp" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "ceoffice"; name = "CE Office Privacy Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"bAq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "ceoffice"; name = "CE Office Privacy Shutters"; opacity = 0},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"bAr" = (/obj/machinery/door/airlock/command{name = "Chief Engineer"; req_access = list(56)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bAs" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "ceoffice"; name = "CE Office Privacy Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"bAt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "ceoffice"; name = "CE Office Privacy Shutters"; opacity = 0},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"bAu" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/random/medical/lite,/turf/simulated/floor/tiled/yellow,/area/engineering/hallway) +"bAv" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) +"bAw" = (/obj/machinery/computer/general_air_control{dir = 4; frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bAx" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bAy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bAz" = (/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bAA" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bAB" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/machinery/door/window/westleft{dir = 4; name = "Engineering Reception Desk"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bAC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bAD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer) +"bAE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bAF" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled,/area/gateway) +"bAG" = (/turf/simulated/floor/tiled,/area/gateway) +"bAH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway) +"bAI" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/gateway) +"bAJ" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/structure/reagent_dispensers/acid{pixel_x = -32},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bAK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bAL" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bAM" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bAN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Workshop"; req_access = list(47)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/workshop) +"bAO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bAP" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bAQ" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized{dir = 8},/obj/structure/window/reinforced/polarized/full,/turf/simulated/floor/plating,/area/rnd/rdoffice) +"bAR" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/device/megaphone,/obj/item/weapon/paper/monitorkey,/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bAS" = (/obj/structure/table/glass,/obj/item/weapon/folder/white_rd,/obj/item/weapon/stamp/rd,/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bAT" = (/obj/structure/table/glass,/obj/machinery/computer/skills,/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bAU" = (/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bAV" = (/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/obj/item/modular_computer/console/preset/command{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bAW" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bAX" = (/obj/machinery/door/airlock{name = "Research Storage"},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/rnd/research) +"bAY" = (/obj/structure/closet/hydrant{pixel_x = 0; pixel_y = -32},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/rnd/research) +"bAZ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/rnd/research) +"bBa" = (/obj/machinery/light/small{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor,/area/rnd/research) +"bBb" = (/obj/machinery/vending/cigarette,/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bBc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bBd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bBe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bBf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 5},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bBg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bBh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bBi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 5},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bBj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/quartermaster/miningwing) +"bBk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/brown{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bBl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bBm" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bBn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bBo" = (/obj/structure/dispenser/oxygen,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bBp" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/miningwing) +"bBq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bBr" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bBs" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"bBt" = (/turf/simulated/wall/r_wall,/area/engineering/storage) +"bBu" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bBv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bBw" = (/turf/simulated/wall,/area/maintenance/substation/engineering) +"bBx" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engineering Subgrid"; name_tag = "Engineering Subgrid"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/maintenance/substation/engineering) +"bBy" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Engineering"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/engineering) +"bBz" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Engineering Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/engineering) +"bBA" = (/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/engineering,/obj/effect/floor_decal/corner/yellow/full{icon_state = "corner_white_full"; dir = 8},/obj/item/clothing/shoes/boots/winter/engineering,/obj/item/clothing/shoes/boots/winter/engineering,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/engineering,/obj/item/device/gps/engineering,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBB" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/engineering,/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/item/clothing/shoes/boots/winter/engineering,/obj/item/clothing/shoes/boots/winter/engineering,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/engineering,/obj/item/device/gps/engineering,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/yellow{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) +"bBE" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBF" = (/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBG" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBH" = (/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBI" = (/obj/machinery/camera/network/engineering{c_tag = "Engineering"},/turf/simulated/open,/area/engineering/hallway) +"bBJ" = (/obj/structure/railing,/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/window/reinforced{dir = 4},/turf/simulated/open,/area/engineering/hallway) +"bBK" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBL" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBN" = (/obj/effect/floor_decal/corner/blue{dir = 4},/obj/machinery/vending/engivend,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBO" = (/obj/effect/floor_decal/corner/blue{dir = 5},/obj/machinery/vending/tool,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBP" = (/obj/structure/bookcase/manuals/engineering,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBR" = (/obj/effect/floor_decal/corner/yellow/full{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bBS" = (/obj/machinery/computer/security/engineering{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bBT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bBU" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bBV" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bBW" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bBX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer) +"bBY" = (/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bBZ" = (/obj/effect/floor_decal/industrial/loading,/turf/simulated/floor/tiled,/area/gateway) +"bCa" = (/obj/effect/floor_decal/industrial/loading,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway) +"bCb" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/plating,/area/rnd/workshop) +"bCc" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bCd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bCe" = (/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bCf" = (/obj/effect/floor_decal/techfloor/corner,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bCg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/rnd/workshop) +"bCh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/research{c_tag = "Research Hall Port"; dir = 4; network = list("Research","Toxins Test Area")},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bCi" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bCj" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bCk" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/button/windowtint{pixel_x = 32; pixel_y = 16},/obj/effect/landmark/start{name = "Research Director"},/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bCl" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "Research Director's Office"},/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bCm" = (/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bCn" = (/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/obj/machinery/papershredder,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bCo" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bCp" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"bCq" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bCr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bCs" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bCt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bCu" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bCv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bCw" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bCx" = (/obj/machinery/recharge_station,/obj/machinery/camera/network/research{c_tag = "Secure Xenobiology aft"; dir = 1; network = list("Research","Miscellaneous Reseach")},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bCy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bCz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bCA" = (/obj/structure/table/rack,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/cargo,/obj/item/clothing/shoes/boots/winter/mining,/obj/item/device/gps/mining,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bCB" = (/obj/structure/table/rack,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/cargo,/obj/item/clothing/shoes/boots/winter/mining,/obj/item/device/gps/mining,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bCC" = (/obj/structure/table/rack,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/cargo,/obj/item/clothing/shoes/boots/winter/mining,/obj/item/device/gps/mining,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bCD" = (/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bCE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bCF" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/catwalk,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bCG" = (/obj/structure/disposalpipe/segment,/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/catwalk,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bCH" = (/turf/simulated/wall/titanium,/area/cryogaia/station/explorer_meeting) +"bCI" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/plating,/area/cryogaia/station/explorer_meeting) +"bCJ" = (/obj/effect/floor_decal/rust,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"bCK" = (/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"bCL" = (/obj/machinery/shield_gen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"bCM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/obj/machinery/camera/network/engineering{c_tag = "Engineering Hardstorage Fore"},/turf/simulated/floor,/area/engineering/storage) +"bCN" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage) +"bCO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bCP" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bCQ" = (/obj/structure/cable/green,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/turf/simulated/floor,/area/maintenance/substation/engineering) +"bCR" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/maintenance/substation/engineering) +"bCS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/substation/engineering) +"bCT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Substation"; req_one_access = list(10)},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor,/area/maintenance/substation/engineering) +"bCU" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bCV" = (/turf/simulated/floor/tiled,/area/engineering/hallway) +"bCW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bCX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) +"bCY" = (/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bCZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bDa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bDb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bDc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bDd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bDe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bDf" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bDg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bDh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bDi" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bDj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring) +"bDk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bDl" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bDm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bDn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bDo" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Station Engineer"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bDp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bDq" = (/obj/machinery/door/window/westleft{dir = 4; name = "Engineering Reception Desk"; req_access = list(10)},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bDr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bDs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bDt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/engineering/foyer) +"bDu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bDv" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/gateway) +"bDw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway) +"bDx" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/rnd/workshop) +"bDy" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/computer/rdconsole/core{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bDz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bDA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bDB" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bDC" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Workshop"; req_access = list(47)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/workshop) +"bDD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bDE" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bDF" = (/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bDG" = (/obj/structure/table/rack,/obj/item/weapon/rig/hazmat/equipped,/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bDH" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bDI" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"bDJ" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"bDK" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/toilet,/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"bDL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bDM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bDN" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bDO" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bDP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bDQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/brown,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bDR" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/corner/brown{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bDS" = (/obj/effect/landmark/start{name = "Shaft Miner"},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bDT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bDU" = (/obj/structure/closet/lumber{anchored = 1},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bDV" = (/obj/structure/closet/lumber{anchored = 1},/obj/item/clothing/suit/tajaran/furs,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bDW" = (/obj/structure/table/rack{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/belt/utility,/obj/machinery/newscaster{pixel_x = 28; pixel_y = 0},/obj/item/weapon/shovel,/obj/effect/floor_decal/corner/brown{dir = 6},/obj/item/weapon/ice_pick,/obj/item/weapon/ice_pick,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bDX" = (/obj/structure/railing,/obj/structure/catwalk,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bDY" = (/obj/structure/disposalpipe/segment,/obj/structure/railing,/obj/structure/catwalk,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bDZ" = (/turf/simulated/floor/plating,/area/cryogaia/station/explorer_meeting) +"bEa" = (/obj/structure/cable/heavyduty,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/cryogaia/station/explorer_meeting) +"bEb" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"bEc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage) +"bEd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bEe" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bEf" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway) +"bEg" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Substation"; req_one_access = list(10)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/engineering) +"bEh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/rack,/obj/item/weapon/ice_pick,/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled/steel,/area/engineering/hallway) +"bEi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bEj" = (/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bEk" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bEl" = (/obj/item/weapon/stool/padded,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bEm" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bEn" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bEo" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bEp" = (/obj/machinery/button/remote/blast_door{id = "preop2"; name = "PreOp Privacy Shutters"; pixel_y = -30; req_access = list(45)},/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bEq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bEr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/yellow,/obj/machinery/camera/network/engineering{c_tag = "Engineering Starboard"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bEs" = (/obj/structure/table/reinforced,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bEt" = (/obj/structure/window/reinforced,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bEu" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = 10; req_one_access = list(10,24)},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = 10; req_access = list(10)},/obj/machinery/recharger,/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bEv" = (/obj/machinery/computer/rcon{icon_state = "computer"; dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bEw" = (/obj/machinery/computer/power_monitor{icon_state = "computer"; dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bEx" = (/obj/machinery/computer/security/engineering{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bEy" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/tape_roll,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bEz" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/gateway) +"bEA" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/ash,/turf/simulated/floor/tiled,/area/gateway) +"bEB" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/gateway) +"bEC" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/rnd/workshop) +"bED" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/media/jukebox,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bEE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bEF" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bEG" = (/obj/machinery/computer/aifixer{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/machinery/keycard_auth{pixel_x = -28},/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/obj/machinery/button/remote/blast_door{id = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = -38; pixel_y = 13; req_access = list(47)},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bEH" = (/obj/machinery/computer/robotics{dir = 1},/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bEI" = (/obj/machinery/computer/mecha{dir = 1},/obj/machinery/light,/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bEJ" = (/obj/structure/table/standard,/obj/item/weapon/cartridge/signal/science,/obj/item/weapon/cartridge/signal/science,/obj/item/clothing/glasses/welding/superior,/obj/machinery/light_switch{pixel_x = 25},/obj/effect/floor_decal/corner_oldtile/gray/diagonal{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bEK" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/decal/cleanable/cobweb2{icon_state = "spiderling"; name = "dead spider"},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bEL" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bEM" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"bEN" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"bEO" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"bEP" = (/obj/structure/urinal{pixel_x = 32},/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"bEQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance{name = "Elevator Shaft"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/borealis2/elevator/scicargo) +"bER" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner/blue,/area/borealis2/elevator/scicargo) +"bES" = (/turf/simulated/shuttle/wall/voidcraft/blue,/area/borealis2/elevator/scicargo) +"bET" = (/turf/simulated/floor/holofloor/tiled/dark,/area/borealis2/elevator/scicargo) +"bEU" = (/obj/structure/sign/deck/first,/turf/simulated/shuttle/wall/voidcraft/blue,/area/borealis2/elevator/scicargo) +"bEV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bEW" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bEX" = (/obj/structure/table/bench/padded,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bEY" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bEZ" = (/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bFa" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/miningwing) +"bFb" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/thermoregulator/cryogaia{pixel_y = 30},/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/quartermaster/miningwing) +"bFc" = (/obj/machinery/camera/network/research_outpost{c_tag = "OPR - Expedition Airlock"; dir = 2},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 5},/turf/simulated/floor/tiled/techmaint,/area/quartermaster/miningwing) +"bFd" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/miningwing) +"bFe" = (/obj/effect/floor_decal/snow/floor/edges3,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bFf" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bFg" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/cable/yellow,/obj/machinery/power/generator/oldteg{anchored = 1; dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bFh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/titanium,/area/cryogaia/station/explorer_meeting) +"bFi" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/cryogaia/station/explorer_meeting) +"bFj" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/plating,/area/cryogaia/station/explorer_meeting) +"bFk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/cryogaia/station/explorer_meeting) +"bFl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/titanium,/area/borealis2/outdoors/grounds) +"bFm" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/titanium,/area/borealis2/outdoors/grounds) +"bFn" = (/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bFo" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bFp" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/machinery/camera/network/engineering{c_tag = "Engineering Port"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFs" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFu" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 9},/obj/machinery/door/blast/radproof/open{dir = 4; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"},/turf/simulated/floor/plating,/area/engineering/engine_monitoring) +"bFv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFy" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Engineering"; sortType = "Engineering"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFB" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFD" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFG" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; name = "CE Office"; sortType = "CE Office"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bFL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering"; req_one_access = list(10)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bFM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bFN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bFO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bFP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bFQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"; req_one_access = list(10)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring) +"bFR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bFS" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bFT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bFU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bFV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bFW" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/gateway) +"bFX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/gateway) +"bFY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/gateway) +"bFZ" = (/obj/machinery/camera/network/command{c_tag = "COM - Gateway Public Access"; dir = 9},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bGa" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel,/obj/item/device/electronic_assembly/large{pixel_y = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bGb" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bGc" = (/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bGd" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5; pixel_y = 0},/obj/item/device/integrated_electronics/wirer{pixel_x = 5; pixel_y = 0},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bGe" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bGf" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bGg" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized,/obj/structure/window/reinforced/polarized/full,/turf/simulated/floor/plating,/area/rnd/rdoffice) +"bGh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/command{id_tag = "researchdoor"; name = "Research Director"; req_access = list(30)},/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"bGi" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bGj" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/freezer,/area/rnd/research) +"bGk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/borealis2/elevator/scicargo) +"bGl" = (/turf/simulated/open,/area/borealis2/elevator/scicargo) +"bGm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/brown{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bGn" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/corner/brown/full,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bGo" = (/obj/effect/landmark/start{name = "Shaft Miner"},/obj/structure/table/bench/padded,/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bGp" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bGq" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/effect/floor_decal/corner/brown{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bGr" = (/obj/effect/floor_decal/corner/brown{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bGs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bGt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bGu" = (/obj/machinery/door/airlock/glass_external/public{frequency = 1379; id_tag = "Mining_exit_interior"; locked = 1; req_one_access = list(48)},/obj/machinery/access_button/airlock_interior{master_tag = "Mining_exit_control"; pixel_x = 7; pixel_y = 25},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bGv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/quartermaster/miningwing) +"bGw" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/quartermaster/miningwing) +"bGx" = (/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "Mining_exit_exterior"; locked = 1; req_access = list(48)},/obj/machinery/access_button/airlock_exterior{master_tag = "Mining_exit_control"; pixel_x = 7; pixel_y = 25},/turf/simulated/floor/plating/snow/plating,/area/quartermaster/miningwing) +"bGy" = (/turf/simulated/wall/r_wall,/area/cryogaia/station/explorer_meeting) +"bGz" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/cryogaia/station/explorer_meeting) +"bGA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_engineering,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/cryogaia/station/explorer_meeting) +"bGB" = (/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"bGC" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/storage) +"bGD" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"bGE" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bGF" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11); req_one_access = newlist()},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bGG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/yellow,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGK" = (/obj/effect/floor_decal/corner/yellow{dir = 10},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering"; req_one_access = list(10)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering"; req_one_access = list(10)},/obj/effect/floor_decal/corner/yellow{dir = 10},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGN" = (/obj/machinery/light,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner/yellow,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGO" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/effect/floor_decal/corner/yellow{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGQ" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/light,/obj/effect/floor_decal/corner/yellow,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGR" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGS" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/device/flashlight,/obj/item/weapon/tool/wrench,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGT" = (/obj/structure/table/reinforced,/obj/random/toolbox,/obj/item/device/geiger,/obj/effect/floor_decal/corner/yellow{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGV" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/corner/yellow,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGW" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGX" = (/obj/machinery/light,/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGY" = (/obj/effect/floor_decal/corner/yellow{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bGZ" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/floor_decal/corner/yellow,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bHa" = (/obj/machinery/light,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bHb" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bHc" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bHd" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bHe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering"; req_one_access = list(10)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bHf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bHg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bHh" = (/obj/machinery/light,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bHi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bHj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bHk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow{dir = 10},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"bHl" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"; req_one_access = list(10)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring) +"bHm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bHn" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/research{c_tag = "Xenobiology Control Room"; dir = 8; network = list("Research","Toxins Test Area")},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHo" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bHp" = (/obj/effect/floor_decal/corner/yellow/full{dir = 4; icon_state = "corner_white_full"},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bHq" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter -control"; pixel_y = -22; req_access = list(62)},/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bHr" = (/obj/effect/floor_decal/rust/part_rusted3,/turf/simulated/floor/tiled,/area/gateway) +"bHs" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bHt" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bHu" = (/obj/effect/floor_decal/techfloor,/obj/structure/table/steel,/obj/machinery/camera/network/research{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bHv" = (/obj/effect/floor_decal/techfloor,/obj/structure/table/steel,/obj/item/weapon/shield_diffuser,/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bHw" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"bHx" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHy" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHz" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHA" = (/obj/effect/floor_decal/corner/blue{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHB" = (/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHD" = (/obj/effect/floor_decal/corner/blue{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHE" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHF" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHG" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHI" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHJ" = (/obj/structure/bookcase/manuals/research_and_development,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple/full{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple/full{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bHK" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/borealis2/elevator/scicargo) +"bHL" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/borealis2/elevator/scicargo) +"bHM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bHN" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/substation/cargo) +"bHO" = (/turf/simulated/wall,/area/maintenance/substation/cargo) +"bHP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Cargo Substation"; req_one_access = list(11,24,50)},/obj/machinery/door/firedoor,/turf/simulated/floor,/area/maintenance/substation/cargo) +"bHQ" = (/obj/machinery/suit_cycler/mining,/obj/effect/floor_decal/corner/brown/full,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bHR" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bHS" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/corner/brown{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"bHT" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/quartermaster/miningwing) +"bHU" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "Mining_exit_control"; name = "Mining Exit Controller"; pixel_x = 25; pixel_y = -25; tag_exterior_door = "Mining_exit_exterior"; tag_interior_door = "Mining_exit_interior"},/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/quartermaster/miningwing) +"bHV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/miningwing) +"bHW" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bHX" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/corner/pink/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgeryprep) +"bHY" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bHZ" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bIa" = (/obj/machinery/newscaster{pixel_y = 32},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bIb" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bIc" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = -26; pixel_y = 22},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bId" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bIe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bIf" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bIg" = (/obj/machinery/mineral/equipment_vendor/survey,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bIh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bIi" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11); req_one_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bIj" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bIk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bIl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/yellow,/obj/effect/decal/cleanable/generic,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bIm" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/floor_decal/corner/yellow/full{dir = 4; icon_state = "corner_white_full"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bIn" = (/turf/simulated/wall/r_wall,/area/engineering/hallway) +"bIo" = (/turf/simulated/wall/r_wall,/area/engineering/engine_waste) +"bIp" = (/obj/machinery/door/airlock/maintenance{name = "Engine Waste Handling"; req_one_access = list(10,24)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/border_only,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/engine_waste) +"bIq" = (/turf/simulated/wall/r_wall,/area/engineering/engine_smes) +"bIr" = (/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bIs" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring) +"bIt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/engine_monitoring) +"bIu" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_engineering{name = "Engine Monitoring Room"; req_access = list(11)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bIv" = (/turf/simulated/wall/r_wall,/area/engineering/engine_airlock) +"bIw" = (/obj/machinery/door/airlock/maintenance_hatch{icon_state = "door_closed"; locked = 0; name = "Engine Access"; req_one_access = list(11)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/engineering/engine_airlock) +"bIx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bIy" = (/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/engineering/engine_airlock) +"bIz" = (/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/engineering/engine_airlock) +"bIA" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/engineering/engine_airlock) +"bIB" = (/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring) +"bIC" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 2; health = 1e+006},/turf/simulated/floor/plating,/area/engineering/engine_monitoring) +"bID" = (/turf/simulated/wall,/area/engineering/drone_fabrication) +"bIE" = (/obj/structure/sign/department/drones,/turf/simulated/wall,/area/engineering/drone_fabrication) +"bIF" = (/obj/machinery/door/airlock/engineering{name = "Engineering Drone Fabrication"; req_one_access = list(11,24)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/engineering/drone_fabrication) +"bIG" = (/obj/machinery/door/airlock/engineering{name = "Engineering Drone Fabrication"; req_one_access = list(11,24)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/drone_fabrication) +"bIH" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Public Gateway Access"},/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrep"; layer = 3.3; name = "Public Access Shutter"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway) +"bII" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrep"; layer = 3.3; name = "Public Access Shutter"},/turf/simulated/floor/tiled,/area/gateway) +"bIJ" = (/obj/machinery/status_display{pixel_x = -32},/obj/effect/floor_decal/corner/blue{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIN" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIO" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_mining{name = "Mining Operations"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/miningwing) +"bIR" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIS" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIT" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIU" = (/obj/structure/bed/chair/comfy/purp{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIV" = (/obj/structure/table/glass,/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIW" = (/obj/structure/bed/chair/comfy/purp{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple/full{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIX" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple/full{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple/full{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bIY" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/structure/cable{icon_state = "32-1"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/down{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/open,/area/borealis2/elevator/scicargo) +"bIZ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/borealis2/elevator/scicargo) +"bJa" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bJb" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bJc" = (/obj/machinery/door/airlock/engineering{name = "Cargo Substation"; req_one_access = list(11,24,50)},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bJd" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bJe" = (/obj/machinery/power/terminal,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bJf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bJg" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/closet,/obj/item/clothing/suit/storage/explorer/engineering,/obj/item/clothing/under/explorer/utility/engineering,/obj/item/clothing/under/explorer/utility/engineering,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/item/clothing/shoes/boots/winter/explorer,/obj/item/clothing/shoes/boots/winter/explorer,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJi" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJl" = (/obj/structure/bed/chair/office/dark,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start{name = "Explorer"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJm" = (/obj/structure/bed/chair/office/dark,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start{name = "Search and Rescue"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJn" = (/obj/structure/bed/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start{name = "Search and Rescue"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJp" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJq" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bJr" = (/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"bJs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bJt" = (/obj/effect/floor_decal/corner/yellow{dir = 10},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bJu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bJv" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest"; name = "Engine Room Blast Doors"; pixel_x = 0; pixel_y = 25; req_access = null; req_one_access = list(11,24)},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_waste) +"bJw" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/engineering/engine_waste) +"bJx" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/engine{c_tag = "ENG - Waste Handling"},/turf/simulated/floor/tiled,/area/engineering/engine_waste) +"bJy" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{pixel_x = -38; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bJz" = (/obj/item/stack/cable_coil,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/device/multitool{pixel_x = 5},/obj/item/clothing/gloves/yellow,/obj/structure/table/steel,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bJA" = (/obj/structure/table/standard,/obj/machinery/microwave{pixel_x = -2; pixel_y = 5},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bJB" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/bridge) +"bJC" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bJD" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/ai_status_display{layer = 4; pixel_y = 32},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bJE" = (/obj/structure/closet/radiation,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 28},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bJF" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/alarm{pixel_y = 22},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bJG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bJH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Access"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bJI" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ENG - Hallway Port"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bJJ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bJK" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bJL" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bJM" = (/obj/machinery/cryopod/robot{dir = 4},/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bJN" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor,/area/engineering/drone_fabrication) +"bJO" = (/obj/machinery/computer/cryopod/robot{pixel_y = 30},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ENG - Drone Fabrication"; dir = 2},/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bJP" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bJQ" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/drone_fabrication) +"bJR" = (/obj/item/weapon/storage/toolbox/electrical,/obj/structure/table/steel,/turf/simulated/floor,/area/engineering/drone_fabrication) +"bJS" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bJT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway) +"bJU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bJV" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/tiled/dark,/area/gateway) +"bJW" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway) +"bJX" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/tiled/dark,/area/gateway) +"bJY" = (/turf/simulated/wall/r_wall,/area/server) +"bJZ" = (/obj/structure/sign/warning/server_room,/turf/simulated/wall/r_wall,/area/server) +"bKa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Server Room"; req_access = list(30)},/turf/simulated/floor/tiled/steel_grid,/area/server) +"bKb" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bKc" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bKd" = (/turf/simulated/wall/r_wall,/area/rnd/phoronics) +"bKe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bKf" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Cargo Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/cargo) +"bKg" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Cargo"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bKh" = (/obj/structure/cable/green,/obj/machinery/power/sensor{name = "Powernet Sensor - Cargo Subgrid"; name_tag = "Cargo Subgrid"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bKi" = (/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) +"bKj" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/grounds) +"bKk" = (/obj/effect/floor_decal/snow/floor/edges2{dir = 8},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bKl" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/structure/closet,/obj/item/clothing/suit/storage/explorer/security,/obj/item/clothing/suit/storage/explorer/security,/obj/item/clothing/under/explorer/utility/security,/obj/item/clothing/under/explorer/utility/security,/obj/item/clothing/shoes/boots/winter/explorer,/obj/item/clothing/shoes/boots/winter/explorer,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bKm" = (/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bKn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bKo" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bKp" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bKq" = (/obj/structure/table/woodentable,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bKr" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bKs" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bKt" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/vending/cola,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bKu" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage) +"bKv" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) +"bKw" = (/obj/effect/floor_decal/rust,/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"bKx" = (/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"bKy" = (/obj/structure/closet/crate/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engineering/storage) +"bKz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bKA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/corner/yellow{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bKB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bKC" = (/obj/machinery/door/blast/regular{icon_state = "pdoor1"; id = "EngineVent"; name = "Reactor Vent"; p_open = 0},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"bKD" = (/turf/simulated/wall/r_wall,/area/maintenance/security_starboard) +"bKE" = (/obj/effect/floor_decal/corner/pink{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bKF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/engineering/engine_waste) +"bKG" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/engineering/engine_waste) +"bKH" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 38; pixel_y = 0},/turf/simulated/floor,/area/engineering/engine_waste) +"bKI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bKJ" = (/obj/item/stack/cable_coil,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/lights/mixed,/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bKK" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bKL" = (/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bKM" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bKN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bKO" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{pixel_x = 36; pixel_y = 0},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bKP" = (/obj/machinery/airlock_sensor/airlock_exterior{id_tag = "eng_al_ext_snsr"; layer = 3.3; master_tag = "engine_room_airlock"; pixel_y = -22; req_access = list(10)},/obj/machinery/light_switch{pixel_x = -22; pixel_y = 0},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bKQ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel,/area/engineering/engine_airlock) +"bKR" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/engineering/engine_airlock) +"bKS" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bKT" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "eng_starboard_airlock"; name = "Engineering Starboard Exit Controller"; pixel_x = 25; pixel_y = -25; tag_exterior_door = "eng_starboard_exterior"; tag_interior_door = "eng_starboard_interior"},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bKU" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel,/area/engineering/engine_airlock) +"bKV" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bKW" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bKX" = (/obj/effect/landmark{name = "JoinLateCyborg"},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bKY" = (/obj/machinery/computer/drone_control,/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bKZ" = (/obj/machinery/computer/security/engineering{name = "Drone Monitoring Cameras"; network = list("Engineering")},/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bLa" = (/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bLb" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bLc" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 36; pixel_y = 0},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/engineering/drone_fabrication) +"bLd" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/camera/network/command{c_tag = "Gateway Access"; dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"bLe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway) +"bLf" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/gateway) +"bLg" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/tiled/dark,/area/gateway) +"bLh" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/tiled/dark,/area/gateway) +"bLi" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway) +"bLj" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/server) +"bLk" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/server) +"bLl" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/camera/network/research,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/server) +"bLm" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/obj/effect/floor_decal/techfloor/corner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/server) +"bLn" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/server) +"bLo" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer_1"; use_power = 1; power_setting = 20; set_temperature = 73},/obj/effect/floor_decal/techfloor{dir = 5},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/server) +"bLp" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bLq" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bLr" = (/obj/machinery/sparker{id = "Xenobio"; pixel_x = -25},/obj/machinery/telepad,/turf/simulated/floor/reinforced,/area/rnd/phoronics) +"bLs" = (/turf/simulated/floor/reinforced,/area/rnd/phoronics) +"bLt" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/phoronics) +"bLu" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/shuttle/plating,/area/rnd/phoronics) +"bLv" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/plating,/area/rnd/phoronics) +"bLw" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/shuttle/plating,/area/rnd/phoronics) +"bLx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"bLy" = (/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 8},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bLz" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bLA" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start{name = "Explorer"},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bLB" = (/obj/structure/table/woodentable,/obj/item/device/universal_translator,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bLC" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/yellow,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bLD" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start{name = "Pilot"},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bLE" = (/obj/machinery/camera/network/northern_star{dir = 8},/obj/machinery/photocopier,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bLF" = (/turf/simulated/wall/r_wall,/area/borealis2/outdoors/grounds/traderpad) +"bLG" = (/obj/structure/fans/tiny{name = "Thermal Regulator Vent"},/obj/machinery/door/airlock/glass_external/freezable{req_access = list(48)},/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds/traderpad) +"bLH" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage) +"bLI" = (/obj/effect/floor_decal/rust,/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"bLJ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldwallgen,/turf/simulated/floor,/area/engineering/storage) +"bLK" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldwallgen,/obj/machinery/camera/network/engineering{c_tag = "Engineering Hard Storage Aft"; dir = 1},/turf/simulated/floor,/area/engineering/storage) +"bLL" = (/obj/structure/dispenser,/turf/simulated/floor,/area/engineering/storage) +"bLM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"bLN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bLO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bLP" = (/turf/simulated/wall,/area/maintenance/security_starboard) +"bLQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Door"; opacity = 0},/obj/machinery/door/airlock/maintenance/sec{name = "Security Maintenance"; req_access = list(1,12)},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/security_starboard) +"bLR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/plating,/area/maintenance/security_starboard) +"bLS" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor,/area/maintenance/engineering) +"bLT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/engineering/engine_waste) +"bLU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/engineering/engine_waste) +"bLV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bLW" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bLX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bLY" = (/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bLZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bMa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bMb" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bMc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bMd" = (/obj/machinery/newscaster{pixel_x = 28; pixel_y = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bMe" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/wall,/area/engineering/engine_monitoring) +"bMf" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bMg" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; icon_state = "door_closed"; id_tag = "engine_airlock_exterior"; locked = 0; name = "Engine Airlock Exterior"; req_access = list(11)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bMh" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bMi" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; id_tag = "eng_starboard_interior"; locked = 1; req_access = list(11,24)},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bMj" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/glass_external{frequency = 1379; id_tag = "eng_starboard_interior"; locked = 1; req_access = list(11,24)},/obj/machinery/access_button/airlock_interior{master_tag = "eng_starboard_airlock"; pixel_x = 25; pixel_y = -5},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"bMk" = (/obj/structure/closet/secure_closet/personal,/obj/item/weapon/storage/backpack/dufflebag,/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bMl" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/effect/floor_decal/rust,/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_airlock) +"bMm" = (/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "eng_starboard_exterior"; locked = 1; req_access = list(11,24); req_one_access = null},/turf/simulated/floor/plating/snow/plating,/area/engineering/engine_airlock) +"bMn" = (/turf/simulated/floor,/area/engineering/drone_fabrication) +"bMo" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/decal/remains/robot,/turf/simulated/floor,/area/engineering/drone_fabrication) +"bMp" = (/obj/machinery/drone_fabricator,/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bMq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bMr" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bMs" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor,/area/engineering/drone_fabrication) +"bMt" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) +"bMu" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) +"bMv" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) +"bMw" = (/obj/machinery/computer/rdservercontrol{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/server) +"bMx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/server) +"bMy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/server) +"bMz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/server) +"bMA" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled/techfloor,/area/server) +"bMB" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/server) +"bMC" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bMD" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bME" = (/obj/machinery/lapvend,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bMF" = (/obj/item/device/radio/intercom{layer = 4; name = "Station Intercom (General)"; pixel_y = -27},/obj/machinery/camera/network/research{c_tag = "Research - Miscellaneous Test Chamber"; dir = 1; network = list("Research","Miscellaneous Reseach")},/turf/simulated/floor/reinforced,/area/rnd/phoronics) +"bMG" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/reinforced,/area/rnd/phoronics) +"bMH" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/shuttle/plating,/area/rnd/phoronics) +"bMI" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; icon_state = "map_injector"; id = "n2_in"; use_power = 1},/obj/machinery/telepad_phoronics,/turf/simulated/floor/phoronics,/area/rnd/phoronics) +"bMJ" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 10},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/shuttle/plating,/area/rnd/phoronics) +"bMK" = (/obj/structure/sign/warning/radioactive{desc = "A sign denoting that this elevator shaft is not radiation proof"; name = "\improper NON-RADIATION SHIELDED AREA"; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plating,/area/constructionsite/medical) +"bML" = (/obj/machinery/door/airlock/glass{name = "Locker Room"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bMM" = (/obj/machinery/door/airlock/glass{name = "Locker Room"},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bMN" = (/obj/structure/table/standard,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/item/weapon/soap,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bMO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bMP" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bMQ" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bMR" = (/obj/machinery/light/small,/obj/structure/toilet{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bMS" = (/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/filingcabinet/filingcabinet,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bMT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bMU" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Pilot"},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bMV" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bMW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bMX" = (/obj/structure/table/woodentable,/obj/item/device/camera,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bMY" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bMZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/traderpad) +"bNa" = (/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"bNb" = (/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/traderpad) +"bNc" = (/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bNd" = (/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bNe" = (/turf/simulated/wall,/area/engineering/engine_eva) +"bNf" = (/obj/machinery/door/airlock/maintenance{req_access = list(12)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/security_starboard) +"bNg" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor,/area/engineering/engine_waste) +"bNh" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/machinery/door/window/northright{name = "Engine Waste"; req_one_access = list(10,24)},/turf/simulated/floor,/area/engineering/engine_waste) +"bNi" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_waste) +"bNj" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/security/checkpoint) +"bNk" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/camera/network/engine{c_tag = "ENG - SMES Room"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bNl" = (/obj/structure/table/reinforced,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/camera/network/engine{c_tag = "ENG - Monitoring Room"; dir = 4},/obj/item/weapon/book/manual/supermatter_engine,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bNm" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Station Engineer"},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bNn" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; pixel_x = 0; pixel_y = -3; req_access = list(10)},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; id = "SupermatterPort"; name = "Reactor Blast Doors"; pixel_x = -6; pixel_y = 7; req_access = list(10)},/obj/machinery/button/remote/emitter{desc = "A remote control-switch for the engine emitter."; id = "EngineEmitter"; name = "Engine Emitter"; pixel_x = 6; pixel_y = 7; req_access = list(10)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bNo" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bNp" = (/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_room_airlock"; name = "Engine Room Airlock"; pixel_x = -24; tag_airpump = "engine_airlock_pump"; tag_chamber_sensor = "eng_al_c_snsr"; tag_exterior_door = "engine_airlock_exterior"; tag_exterior_sensor = "eng_al_ext_snsr"; tag_interior_door = "engine_airlock_interior"; tag_interior_sensor = "eng_al_int_snsr"},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bNq" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bNr" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bNs" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/obj/effect/floor_decal/rust,/obj/machinery/power/thermoregulator/cryogaia{dir = 4; pixel_x = -30},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_airlock) +"bNt" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bNu" = (/turf/simulated/wall/titanium,/area/borealis2/outdoors/grounds/entrance) +"bNv" = (/obj/structure/lattice,/obj/structure/grille,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bNw" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/railing{dir = 1},/obj/structure/railing,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bNx" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/drone_fabrication) +"bNy" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; name = "Drone Fabrication"; sortType = "Drone Fabrication"},/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bNz" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor,/area/engineering/drone_fabrication) +"bNA" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bNB" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter -control"; pixel_y = 22; req_access = list(62)},/turf/simulated/floor/tiled,/area/gateway) +"bNC" = (/obj/machinery/light{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/gateway) +"bND" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall,/area/server) +"bNE" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/server) +"bNF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/server) +"bNG" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/server) +"bNH" = (/obj/machinery/r_n_d/server/robotics,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/greengrid,/area/server) +"bNI" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/greengrid,/area/server) +"bNJ" = (/obj/machinery/r_n_d/server/core,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/greengrid,/area/server) +"bNK" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/machinery/camera/network/research{c_tag = "Research Hall Aft"; dir = 4; network = list("Xenobiology")},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bNL" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 1},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 8},/obj/structure/window/phoronreinforced,/turf/simulated/floor/plating,/area/rnd/phoronics) +"bNM" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 1},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 4},/obj/structure/window/phoronreinforced,/turf/simulated/floor/plating,/area/rnd/phoronics) +"bNN" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/machinery/door/airlock/research,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bNO" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/plating,/area/rnd/phoronics) +"bNP" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/plating,/area/rnd/phoronics) +"bNQ" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/plating,/area/rnd/phoronics) +"bNR" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bNS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bNT" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bNU" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bNV" = (/obj/structure/closet/secure_closet/personal,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bNW" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bNX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bNY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/vending/loadout/loadout_misc,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bNZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bOa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bOb" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bOc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bOd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bOe" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bOf" = (/obj/machinery/recharger/wallcharger{pixel_y = -32},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bOg" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/structure/closet,/obj/item/clothing/suit/storage/explorer/medical,/obj/item/clothing/suit/storage/explorer/medical,/obj/item/clothing/under/explorer/utility/medical,/obj/item/clothing/under/explorer/utility/medical,/obj/item/clothing/shoes/boots/winter/explorer,/obj/item/clothing/shoes/boots/winter/explorer,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bOh" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bOi" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bOj" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bOk" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Exploration Briefing Room"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bOl" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bOm" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/door/window/southleft{name = "Jetpack Storage"; req_access = newlist(); req_one_access = list(11,24)},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/yellow/full{icon_state = "corner_white_full"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bOn" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/door/window/southright{name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/machinery/light{dir = 1},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bOo" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{dir = 2; name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bOp" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northright{dir = 2; name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bOq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bOr" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bOs" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/hallway) +"bOt" = (/obj/machinery/door/window/northleft{name = "Engine Waste"; req_one_access = list(10,24)},/turf/simulated/floor,/area/engineering/engine_waste) +"bOu" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_waste) +"bOv" = (/obj/machinery/power/smes/buildable{charge = 1e+007; cur_coils = 4; input_attempt = 1; input_level = 500000; output_level = 500000; RCon_tag = "Engine - Main"},/obj/structure/cable,/turf/simulated/floor/plating,/area/engineering/engine_smes) +"bOw" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/button/remote/airlock{id = "engine_electrical_maintenance"; name = "Door Bolt Control"; pixel_x = 26; pixel_y = 0; req_access = list(10); specialfunctions = 4},/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bOx" = (/obj/machinery/computer/general_air_control/supermatter_core{frequency = 1438; input_tag = "cooling_in"; name = "Engine Cooling Control"; output_tag = "cooling_out"; pressure_setting = 100; sensors = list("engine_sensor" = "Engine Core")},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bOy" = (/obj/machinery/computer/rcon{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bOz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/computer/power_monitor{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bOA" = (/obj/machinery/computer/security/engineering{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bOB" = (/obj/machinery/computer/station_alert{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"bOC" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_waste) +"bOD" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bOE" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "engine_airlock_pump"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bOF" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_airlock) +"bOG" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_airlock) +"bOH" = (/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "eng_starboard_exterior"; locked = 1; req_access = list(11,24)},/obj/machinery/access_button/airlock_exterior{master_tag = "eng_starboard_airlock"; pixel_x = 5; pixel_y = -25},/turf/simulated/floor/plating/snow/plating,/area/engineering/engine_airlock) +"bOI" = (/obj/machinery/door/airlock/glass_external/freezable{req_one_access = list()},/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds/entrance) +"bOJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bOK" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bOL" = (/obj/item/weapon/storage/box/matches,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/deck/cards,/obj/structure/table/steel,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bOM" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/machinery/camera/network/command{c_tag = "Gateway"; dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"bON" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled,/area/gateway) +"bOO" = (/obj/machinery/light_switch{pixel_x = -25},/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/server) +"bOP" = (/obj/effect/floor_decal/techfloor,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor,/area/server) +"bOQ" = (/obj/machinery/door/window/westleft{dir = 8; name = "Server Room"; opacity = 0; req_access = list(30)},/obj/machinery/door/window/eastleft{name = "Server Room"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/server) +"bOR" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/greengrid,/area/server) +"bOS" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/greengrid,/area/server) +"bOT" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/greengrid,/area/server) +"bOU" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bOV" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bOW" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 28},/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bOX" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bOY" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bOZ" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bPa" = (/obj/structure/table/reinforced,/obj/machinery/reagentgrinder,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bPb" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/beakers,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bPc" = (/obj/machinery/computer/phoronics,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bPd" = (/obj/machinery/telepad_phoronics,/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bPe" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"bPf" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bPg" = (/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bPh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bPi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bPj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bPk" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bPl" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bPm" = (/obj/machinery/light/small,/obj/structure/toilet{dir = 8},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bPn" = (/turf/simulated/wall/r_wall,/area/cryogaia/station/excursion_dock) +"bPo" = (/obj/machinery/door/airlock/multi_tile/glass{req_access = list(); req_one_access = list(19,43,67)},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bPp" = (/turf/simulated/wall/r_wall,/area/cryogaia/station/pathfinder_office) +"bPq" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 1; id = "hop_office"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/window/reinforced/polarized/full{id = "pathfinder_office"},/turf/simulated/floor/plating,/area/cryogaia/station/pathfinder_office) +"bPr" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 1; id = "hop_office"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/polarized/full{id = "pathfinder_office"},/turf/simulated/floor/plating,/area/cryogaia/station/pathfinder_office) +"bPs" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 1; id = "hop_office"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/polarized/full{id = "pathfinder_office"},/turf/simulated/floor/plating,/area/cryogaia/station/pathfinder_office) +"bPt" = (/turf/simulated/wall/titanium,/area/cryogaia/station/excursion_dock) +"bPu" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"bPv" = (/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/traderpad) +"bPw" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"bPx" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"bPy" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/effect/floor_decal/corner/yellow/full,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bPz" = (/obj/effect/floor_decal/corner/yellow{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bPA" = (/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bPB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bPC" = (/obj/effect/floor_decal/corner/yellow{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bPD" = (/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3; pixel_y = 0},/obj/structure/table/steel_reinforced,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 36; pixel_y = 0},/obj/effect/floor_decal/corner/yellow/full{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bPE" = (/turf/simulated/wall/r_wall,/area/engineering/engine_room) +"bPF" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; dir = 1; id = "EngineEmitterPortWest"; name = "Engine Room Blast Doors"; pixel_x = 0; pixel_y = -25; req_access = null; req_one_access = list(11,24)},/turf/simulated/floor,/area/engineering/engine_waste) +"bPG" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/door/blast/radproof{id = "EngineEmitterPortWest"; name = "Engine Waste Handling Access"},/turf/simulated/floor,/area/engineering/engine_waste) +"bPH" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/radproof/open{dir = 1; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bPI" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full{icon_state = "fwindow"; dir = 9},/obj/machinery/door/blast/radproof/open{dir = 4; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"},/turf/simulated/floor/plating,/area/engineering/engine_monitoring) +"bPJ" = (/obj/machinery/airlock_sensor{frequency = 1379; id_tag = "eng_al_c_snsr"; pixel_x = -25; pixel_y = 0},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "engine_airlock_pump"},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEast"; name = "Engine Room Blast Doors"; pixel_x = 0; pixel_y = -25; req_access = null; req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bPK" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/door/blast/radproof{id = "EngineEmitterPortWest"; name = "Engine Waste Handling Access"},/turf/simulated/floor,/area/engineering/engine_waste) +"bPL" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"bPM" = (/turf/simulated/wall/r_lead,/area/borealis2/outdoors/grounds) +"bPN" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/portables_connector{dir = 2},/turf/simulated/floor,/area/engineering/engine_room) +"bPO" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 6},/turf/simulated/floor,/area/engineering/engine_room) +"bPP" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor,/area/engineering/drone_fabrication) +"bPQ" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/computer/drone_control,/turf/simulated/floor,/area/engineering/drone_fabrication) +"bPR" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bPS" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bPT" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/engineering/drone_fabrication) +"bPU" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/gateway) +"bPV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/gateway) +"bPW" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/gateway) +"bPX" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/orange{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bPY" = (/obj/machinery/requests_console/preset/research,/turf/simulated/wall/r_wall,/area/rnd/phoronics) +"bPZ" = (/obj/machinery/computer/telescience{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bQa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bQb" = (/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bQc" = (/obj/item/weapon/stool/padded{pixel_y = 5},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bQd" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/chemical_dispenser/full{density = 1},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bQe" = (/obj/machinery/atmospherics/valve,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bQf" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bQg" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bQh" = (/obj/item/weapon/stool/padded,/obj/effect/decal/cleanable/ash,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bQi" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bQj" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bQk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bQl" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bQm" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bQn" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bQo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bQp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bQq" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 22},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bQr" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/cryogaia/station/excursion_dock) +"bQs" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/cryogaia/station/excursion_dock) +"bQt" = (/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bQu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bQv" = (/obj/structure/filingcabinet/filingcabinet,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bQw" = (/obj/machinery/photocopier,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bQx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bQy" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bQz" = (/obj/structure/closet/secure_closet/pathfinder,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bQA" = (/obj/effect/floor_decal/borderfloorblack/corner,/obj/effect/floor_decal/industrial/danger/corner,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bQB" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/machinery/camera/network/exploration{c_tag = "Exploration Meeting Room"},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bQC" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bQD" = (/obj/effect/floor_decal/borderfloorblack/corner{icon_state = "borderfloorcorner_black"; dir = 8},/obj/effect/floor_decal/industrial/danger/corner{icon_state = "dangercorner"; dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bQE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"bQF" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/borealis2/outdoors/grounds/traderpad) +"bQG" = (/obj/effect/floor_decal/corner/yellow{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bQH" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bQI" = (/obj/effect/floor_decal/corner/yellow,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bQJ" = (/obj/structure/dispenser{phorontanks = 0},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/machinery/camera/network/engineering{c_tag = "ENG - EVA"; dir = 1},/obj/effect/floor_decal/corner/yellow/full{dir = 4; icon_state = "corner_white_full"},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bQK" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; icon_state = "door_closed"; id_tag = "engine_airlock_interior"; locked = 0; name = "Engine Airlock Interior"; req_access = list(11)},/obj/machinery/door/blast/radproof{id = "EngineEast"; name = "Engine Airlock"},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"bQL" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bQM" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bQN" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest"; name = "Engine Room Blast Doors"; pixel_x = 0; pixel_y = 25; req_access = null; req_one_access = list(11,24)},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQO" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQP" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/machinery/alarm/nobreach{dir = 2; pixel_y = 22},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQQ" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable{charge = 2e+006; input_attempt = 1; input_level = 100000; output_level = 200000; RCon_tag = "Engine - Core"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQR" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQS" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQT" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQU" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQV" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Power"; name_tag = "Engine Power"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQW" = (/obj/machinery/light_switch{pixel_x = 12; pixel_y = 25},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/super/critical{dir = 1; is_critical = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQX" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bQY" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bQZ" = (/obj/machinery/airlock_sensor/airlock_interior{id_tag = "eng_al_int_snsr"; master_tag = "engine_room_airlock"; pixel_y = 22; req_access = list(10)},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bRa" = (/turf/simulated/floor,/area/engineering/engine_room) +"bRb" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/frame,/turf/simulated/floor,/area/engineering/engine_room) +"bRc" = (/obj/machinery/atmospherics/binary/pump/high_power,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bRd" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/visible/black,/turf/simulated/floor,/area/engineering/engine_room) +"bRe" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow,/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Output"; name_tag = "Engine Output"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bRf" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bRg" = (/obj/machinery/door/airlock/engineering{name = "Engineering Drone Fabrication"; req_one_access = list(11,24)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/drone_fabrication) +"bRh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/gateway) +"bRi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"bRj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"bRk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/gateway) +"bRl" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled,/area/gateway) +"bRm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bRn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bRo" = (/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/research) +"bRp" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atm{pixel_x = -30},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bRq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/substation/research) +"bRr" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Research Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/research) +"bRs" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/research) +"bRt" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/orange{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bRu" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/phoronics) +"bRv" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "misclab"; name = "Test Chamber Blast Doors"; pixel_x = 6; pixel_y = 6; req_access = list(47)},/obj/machinery/button/ignition{id = "Xenobio"; pixel_x = -6; pixel_y = 4},/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bRw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bRx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bRy" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/machinery/bunsen_burner,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bRz" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/solution_trays,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bRA" = (/obj/machinery/phoroanalyzer,/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bRB" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/rnd/phoronics) +"bRC" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bRD" = (/obj/structure/table/standard,/obj/item/weapon/tape_roll,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bRE" = (/obj/structure/table/standard,/obj/item/weapon/storage/laundry_basket,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bRF" = (/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bRG" = (/obj/structure/table/standard,/obj/item/clothing/head/ushanka,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bRH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bRI" = (/obj/machinery/status_display{pixel_x = 32},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bRJ" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bRK" = (/obj/item/latexballon,/turf/simulated/floor,/area/crew_quarters/locker/locker_toilet) +"bRL" = (/obj/structure/railing{dir = 2; flags = null},/turf/simulated/open,/area/cryogaia/station/excursion_dock) +"bRM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"bRN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/research{name = "Pathfinder's Office"; req_access = list(62); req_one_access = list(62)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bRO" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bRP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bRQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bRR" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bRS" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Pathfinder"},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bRT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/camera/network/exploration{c_tag = "Exploration Meeting Room"; dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"bRU" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bRV" = (/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/shuttle/excursion/cryogaia) +"bRW" = (/turf/simulated/floor/reinforced,/area/cryogaia/station/excursion_dock) +"bRX" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "shuttle blast"; name = "Shuttle Blast Doors"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/shuttle/excursion/cryogaia) +"bRY" = (/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bRZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"bSa" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/traderpad) +"bSb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/traderpad) +"bSc" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "trade_shuttle_dock_airlock"; pixel_x = 28; pixel_y = 0; req_one_access = list(13); tag_airpump = "trade_shuttle_dock_pump"; tag_chamber_sensor = "trade_shuttle_dock_sensor"; tag_exterior_door = "trade_shuttle_dock_outer"; tag_interior_door = "trade_shuttle_dock_inner"},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/traderpad) +"bSd" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/suit/space/void/engineering,/obj/machinery/door/window/northleft{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/head/helmet/space/void/engineering,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/obj/effect/floor_decal/corner/yellow/full,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bSe" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/suit/space/void/engineering,/obj/machinery/door/window/northright{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/head/helmet/space/void/engineering,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bSf" = (/obj/machinery/suit_cycler/engineering,/obj/effect/floor_decal/corner/yellow{dir = 10},/obj/machinery/camera/network/engineering{c_tag = "Engineering EVA Storage"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bSg" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/suit/space/void/engineering,/obj/machinery/door/window/northleft{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/head/helmet/space/void/engineering,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bSh" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/suit/space/void/engineering,/obj/machinery/door/window/northright{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/head/helmet/space/void/engineering,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/floor_decal/corner/yellow/full{dir = 4; icon_state = "corner_white_full"},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bSi" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor,/area/engineering/engine_room) +"bSj" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 6},/turf/simulated/floor,/area/engineering/engine_room) +"bSk" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room) +"bSl" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bSm" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bSn" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bSo" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bSp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bSq" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bSr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bSs" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bSt" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bSu" = (/turf/simulated/floor/plating,/area/engineering/engine_room) +"bSv" = (/obj/structure/lattice,/obj/structure/grille,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bSw" = (/obj/structure/lattice,/obj/structure/grille/broken,/obj/effect/landmark{name = "carpspawn"},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bSx" = (/turf/simulated/wall,/area/maintenance/research_port) +"bSy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bSz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bSA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bSB" = (/obj/machinery/floodlight,/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bSC" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bSD" = (/turf/simulated/floor/plating,/area/maintenance/research_port) +"bSE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/substation/research) +"bSF" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Research"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/research) +"bSG" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/cable,/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor,/area/maintenance/substation/research) +"bSH" = (/turf/simulated/wall,/area/maintenance/substation/research) +"bSI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bSJ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bSK" = (/obj/machinery/door/airlock/glass_research{name = "Telescience and Phorochemistry"; req_access = list(7); req_one_access = list(7)},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bSL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bSM" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bSN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bSO" = (/obj/structure/table/standard,/obj/structure/table/standard,/obj/item/stack/cable_coil,/obj/item/device/multitool,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bSP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/rnd/phoronics) +"bSQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/power/grid_checker,/obj/structure/cable,/turf/simulated/floor/tiled,/area/engineering/engine_smes) +"bSR" = (/obj/structure/table/standard,/obj/item/device/text_to_speech,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bSS" = (/obj/structure/table/standard,/obj/item/weapon/coin/silver,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bST" = (/obj/structure/table/standard,/obj/item/clothing/head/soft/grey{pixel_x = -2; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bSU" = (/obj/structure/table/standard,/obj/item/clothing/head/fedora,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bSV" = (/obj/machinery/lapvend,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bSW" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower,/obj/machinery/alarm/nobreach{dir = 2; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bSX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bSY" = (/obj/machinery/shower{dir = 8; icon_state = "shower"; pixel_x = -5; pixel_y = 0},/obj/structure/curtain/open/shower,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bSZ" = (/obj/structure/bed/chair,/obj/random/contraband,/turf/simulated/floor,/area/crew_quarters/locker/locker_toilet) +"bTa" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bTb" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bTc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"bTd" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bTe" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/industrial/danger,/obj/machinery/camera/network/exploration{c_tag = "Exploration Hangar Fore"},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bTf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bTg" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bTh" = (/obj/structure/table/woodentable,/obj/machinery/button/windowtint{id = "pathfinder_office"; pixel_x = 26; pixel_y = -26},/obj/item/device/binoculars,/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bTi" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/exploration,/obj/item/clothing/head/helmet/space/void/exploration,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/pathfinder_office) +"bTj" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 2},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bTk" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bTl" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner/lightblue,/area/shuttle/excursion/cryogaia) +"bTm" = (/obj/structure/flight_left,/turf/simulated/floor/tiled,/area/shuttle/excursion/cryogaia) +"bTn" = (/obj/machinery/computer/shuttle_control/web/excursion{icon = 'icons/obj/computer.dmi'; my_doors = list("expshuttle_door_Ro" = "Airlock Outer", "expshuttle_door_Ri" = "Airlock Inner", "expshuttle_door_cargo" = "Cargo Hatch"); my_sensors = list("shuttlesens_exp" = "Exterior Environment", "shuttlesens_exp_int" = "Cargo Area", "shuttlesens_exp_psg" = "Passenger Area")},/turf/simulated/floor/tiled,/area/shuttle/excursion/cryogaia) +"bTo" = (/obj/structure/flight_right,/turf/simulated/floor/tiled,/area/shuttle/excursion/cryogaia) +"bTp" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -5},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bTq" = (/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bTr" = (/obj/structure/fence{dir = 4},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bTs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"bTt" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 1 End"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/traderpad) +"bTu" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/traderpad) +"bTv" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "trade_shuttle_dock_sensor"; pixel_x = 30; pixel_y = 8},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/traderpad) +"bTw" = (/obj/structure/fence/door,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bTx" = (/obj/structure/fence/corner{dir = 4},/obj/structure/fence/corner,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bTy" = (/turf/simulated/wall/r_wall,/area/engineering/engine_eva) +"bTz" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor,/area/engineering/engine_room) +"bTA" = (/obj/machinery/atmospherics/trinary/atmos_filter/m_filter,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bTB" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/turf/simulated/floor,/area/engineering/engine_room) +"bTC" = (/obj/machinery/atmospherics/trinary/atmos_filter,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bTD" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 5},/turf/simulated/floor,/area/engineering/engine_room) +"bTE" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/turf/simulated/floor,/area/engineering/engine_room) +"bTF" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bTG" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bTH" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bTI" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{autoclose = 1; dir = 2; id_tag = ""; name = "Medical Diagnostics Center"; req_access = list(5); req_one_access = list(5)},/turf/simulated/floor/tiled,/area/medical/cryo) +"bTJ" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) +"bTK" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"bTL" = (/obj/machinery/atmospherics/valve/digital{dir = 4; name = "Emergency Cooling Valve 1"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bTM" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bTN" = (/obj/effect/decal/cleanable/generic,/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor,/area/engineering/engine_room) +"bTO" = (/obj/effect/decal/cleanable/generic,/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) +"bTP" = (/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bTQ" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bTR" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bTS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/research_port) +"bTT" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/gateway) +"bTU" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled,/area/gateway) +"bTV" = (/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled,/area/gateway) +"bTW" = (/obj/machinery/light,/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/turf/simulated/floor/tiled,/area/gateway) +"bTX" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller,/turf/simulated/floor/tiled,/area/gateway) +"bTY" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled,/area/gateway) +"bTZ" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled,/area/gateway) +"bUa" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/research) +"bUb" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Research Subgrid"; name_tag = "Research Subgrid"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor,/area/maintenance/substation/research) +"bUc" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28; req_access = list(67)},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/research) +"bUd" = (/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/research) +"bUe" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bUf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bUg" = (/obj/machinery/door/airlock/glass_research{name = "Telescience and Phorochemistry"; req_access = list(7); req_one_access = list(7)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bUh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bUi" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bUj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bUk" = (/obj/machinery/door/window/westleft{name = "Phorochemistry"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bUl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bUm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bUn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bUo" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bUp" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/rnd/phoronics) +"bUq" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bUr" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bUs" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bUt" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bUu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust/part_rusted3,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bUv" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bUw" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bUx" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bUy" = (/obj/machinery/shower{dir = 8; icon_state = "shower"; pixel_x = -5; pixel_y = 0},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/locker/locker_toilet) +"bUz" = (/obj/item/weapon/handcuffs/cable/pink{desc = "Looks fluffy and comfy. Could be used to tie something up."; name = "Fuzzy Cuffs"},/obj/item/latexballon,/turf/simulated/floor,/area/crew_quarters/locker/locker_toilet) +"bUA" = (/obj/structure/snowman/borg,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bUB" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/wall/r_wall,/area/cryogaia/station/excursion_dock) +"bUC" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/wall/r_wall,/area/cryogaia/station/excursion_dock) +"bUD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/noticeboard/airlock{pixel_x = -30},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"bUE" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/cryogaia/station/pathfinder_office) +"bUF" = (/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science,/obj/item/weapon/ice_pick,/obj/item/weapon/ice_pick,/obj/item/weapon/ice_pick,/obj/structure/noticeboard/exploration{pixel_y = 30},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bUG" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/obj/structure/window/reinforced/polarized,/obj/structure/window/reinforced/polarized/full{id = "pathfinder_office"},/turf/simulated/floor/plating,/area/cryogaia/station/pathfinder_office) +"bUH" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/polarized/full{id = "pathfinder_office"},/turf/simulated/floor/plating,/area/cryogaia/station/pathfinder_office) +"bUI" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/polarized/full{id = "pathfinder_office"},/turf/simulated/floor/plating,/area/cryogaia/station/pathfinder_office) +"bUJ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "shuttle blast"; name = "Shuttle Blast Doors"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/shuttle/excursion/cryogaia) +"bUK" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 5},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bUL" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bUM" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/machinery/portable_atmospherics/powered/pump,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bUN" = (/obj/structure/table/rack,/obj/item/weapon/storage/belt/utility/full,/obj/item/clothing/head/pilot,/obj/item/clothing/head/pilot,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bUO" = (/turf/simulated/shuttle/wall/voidcraft,/area/shuttle/excursion/cryogaia) +"bUP" = (/obj/structure/bed/chair/comfy/blue{icon_state = "comfychair_preview"; dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bUQ" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "shuttle blast"; name = "Shuttle Blast Doors"; pixel_x = 26; pixel_y = 39; req_access = list(67)},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bUR" = (/obj/structure/bed/chair/comfy/blue{icon_state = "comfychair_preview"; dir = 1},/obj/item/device/radio/intercom{pixel_y = -24},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 6; pixel_y = 32},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bUS" = (/obj/machinery/cooker/grill{dir = 2},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bUT" = (/obj/structure/closet/walllocker/emerglocker/north,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bUU" = (/obj/structure/table/bench/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bUV" = (/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bUW" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "shuttle blast"; name = "Shuttle Blast Doors"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/shuttle/excursion/cryogaia) +"bUX" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds/entrance) +"bUY" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bUZ" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"bVa" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"bVb" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/turf/simulated/floor/tiled/dark,/area/borealis2/outdoors/grounds/traderpad) +"bVc" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "exterior access button"; pixel_x = 28; pixel_y = -6; req_access = list(13)},/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/turf/simulated/floor/tiled/dark,/area/borealis2/outdoors/grounds/traderpad) +"bVd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/traderpad) +"bVe" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVf" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVg" = (/obj/machinery/door/airlock/glass_engineering{name = "Engine Gas Storage"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVh" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/turf/simulated/floor,/area/engineering/engine_room) +"bVi" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bVj" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/turf/simulated/floor,/area/engineering/engine_room) +"bVk" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVl" = (/obj/machinery/power/emitter{anchored = 1; id = "EngineEmitter"; state = 2},/obj/structure/cable/cyan,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVm" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVn" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVo" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVp" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVq" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVr" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bVs" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/medical/sleeper) +"bVt" = (/obj/structure/table/glass,/obj/random/medical,/obj/random/medical,/obj/item/device/glasses_kit,/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"bVu" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_lead,/area/borealis2/outdoors/grounds) +"bVv" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bVw" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bVx" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/orange,/turf/simulated/floor/tiled/white,/area/rnd/research) +"bVy" = (/obj/structure/closet/crate{icon_state = "crateopen"; name = "Grenade Crate"; opened = 1},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/rnd/phoronics) +"bVz" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bVA" = (/obj/machinery/washing_machine,/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bVB" = (/obj/machinery/status_display{pixel_y = -32},/obj/machinery/disposal,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bVC" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/camera/network/research{c_tag = "Research Phorochemistry"; dir = 1; network = list("Research","Miscellaneous Reseach")},/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bVD" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/utility/full,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/fountain,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bVE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"bVF" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"bVG" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bVH" = (/turf/simulated/wall,/area/crew_quarters/locker) +"bVI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/cryogaia/station/excursion_dock) +"bVJ" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"bVK" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"bVL" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"bVM" = (/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/science,/obj/item/weapon/ice_pick,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bVN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"bVO" = (/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bVP" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bVQ" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bVR" = (/obj/structure/handrail{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bVS" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bVT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/bridge) +"bVU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bVV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bVW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bVX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/voidcraft{req_access = list(); req_one_access = list(19,43,67)},/turf/simulated/floor/tiled/steel_ridged,/area/shuttle/excursion/cryogaia) +"bVY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bVZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/handrail{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bWa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bWb" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bWc" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/traderpad) +"bWd" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/traderpad) +"bWe" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor,/area/engineering/engine_room) +"bWf" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor,/area/engineering/engine_room) +"bWg" = (/obj/machinery/atmospherics/pipe/cap/visible,/turf/simulated/floor,/area/engineering/engine_room) +"bWh" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWi" = (/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWj" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWk" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWl" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWm" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; pixel_x = 5; pixel_y = -25; req_access = list(10)},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; id = "SupermatterPort"; name = "Reactor Blast Doors"; pixel_x = -5; pixel_y = -25; req_access = list(10)},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWn" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWo" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWp" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWq" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/portables_connector{dir = 2},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEast"; name = "Engine Room Blast Doors"; pixel_x = 0; pixel_y = 25; req_access = null; req_one_access = list(11,24)},/turf/simulated/floor,/area/engineering/engine_room) +"bWr" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWs" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bWt" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bWu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bWv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bWw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bWx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bWy" = (/obj/machinery/door/airlock/maintenance/rnd{name = "Science Maintenance"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bWz" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"bWA" = (/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/radioactive{desc = "A sign denoting that this elevator shaft is not radiation proof"; name = "\improper NON-RADIATION SHIELDED AREA"; pixel_x = -30},/turf/simulated/floor/plating,/area/borealis2/elevator/scicargo) +"bWB" = (/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bWC" = (/obj/effect/floor_decal/rust/mono_rusted3,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bWD" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bWE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/rack/shelf,/obj/item/weapon/shovel,/obj/item/weapon/ice_pick,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bWF" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/crew_quarters/locker) +"bWG" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/locker) +"bWH" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "Locker_exit_control"; name = "Locker Room Exit Controller"; pixel_x = 0; pixel_y = 25; tag_exterior_door = "locker_exit_exterior"; tag_interior_door = "locker_exit_interior"},/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 5},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/locker) +"bWI" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "Exploration_exit_exterior"; locked = 1},/obj/machinery/access_button/airlock_exterior{master_tag = "Exploration_exit_control"; pixel_x = -6; pixel_y = 25},/turf/simulated/floor/plating/snow/plating,/area/cryogaia/station/excursion_dock) +"bWJ" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"bWK" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"bWL" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external/public{frequency = 1379; id_tag = "Exploration_exit_interior"; locked = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/access_button/airlock_interior{master_tag = "Exploration_exit_control"; pixel_x = -6; pixel_y = 25},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bWM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"bWN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bWO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/space) +"bWP" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bWQ" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"bWR" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/shuttle/excursion/cryogaia) +"bWS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"bWT" = (/obj/structure/sign/department/bridge,/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/shuttle/excursion/cryogaia) +"bWU" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/glass_external/public{frequency = 1379; id_tag = "locker_exit_interior"; locked = 1},/obj/machinery/access_button/airlock_interior{master_tag = "Locker_exit_control"; pixel_x = -5; pixel_y = 25},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bWV" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/shuttle/excursion/cryogaia) +"bWW" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/shuttle/excursion/cryogaia) +"bWX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"bWY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/microwave,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bWZ" = (/obj/structure/closet/crate/freezer/rations,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu10,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bXa" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"bXb" = (/obj/effect/landmark{name = "carpspawn"},/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"bXc" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor,/area/engineering/engine_room) +"bXd" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/engine_room) +"bXe" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) +"bXf" = (/obj/machinery/atmospherics/pipe/manifold/visible/black,/turf/simulated/floor,/area/engineering/engine_room) +"bXg" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/turf/simulated/floor,/area/engineering/engine_room) +"bXh" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room) +"bXi" = (/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Core West"; dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bXj" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; req_access = list(11)},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bXk" = (/obj/structure/grille,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 4},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 1},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 8},/obj/machinery/door/blast/regular{dir = 8; id = "SupermatterPort"; layer = 3.3; name = "Reactor Blast Door"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bXl" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; req_access = list(11)},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bXm" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/obj/machinery/meter,/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Core East"; dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bXn" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bXo" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bXp" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bXq" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bXr" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bXs" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bXt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 2; health = 1e+006},/turf/simulated/floor/plating,/area/maintenance/research_port) +"bXu" = (/turf/simulated/wall/r_wall,/area/rnd/research/testingrange) +"bXv" = (/obj/machinery/door/airlock/maintenance/rnd{name = "Science Maintenance"; req_access = list(7)},/turf/simulated/floor/plating,/area/rnd/research/testingrange) +"bXw" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/camera/network/research{c_tag = "Research Hall Aft"; dir = 4; network = list("Research","Toxins Test Area")},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"bXx" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"bXy" = (/turf/simulated/wall,/area/rnd/hallway) +"bXz" = (/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/research_port) +"bXA" = (/obj/structure/table/rack,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/research_starboard) +"bXB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/research_starboard) +"bXC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research_starboard) +"bXD" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research_starboard) +"bXE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research_starboard) +"bXF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"bXG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bXH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bXI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bXJ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bXK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bXL" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bXM" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bXN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/engineering{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/substation/research) +"bXO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/locker) +"bXP" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/locker) +"bXQ" = (/obj/machinery/door/airlock/glass_external/freezable{frequency = 1379; id_tag = "locker_exit_exterior"; locked = 1},/obj/machinery/access_button/airlock_exterior{master_tag = "Locker_exit_control"; pixel_x = 5; pixel_y = 25},/turf/simulated/floor/plating/snow/plating,/area/crew_quarters/locker) +"bXR" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/traderpad) +"bXS" = (/turf/simulated/floor/plating/snow/plating/cryogaia,/area/shuttle/trade/station) +"bXT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/plating,/area/cryogaia/station/excursion_dock) +"bXU" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "Exploration_exit_control"; name = "Exploration Exit Controller"; pixel_x = -25; pixel_y = -25; tag_exterior_door = "Exploration_exit_exterior"; tag_interior_door = "Exploration_exit_interior"},/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"bXV" = (/obj/structure/cable/green,/obj/machinery/power/thermoregulator/cryogaia{dir = 1; pixel_y = -30},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"bXW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"bXX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bXY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bXZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bYa" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bYb" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/turf/simulated/floor/reinforced,/area/shuttle/excursion/cryogaia) +"bYc" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/shuttle/wall/voidcraft,/area/shuttle/excursion/cryogaia) +"bYd" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/turf/simulated/floor/tiled/dark,/area/shuttle/excursion/cryogaia) +"bYe" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/handrail{dir = 8},/turf/simulated/floor/tiled/dark,/area/shuttle/excursion/cryogaia) +"bYf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/handrail{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"bYg" = (/obj/structure/bed,/obj/machinery/iv_drip,/obj/structure/curtain/open/privacy,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bYh" = (/obj/structure/sign/greencross{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bYi" = (/obj/machinery/button/remote/blast_door{id = "EngineVent"; name = "Reactor Ventillatory Control"; pixel_x = -25; pixel_y = 0; req_access = list(10)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor,/area/engineering/engine_room) +"bYj" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor,/area/engineering/engine_room) +"bYk" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bYl" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bYm" = (/obj/structure/grille,/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 4},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 1},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 8},/obj/machinery/door/blast/regular{dir = 1; id = "SupermatterPort"; layer = 3.3; name = "Reactor Blast Door"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bYn" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1438; icon_state = "map_injector"; id = "cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) +"bYo" = (/obj/machinery/air_sensor{frequency = 1438; id_tag = "engine_sensor"; output = 63},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) +"bYp" = (/obj/machinery/atmospherics/unary/vent_pump/engine{dir = 1; external_pressure_bound = 100; external_pressure_bound_default = 0; frequency = 1438; icon_state = "map_vent_in"; id_tag = "cooling_out"; initialize_directions = 1; use_power = 1; pressure_checks = 1; pressure_checks_default = 1; pump_direction = 0},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) +"bYq" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bYr" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{icon_state = "intact"; dir = 5},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bYs" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bYt" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bYu" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bYv" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/paleblue{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bYw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bYx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bYy" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bYz" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bYA" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bYB" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bYC" = (/obj/machinery/light{dir = 4},/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bYD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"bYE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/sortjunction/wildcard{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"bYF" = (/obj/machinery/door/airlock/maintenance/rnd{name = "Science Maintenance"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/rnd/hallway) +"bYG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research_starboard) +"bYH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/research_starboard) +"bYI" = (/turf/simulated/wall,/area/maintenance/research_starboard) +"bYJ" = (/obj/structure/closet/wardrobe/suit,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bYK" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bYL" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bYM" = (/obj/machinery/vending/cola,/obj/machinery/computer/timeclock/premade/south,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bYN" = (/obj/structure/closet/wardrobe/xenos,/obj/item/clothing/suit/tajaran/furs,/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bYO" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/obj/item/clothing/shoes/boots/winter/climbing,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bYP" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/rack/shelf,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit,/obj/item/clothing/shoes/boots/winter/climbing,/obj/structure/noticeboard/airlock{pixel_y = -30},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"bYQ" = (/obj/machinery/light/small,/obj/machinery/power/thermoregulator/cryogaia{dir = 1; pixel_y = -30},/obj/structure/cable,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/locker) +"bYR" = (/obj/machinery/camera/network/research_outpost{c_tag = "OPR - Expedition Airlock"; dir = 1},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/locker) +"bYS" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges3{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"bYT" = (/turf/simulated/wall/r_wall,/area/cryogaia/station/explorer_prep) +"bYU" = (/obj/machinery/door/airlock/multi_tile/glass{req_access = list(); req_one_access = list(19,43,67)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"bYV" = (/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"bYW" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bYX" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bYY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"bYZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"bZa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/shuttle/excursion/cryogaia) +"bZb" = (/obj/machinery/computer/crew{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/dark,/area/shuttle/excursion/cryogaia) +"bZc" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/dark,/area/shuttle/excursion/cryogaia) +"bZd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/voidcraft,/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"bZe" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"bZf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bZg" = (/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = 32; pixel_y = 0; req_access = list(); req_one_access = list()},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bZh" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide/engine_setup,/turf/simulated/floor/plating,/area/engineering/engine_room) +"bZi" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bZj" = (/obj/machinery/atmospherics/unary/heat_exchanger,/turf/simulated/floor,/area/engineering/engine_room) +"bZk" = (/obj/structure/grille,/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 4},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 8},/obj/machinery/door/blast/regular{dir = 1; id = "SupermatterPort"; layer = 3.3; name = "Reactor Blast Door"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bZl" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) +"bZm" = (/obj/machinery/power/supermatter{layer = 4},/obj/machinery/mass_driver{id = "enginecore"},/turf/simulated/floor/greengrid/nitrogen,/area/engineering/engine_room) +"bZn" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) +"bZo" = (/obj/structure/cable/yellow,/obj/machinery/power/generator/oldteg{anchored = 1; dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bZp" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bZq" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bZr" = (/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZs" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/target_stake,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZu" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZy" = (/obj/machinery/door/window/northright{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZz" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZB" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/machinery/door/airlock/glass_research{name = "Weapons Testing Range"; req_access = list(7); req_one_access = list(7)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"bZC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"bZD" = (/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"bZE" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/research_starboard) +"bZF" = (/turf/simulated/wall,/area/teleporter) +"bZG" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/teleporter) +"bZH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass{name = "Public Teleporter Access"},/turf/simulated/floor/tiled,/area/teleporter) +"bZI" = (/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"bZJ" = (/obj/machinery/photocopier,/turf/simulated/floor/tiled,/area/engineering/hallway) +"bZK" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"bZL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monofloor{dir = 1},/area/cryogaia/station/explorer_prep) +"bZM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/camera/network/exploration{c_tag = "Pathfinders Office"; dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"bZN" = (/obj/structure/closet/secure_closet/sar,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"bZO" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"bZP" = (/obj/machinery/computer/security/exploration{dir = 4},/turf/simulated/floor/tiled/dark,/area/shuttle/excursion/cryogaia) +"bZQ" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/button/remote/blast_door{dir = 8; id = "shuttle blast"; name = "Shuttle Blast Doors"; pixel_x = 26; pixel_y = 9; req_access = list(67)},/turf/simulated/floor/tiled/dark,/area/shuttle/excursion/cryogaia) +"bZR" = (/obj/structure/sign/greencross{pixel_x = -32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"bZS" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/structure/closet/secure_closet/medical_wall{layer = 5; pixel_y = -32; req_access = list(); req_one_access = list()},/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/brute,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/brute,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/burn,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/burn,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/syringe/inaprovaline,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bZT" = (/obj/machinery/sleeper{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bZU" = (/obj/machinery/sleep_console,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"bZV" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bZW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"bZX" = (/obj/structure/grille,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 4},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 8},/obj/machinery/door/blast/regular{dir = 1; id = "SupermatterPort"; layer = 3.3; name = "Reactor Blast Door"},/turf/simulated/floor/plating,/area/engineering/engine_room) +"bZY" = (/obj/effect/floor_decal/industrial/warning/cee,/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) +"bZZ" = (/turf/simulated/floor/greengrid/nitrogen,/area/engineering/engine_room) +"caa" = (/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Core South"; dir = 1},/obj/effect/floor_decal/industrial/warning/cee,/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) +"cab" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{icon_state = "intact"; dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) +"cac" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) +"cad" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"cae" = (/obj/machinery/atmospherics/valve/digital{dir = 4; name = "Emergency Cooling Valve 2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"caf" = (/obj/machinery/atmospherics/pipe/manifold/visible/black,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"cag" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) +"cah" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"cai" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"caj" = (/obj/structure/table/reinforced,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/goggles,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"cak" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"cal" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"cam" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"can" = (/obj/structure/table/standard,/obj/item/weapon/storage/fancy/cigarettes{pixel_y = 2},/obj/item/weapon/deck/cards,/obj/item/weapon/book/codex,/obj/machinery/atm{pixel_y = 30},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"},/obj/effect/floor_decal/corner_steel_grid,/turf/simulated/floor/tiled,/area/teleporter) +"cao" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/teleporter) +"cap" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/teleporter) +"caq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/teleporter) +"car" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/teleporter) +"cas" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/teleporter) +"cat" = (/obj/structure/snowman,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"cau" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"cav" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monofloor,/area/cryogaia/station/explorer_prep) +"caw" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"cax" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"cay" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"caz" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/exploration,/obj/item/clothing/head/helmet/space/void/exploration,/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"caA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"caB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"caC" = (/obj/machinery/shuttle_sensor{dir = 2; id_tag = "shuttlesens_exp_psg"},/turf/simulated/shuttle/wall/voidcraft,/area/shuttle/excursion/cryogaia) +"caD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"caE" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/closet/secure_closet/guncabinet{name = "expedition cabinet"; req_one_access = list(43,2)},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"caF" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/medical/surgery) +"caG" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room) +"caH" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 2; frequency = 1380; id_tag = "expshuttle_vent"},/obj/structure/handrail,/obj/machinery/embedded_controller/radio/airlock/docking_port{cycle_to_external_air = 1; frequency = 1380; id_tag = "expshuttle_docker"; pixel_y = 26; req_one_access = list(19,43,67); tag_airpump = "expshuttle_vent"; tag_chamber_sensor = "expshuttle_sensor"; tag_exterior_door = "expshuttle_door_Ro"; tag_exterior_sensor = "expshuttle_exterior_sensor"; tag_interior_door = "expshuttle_door_Ri"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"caI" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"caJ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"caK" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"caL" = (/obj/machinery/door/window/northright{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"caM" = (/obj/machinery/recharger/wallcharger{pixel_x = 28; pixel_y = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"caN" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"caO" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"caP" = (/obj/structure/closet/wardrobe/xenos,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/turf/simulated/floor/tiled,/area/teleporter) +"caQ" = (/obj/effect/floor_decal/techfloor/orange{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"caR" = (/obj/effect/landmark{name = "JoinLateGateway"},/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"caS" = (/obj/effect/floor_decal/techfloor/orange{dir = 5},/obj/machinery/computer/cryopod/gateway{pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"caT" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"caU" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/backpack/parachute{pixel_x = -4; pixel_y = 4},/obj/item/weapon/storage/backpack/parachute{pixel_x = 5; pixel_y = 4},/obj/item/weapon/storage/backpack/parachute{pixel_x = -4; pixel_y = -6},/obj/item/weapon/storage/backpack/parachute{pixel_x = 5; pixel_y = -6},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"caV" = (/obj/structure/table/rack/shelf,/obj/item/device/radio{pixel_x = -4; pixel_y = -4},/obj/item/device/radio{pixel_x = 5; pixel_y = -4},/obj/item/device/radio{pixel_x = -4; pixel_y = 4},/obj/item/device/radio{pixel_x = 5; pixel_y = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"caW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"caX" = (/obj/structure/table/rack/shelf,/obj/item/device/gps/explorer{pixel_x = -6; pixel_y = -4},/obj/item/device/gps/explorer{pixel_x = 5; pixel_y = -4},/obj/item/stack/marker_beacon/thirty{pixel_x = -4; pixel_y = 4},/obj/item/stack/marker_beacon/thirty{pixel_x = 5; pixel_y = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"caY" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"caZ" = (/obj/machinery/door/window/brigdoor/westleft{req_access = list(); req_one_access = list(19,43,67)},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"cba" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monofloor{dir = 1},/area/cryogaia/station/excursion_dock) +"cbb" = (/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "expshuttle_sensor"; master_tag = "expshuttle_docker"; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 2; frequency = 1380; id_tag = "expshuttle_docker_pump_out_internal"},/obj/structure/handrail,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cbc" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 2; frequency = 1380; id_tag = "expshuttle_vent"},/obj/structure/handrail,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cbd" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "expshuttle_vent"},/obj/structure/cable/cyan,/obj/structure/handrail{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; listening = 1; name = "Common Channel"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cbe" = (/obj/structure/sign/warning/airlock,/turf/simulated/shuttle/wall/voidcraft,/area/shuttle/excursion/cryogaia) +"cbf" = (/obj/machinery/light/small/readylight{dir = 8},/obj/structure/closet/walllocker{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"cbg" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"cbh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cbi" = (/obj/structure/handrail,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cbj" = (/obj/structure/handrail,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cbk" = (/obj/structure/handrail,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cbl" = (/obj/structure/bed/chair/shuttle{dir = 8; icon_state = "shuttle_chair"},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cbm" = (/obj/machinery/door/airlock/glass_medical{id_tag = "Surgery"; name = "Surgical Wing"; req_access = list()},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/pink{dir = 6},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"cbn" = (/obj/structure/lattice,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"cbo" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds) +"cbp" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds) +"cbq" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds) +"cbr" = (/obj/structure/table/reinforced,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/goggles,/obj/item/weapon/clipboard,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"cbs" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"cbt" = (/obj/effect/floor_decal/corner_oldtile/purple/diagonal,/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/obj/machinery/photocopier,/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"cbu" = (/mob/living/simple_mob/animal/passive/penguin,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/grounds) +"cbv" = (/obj/structure/closet/wardrobe/black,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/teleporter) +"cbw" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"cbx" = (/obj/machinery/cryopod/robot/door/gateway,/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"cby" = (/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"cbz" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"cbA" = (/obj/structure/table/bench/wooden,/obj/effect/landmark/start{name = "Explorer"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"cbB" = (/obj/structure/table/bench/wooden,/obj/effect/landmark/start{name = "Explorer"},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"cbC" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"cbD" = (/obj/structure/table/bench/wooden,/obj/effect/landmark/start{name = "Explorer"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"cbE" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"cbF" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/exploration,/obj/item/clothing/head/helmet/space/void/exploration,/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"cbG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monofloor,/area/cryogaia/station/excursion_dock) +"cbH" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "expshuttle_door_Ro"; locked = 1},/obj/machinery/airlock_sensor/airlock_exterior/shuttle{dir = 6; frequency = 1380; id_tag = "expshuttle_exterior_sensor"; master_tag = "expshuttle_docker"; pixel_x = 4; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cbI" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cbJ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cbK" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "surgeryobs2"; name = "Operating Theatre Privacy Shutters"; opacity = 0},/obj/structure/window/reinforced/polarized/full{id = "surgeryobs"},/turf/simulated/floor/plating,/area/medical/surgery) +"cbL" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "expshuttle_door_Ri"; locked = 1},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "expshuttle_docker"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cbM" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/security/checkpoint) +"cbN" = (/obj/structure/bed/chair/shuttle{dir = 8; icon_state = "shuttle_chair"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cbO" = (/obj/structure/bed/chair/shuttle{dir = 4; icon_state = "shuttle_chair"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cbP" = (/obj/machinery/light/small/readylight{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cbQ" = (/obj/structure/closet/walllocker/emerglocker,/turf/simulated/shuttle/wall/voidcraft,/area/shuttle/excursion/cryogaia) +"cbR" = (/obj/machinery/light/small/readylight{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cbS" = (/obj/structure/bed/chair/shuttle{dir = 8; icon_state = "shuttle_chair"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cbT" = (/obj/machinery/door/airlock/medical{name = "Operating Theatre 1"; req_access = list(45)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cbU" = (/obj/machinery/door/airlock/medical{id_tag = "surgery_observation"; name = "Observation Room"; req_access = newlist()},/obj/machinery/holosign/surgery,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"cbV" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"cbW" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/noticeboard/nanite{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"cbX" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"cbY" = (/obj/effect/floor_decal/corner_oldtile/purple/diagonal,/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"cbZ" = (/obj/effect/floor_decal/techfloor/orange{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"cca" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor/hole,/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"ccb" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"ccc" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"ccd" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/teleporter) +"cce" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"ccf" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"ccg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"cch" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"cci" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"ccj" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"cck" = (/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"ccl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "expshuttle_dock"; pixel_x = -32; req_one_access = list(19,43,67)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"ccm" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/shuttle/excursion/cryogaia) +"ccn" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "expshuttle_docker_pump_out_internal"},/obj/machinery/oxygen_pump{pixel_y = -32},/obj/structure/handrail{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cco" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"ccp" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "expshuttle_vent"},/obj/machinery/oxygen_pump{pixel_y = -32},/obj/structure/handrail{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"ccq" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint) +"ccr" = (/obj/structure/bed/chair/shuttle{dir = 4; icon_state = "shuttle_chair"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"ccs" = (/obj/structure/handrail{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"cct" = (/obj/structure/handrail{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"ccu" = (/obj/structure/handrail{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"ccv" = (/obj/structure/bed/chair/shuttle{dir = 8; icon_state = "shuttle_chair"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"ccw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"ccx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"ccy" = (/obj/machinery/camera/network/research{c_tag = "Research Firing Range"; dir = 1; network = list("Research","Miscellaneous Reseach")},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"ccz" = (/obj/structure/table/reinforced,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/goggles,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"ccA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"ccB" = (/obj/structure/table/rack,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"ccC" = (/obj/effect/floor_decal/corner_oldtile/purple/full,/obj/structure/barricade,/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"ccD" = (/obj/effect/floor_decal/corner_oldtile/purple/full{dir = 4},/obj/structure/barricade,/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"ccE" = (/obj/structure/closet/secure_closet/explorer,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple,/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"ccF" = (/obj/structure/closet/secure_closet/explorer,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"ccG" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"ccH" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"ccI" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"ccJ" = (/obj/structure/closet/secure_closet/pilot,/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"ccK" = (/obj/structure/closet/secure_closet/pilot,/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_prep) +"ccL" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/obj/machinery/light,/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"ccM" = (/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/suit_cycler/exploration,/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"ccN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"ccO" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "expshuttle_docker_pump_out_external"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/handrail{dir = 8},/turf/simulated/floor/plating,/area/shuttle/excursion/cryogaia) +"ccP" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/shuttle/excursion/cryogaia) +"ccQ" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/security/checkpoint) +"ccR" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/surround,/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"ccS" = (/obj/structure/flora/tree/pine,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"ccT" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 1},/turf/simulated/floor/plating,/area/rnd/research/testingrange) +"ccU" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 4},/obj/structure/window/phoronreinforced{icon_state = "phoronrwindow"; dir = 1},/turf/simulated/floor/plating,/area/rnd/research/testingrange) +"ccV" = (/obj/machinery/door/airlock/glass_science{name = "Nanite Laboratory"},/turf/simulated/floor/tiled/white,/area/rnd/hallway) +"ccW" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/cryogaia/station/explorer_prep) +"ccX" = (/obj/machinery/door/window/brigdoor/northright{req_access = list(); req_one_access = list(67)},/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"ccY" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"ccZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/shuttle/excursion/cryogaia) +"cda" = (/obj/machinery/recharge_station,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdb" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/light/small{dir = 1},/obj/machinery/floodlight,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdc" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/handrail,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdd" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled,/area/security/checkpoint) +"cde" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/effect/floor_decal/industrial/outline/red,/obj/structure/closet/secure_closet/guncabinet/excursion,/obj/item/weapon/pickaxe,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"cdg" = (/obj/structure/stasis_cage,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdh" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"cdi" = (/turf/simulated/open,/area/rnd/hallway) +"cdj" = (/obj/machinery/suit_cycler/pilot,/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"cdk" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/pilot,/obj/item/clothing/head/helmet/space/void/pilot,/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"cdl" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/head/helmet/space/void/pilot,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/pilot,/obj/item/clothing/head/helmet/space/void/pilot,/turf/simulated/floor/tiled/steel_grid,/area/cryogaia/station/explorer_prep) +"cdm" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/structure/handrail{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/voidcraft,/turf/simulated/floor/tiled/steel_ridged,/area/shuttle/excursion/cryogaia) +"cdo" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdq" = (/obj/machinery/door/airlock/medical{name = "Operating Theatre 2"; req_access = list(45)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cdr" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/ward) +"cds" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "surgeryobs"; name = "Operating Theatre Privacy Shutters"; opacity = 0},/obj/structure/window/reinforced/polarized/full{id = "surgeryobs"},/turf/simulated/floor/plating,/area/medical/surgery2) +"cdt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"cdu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"cdv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/voidcraft/vertical,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"cdw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"cdx" = (/obj/machinery/power/terminal,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/power/port_gen/pacman/mrs,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdz" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/shuttle/excursion/cryogaia) +"cdA" = (/obj/machinery/conveyor{dir = 8; id = "shuttle_outbound"},/obj/structure/plasticflaps,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdB" = (/obj/machinery/conveyor_switch/oneway{id = "shuttle_outbound"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdC" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdD" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdF" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"cdG" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdI" = (/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdJ" = (/obj/structure/snowman/spider,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"cdK" = (/obj/machinery/power/smes/buildable/point_of_interest,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdL" = (/obj/machinery/cell_charger,/obj/structure/table/steel,/obj/random/powercell,/obj/item/stack/material/tritium{amount = 5},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdM" = (/turf/simulated/shuttle/wall/voidcraft/no_join,/area/shuttle/excursion/cryogaia) +"cdN" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/deliveryChute{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdO" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdP" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/walllocker/emerglocker/south,/obj/structure/closet/crate,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdQ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"cdS" = (/obj/machinery/recharger,/obj/structure/table/steel,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdT" = (/obj/machinery/shuttle_sensor{dir = 5; id_tag = "shuttlesens_exp_int"},/turf/simulated/shuttle/wall/voidcraft/no_join,/area/shuttle/excursion/cryogaia) +"cdU" = (/obj/structure/frame,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdV" = (/obj/machinery/autolathe,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdW" = (/obj/structure/disposalpipe/segment,/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/shuttle/excursion/cryogaia) +"cdX" = (/obj/structure/sign/warning/docking_area,/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/shuttle/excursion/cryogaia) +"cdY" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/door/airlock/glass_external{icon_state = "door_locked"; id_tag = "expshuttle_door_cargo"; locked = 1; req_one_access = list()},/obj/machinery/button/remote/airlock{desiredstate = 1; dir = 4; icon_state = "doorctrl0"; id = "expshuttle_door_cargo"; name = "hatch bolt control"; pixel_x = -32; req_one_access = list(19,43,67); specialfunctions = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cdZ" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges3{dir = 8},/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds) +"cea" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges3{dir = 4},/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds) +"ceb" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/surround,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"cec" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating,/area/shuttle/excursion/cryogaia) +"ced" = (/obj/machinery/conveyor_switch/oneway{id = "shuttle_inbound"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/shuttle/excursion/cryogaia) +"cee" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/deliveryChute{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"cef" = (/obj/machinery/conveyor{dir = 4; id = "shuttle_inbound"},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/shuttle/excursion/cryogaia) +"ceg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/cryogaia/station/excursion_dock) +"ceh" = (/obj/effect/floor_decal/borderfloorblack/corner{icon_state = "borderfloorcorner_black"; dir = 4},/obj/effect/floor_decal/industrial/danger/corner{icon_state = "dangercorner"; dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"cei" = (/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"cej" = (/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"cek" = (/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"cel" = (/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"cem" = (/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"cen" = (/obj/effect/floor_decal/borderfloorblack/corner{icon_state = "borderfloorcorner_black"; dir = 1},/obj/effect/floor_decal/industrial/danger/corner{icon_state = "dangercorner"; dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"ceo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"cep" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"ceq" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"cer" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "hangarsurface"; name = "Engine Repair Bay"; pixel_x = 0; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"ces" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"cet" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/camera/network/exploration{c_tag = "Exploration Hallway"; dir = 1},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"ceu" = (/obj/machinery/light,/obj/structure/stasis_cage,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"cev" = (/obj/structure/stasis_cage,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"cew" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"cex" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"cey" = (/obj/structure/showcase/sign,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"cez" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/medical/surgery2) +"ceA" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges3{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"ceB" = (/turf/simulated/wall,/area/cryogaia/station/excursion_dock) +"ceC" = (/obj/machinery/door/blast/shutters{id = "hangarsurface"; name = "Engine Repair Bay"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ceE" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceF" = (/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceG" = (/obj/structure/shuttle/engine/propulsion{anchored = 0; dir = 8; icon_state = "propulsion"},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceH" = (/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds/entrance) +"ceI" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/entrance) +"ceJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceN" = (/obj/machinery/door/blast/regular{icon_state = "pdoor1"; id = "EngineVent"; name = "Reactor Vent"; p_open = 0},/turf/simulated/floor/reinforced,/area/borealis2/outdoors/grounds) +"ceO" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/entrance) +"ceP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/entrance) +"ceQ" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/entrance) +"ceR" = (/obj/structure/table/rack/shelf,/obj/item/weapon/ice_pick,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/entrance) +"ceS" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/tool,/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tech_supply,/obj/item/stack/cable_coil/random,/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceU" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/item/clothing/glasses/welding,/obj/item/weapon/weldingtool,/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceV" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/cryogaia/station/excursion_dock) +"ceX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/titanium,/area/borealis2/outdoors/grounds/entrance) +"ceY" = (/obj/structure/flora/tree/dead,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior) +"ceZ" = (/obj/structure/flora/tree/winter,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior) +"cfa" = (/obj/cryogaia_away_spawner/wilds,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior) +"cfb" = (/obj/structure/flora/tree/pine,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior) +"cfc" = (/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds/entrance) +"cfd" = (/obj/structure/flora/tree/winter1,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior) +"cfe" = (/obj/structure/showcase/sign,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior) +"cff" = (/turf/simulated/wall/r_wall,/area/cryogaia/outpost/exploration_shed) +"cfg" = (/obj/structure/bonfire,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior) +"cfh" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior) +"cfi" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating/snow/plating,/area/cryogaia/outpost/exploration_shed) +"cfj" = (/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfk" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfl" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior) +"cfm" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior) +"cfn" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfo" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfp" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfq" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfr" = (/obj/effect/floor_decal/snow/floor/edges3,/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfs" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cft" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfu" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfv" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfw" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfx" = (/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfy" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfz" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"cfA" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 1},/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfB" = (/obj/effect/floor_decal/snow/floor/surround{dir = 1},/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfC" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfD" = (/mob/living/simple_mob/animal/sif/savik,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"cfE" = (/mob/living/simple_mob/animal/sif/shantak,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"cfF" = (/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfG" = (/mob/living/simple_mob/animal/wolf,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"cfH" = (/obj/cryogaia_away_spawner/wilds,/mob/living/simple_mob/animal/sif/savik,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"cfI" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/syndicate_station/south) +"cfJ" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfK" = (/obj/effect/spider/eggcluster/small/frost,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) +"cfL" = (/obj/effect/floor_decal/snow/floor/surround{dir = 4},/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfM" = (/obj/cryogaia_away_spawner/wilds,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfN" = (/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfO" = (/obj/structure/flora/tree/winter,/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfP" = (/turf/unsimulated/wall/planetary/borealis2,/area/borealis2/outdoors/exterior/explore3) +"cfQ" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior/explore3) +"cfR" = (/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/exterior/explore3) +"cfS" = (/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/explore3) +"cfT" = (/turf/unsimulated/wall/planetary/borealis2,/area/space) +"cfU" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/outdoors/ice,/area/borealis2/outdoors/exterior/lake) +"cfV" = (/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/lake) +"cfW" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/skipjack_station/southwest_solars) +"cfX" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors) +"cfY" = (/obj/structure/flora/tree/dead,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors) +"cfZ" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/skipjack_station/southeast_solars) +"cga" = (/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/skipjack_station/southwest_solars) +"cgb" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/syndicate_station/southwest) +"cgc" = (/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/syndicate_station/southeast) +"cgd" = (/obj/effect/spider/eggcluster/small/frost,/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/explore3) +"cge" = (/obj/cryogaia_away_spawner/wilds,/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/exterior/explore3) +"cgf" = (/obj/structure/bed/chair/comfy/black{dir = 8},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"cgg" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_oldtile/purple{dir = 1},/obj/machinery/atm{pixel_x = -30},/turf/simulated/floor/tiled/white,/area/rnd/research) +"cgh" = (/obj/machinery/atm{pixel_x = -30},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"cgi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue,/obj/machinery/atm{pixel_x = 30},/turf/simulated/floor/tiled,/area/hallway/secondary/exit_link) +"cgj" = (/obj/machinery/atm,/turf/simulated/wall,/area/chapel/monastery) +"cgk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/carbon/human/monkey/punpun,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"cgl" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"cgm" = (/obj/effect/landmark/map_data/borealis2{height = 4},/turf/unsimulated/wall/planetary/borealis2,/area/borealis2/outdoors) +"cgn" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/bridge) +"cgo" = (/obj/machinery/door/airlock/glass_external/freezable{req_one_access = list()},/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds) +"cgp" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"cgq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/storage/primary) +"cgr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/steel,/area/security/lobby) +"cgs" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"cgt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/security/security_processing) +"cgu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/quartermaster/office) +"cgv" = (/obj/machinery/camera/network/research{dir = 2},/obj/effect/floor_decal/corner_oldtile/purple/diagonal{dir = 4},/obj/machinery/hologram/holopad,/mob/living/simple_mob/slime/xenobio/rainbow/kendrick,/turf/simulated/floor/tiled/white,/area/rnd/rdoffice) +"cgw" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"cgx" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/hallway) +"cgy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"cgz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"cgA" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/gateway) +"cgB" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"cgC" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/red,/area/security/outpost) +"cgD" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"cgE" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/cryogaia/station/explorer_meeting) +"cgF" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/quartermaster/miningwing) +"cgG" = (/obj/structure/table/glass,/obj/item/weapon/storage/toolbox/emergency,/obj/item/bodybag/cryobag,/obj/item/device/radio/emergency,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"cgH" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/rnd/phoronics) +"cgI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow{dir = 10},/obj/machinery/camera/network/engineering{c_tag = "Toxins Substation"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/foyer) +"cgJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/camera/network/research{c_tag = "Xenobiology Surgery"; dir = 1; network = list("Research","Miscellaneous Reseach")},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/rnd/research) +"cgK" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/effect/floor_decal/corner_oldtile/purple,/obj/machinery/computer/security/exploration{dir = 8},/turf/simulated/floor/tiled,/area/cryogaia/station/pathfinder_office) +"cgL" = (/obj/structure/closet/secure_closet/sar,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/machinery/camera/network/exploration{c_tag = "Exploration Equipment"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/explorer_prep) +"cgM" = (/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/camera/network/exploration{c_tag = "Exploration Shuttle Entry"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"cgN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/exploration{c_tag = "Exploration Hangar Aft"; dir = 1},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"cgO" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/exploration{c_tag = "Exploration Hangar Aft"; dir = 1},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"cgP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/pink{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{icon_state = "map-scrubbers"; dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"cgQ" = (/obj/machinery/door/airlock/engineeringatmos{name = "Pipe-Power Floor Transfer"},/turf/simulated/floor,/area/maintenance/engineering) +"cgR" = (/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 4},/obj/structure/lattice,/obj/structure/cable{icon_state = "32-4"},/turf/simulated/open,/area/maintenance/engineering) +"cgS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineeringatmos{name = "Pipe-Power Floor Transfer"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/engineering) +"cgT" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"cgU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cgV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"cgW" = (/turf/simulated/wall,/area/maintenance/engineering) +"cgX" = (/turf/simulated/floor,/area/maintenance/engineering) +"cgY" = (/turf/simulated/wall/r_wall,/area/maintenance/engineering) +"cgZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_security{id_tag = "BrigFoyer"; layer = 2.8; name = "Security Wing"; req_access = list(); req_one_access = list(2,1)},/turf/simulated/floor/tiled/steel_grid,/area/security/security_processing) +"cha" = (/obj/machinery/door/window/brigdoor/southleft,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chb" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"chc" = (/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"chd" = (/obj/machinery/door/window/brigdoor/southright,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/checkpoint) +"che" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"chf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/tank/air,/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"chg" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/structure/railing,/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia,/area/borealis2/outdoors/grounds) +"chh" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = "arrivals_dock_south_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "arrivals_dock_south_sensor"; pixel_x = 0; pixel_y = 25},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/hallway/secondary/entry/docking_lounge) +"chi" = (/obj/structure/closet,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/checkpoint) +"chj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/security/checkpoint) +"chk" = (/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"chm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint) +"chn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/security/checkpoint) +"cho" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/door/window/brigdoor/westleft,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chp" = (/obj/structure/closet/secure_closet/security,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint) +"chq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/security/checkpoint) +"chr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"cht" = (/obj/machinery/button/remote/blast_door{id = "escapesec"; name = "Emergency Lockdown"; pixel_x = -30},/obj/structure/closet/secure_closet/security,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint) +"chu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/security/checkpoint) +"chv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/security/checkpoint) +"chw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"chx" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chz" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/southleft{dir = 1; name = "Secure Door"},/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/exit_link) +"chB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/security/checkpoint) +"chC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "escapesec"; name = "Emergency Blast Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/security/checkpoint) +"chD" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chE" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chF" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chG" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled,/area/security/checkpoint) +"chH" = (/obj/machinery/computer/shuttle_control/residential_shuttle{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint) +"chI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/voidcraft/vertical{req_access = list(); req_one_access = list(19,43,67)},/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"chJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/voidcraft{req_access = list(); req_one_access = list(19,43,67)},/turf/simulated/floor/tiled/techmaint,/area/shuttle/excursion/cryogaia) +"chK" = (/obj/effect/floor_decal/corner/blue{dir = 6},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/tiled/old_tile/blue,/area/bridge/blueshield) +"chL" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"chM" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"chN" = (/obj/machinery/status_display,/turf/simulated/wall,/area/engineering/engineering_monitoring) +"chO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/shuttle/excursion/cryogaia) +"chP" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/engineering/engine_waste) +"chQ" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"chR" = (/obj/machinery/status_display,/turf/simulated/wall,/area/rnd/hallway) +"chS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"chT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/voidcraft,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/shuttle/excursion/cryogaia) +"chU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/handrail{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/excursion/cryogaia) +"chV" = (/obj/machinery/shieldwallgen{req_access = list()},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) +"chW" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/carpet,/area/hallway/primary/central_one) +"chX" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/camera/autoname,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"chY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/autoname,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"chZ" = (/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"cia" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 8},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"cib" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"cic" = (/obj/effect/floor_decal/corner_oldtile/purple,/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"cid" = (/obj/effect/floor_decal/corner/brown/full{dir = 1},/obj/machinery/camera/autoname,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"cie" = (/obj/effect/floor_decal/corner_oldtile/purple{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/yellow,/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/tiled/steel,/area/hallway/primary/aft) +"cif" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/camera/autoname,/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"cig" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"cih" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/starboard) +"cii" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/camera/autoname{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"cij" = (/turf/simulated/floor/tiled/white,/area/medical/medbay) +"cik" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"cil" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{icon_state = "map-scrubbers"; dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"cim" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{name = "Medbay Primary Hallway"},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"cin" = (/obj/machinery/vending/medical,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"cio" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"cip" = (/obj/effect/floor_decal/corner/pink/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"ciq" = (/obj/structure/noticeboard,/turf/simulated/wall,/area/medical/sleeper) +"cir" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"cis" = (/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/structure/table/glass,/obj/structure/fireaxecabinet{pixel_x = 30},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"cit" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/ward) +"ciu" = (/obj/machinery/status_display,/turf/simulated/wall,/area/medical/surgery) +"civ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"ciw" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/medical/ward) +"cix" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/effect/floor_decal/corner/pink,/turf/simulated/floor/tiled/white,/area/medical/ward) +"ciy" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"ciz" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/pink{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"ciA" = (/obj/machinery/door/airlock/maintenance/medical,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/medical/scanning) +"ciB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/medical/scanning) +"ciC" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -26},/obj/effect/floor_decal/corner/paleblue/full,/turf/simulated/floor/tiled/white,/area/medical/scanning) +"ciD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"ciE" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/corner/pink/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/ward) +"ciF" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"ciG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/scanning) +"ciH" = (/obj/machinery/camera/network/medbay{dir = 2},/obj/structure/closet/secure_closet/medical2,/obj/effect/floor_decal/corner/lime{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"ciI" = (/obj/effect/floor_decal/corner/paleblue,/turf/simulated/floor/tiled/white,/area/medical/scanning) +"ciJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"ciK" = (/obj/machinery/computer/med_data,/obj/effect/floor_decal/corner/lime/full{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"ciL" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"ciM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"ciN" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"ciO" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "surgeryobs"; name = "Operating Theatre Privacy Shutters"; opacity = 0},/obj/structure/window/reinforced/polarized/full{id = "surgeryobs2"},/turf/simulated/floor/plating,/area/medical/surgery2) +"ciP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{name = "Medbay Primary Hallway"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"ciQ" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/obj/effect/floor_decal/corner/paleblue/full,/turf/simulated/floor/tiled/white,/area/medical/medbay) +"ciR" = (/obj/machinery/iv_drip,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/obj/effect/floor_decal/corner/paleblue/full,/turf/simulated/floor/tiled/white,/area/medical/medbay) +"ciS" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/obj/effect/floor_decal/corner/paleblue/full,/turf/simulated/floor/tiled/white,/area/medical/medbay) +"ciT" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"ciU" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/effect/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"ciV" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/medbay) +"ciW" = (/obj/machinery/computer/med_data,/obj/effect/floor_decal/corner/lime/full{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"ciX" = (/obj/machinery/camera/network/medbay{dir = 2},/obj/structure/closet/secure_closet/medical2,/obj/effect/floor_decal/corner/lime{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"ciY" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/reception) +"ciZ" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/effect/floor_decal/corner/lime{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cja" = (/obj/structure/table/standard,/obj/machinery/button/windowtint{id = "surgeryobs"; pixel_x = -26; pixel_y = 0},/obj/item/stack/nanopaste,/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cjb" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/red{dir = 5},/obj/machinery/door/airlock/glass_security{id_tag = "BrigFoyer"; layer = 2.8; name = "Security Wing"; req_access = list(); req_one_access = list(2,1)},/turf/simulated/floor/tiled,/area/security/hallway) +"cjc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/red{dir = 10},/obj/machinery/door/airlock/glass_security{id_tag = "BrigFoyer"; layer = 2.8; name = "Security Wing"; req_access = list(); req_one_access = list(2,1)},/turf/simulated/floor/tiled,/area/security/hallway) +"cjd" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/cryogaia/station/excursion_dock) +"cje" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/lime{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cjf" = (/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 0; pixel_y = -32},/obj/effect/floor_decal/corner/pink/full,/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/medical/ward) +"cjg" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/ward) +"cjh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"cji" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"cjj" = (/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/ward) +"cjk" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"cjl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/reception) +"cjm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"cjn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/paleblue{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbaymain) +"cjo" = (/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) +"cjp" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"cjq" = (/obj/machinery/smartfridge/chemistry/chemvator,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"cjr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"cjs" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"cjt" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cju" = (/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cjv" = (/obj/structure/table/standard,/obj/machinery/button/windowtint{id = "surgeryobs2"; pixel_x = 26; pixel_y = 0},/obj/item/stack/nanopaste,/obj/effect/floor_decal/corner/lime{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cjw" = (/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = -32; pixel_y = 0},/obj/machinery/iv_drip,/obj/effect/floor_decal/corner/lime{dir = 9},/obj/machinery/camera/network/medbay{c_tag = "Surgery 1"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cjx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cjy" = (/obj/effect/floor_decal/corner/lime{dir = 6},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cjz" = (/obj/machinery/computer/cryopod{pixel_x = 32},/obj/machinery/cryopod,/obj/effect/floor_decal/corner/pink/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/ward) +"cjA" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"cjB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"cjC" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"cjD" = (/obj/effect/floor_decal/corner/lime{dir = 9},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cjE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cjF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cjG" = (/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = 32; pixel_y = 0},/obj/machinery/iv_drip,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/corner/lime{dir = 6},/obj/machinery/camera/network/medbay{c_tag = "Surgery 2"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cjH" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"cjI" = (/obj/effect/floor_decal/corner/pink,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"cjJ" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"cjK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cjL" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/firstaid/surgery,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/effect/floor_decal/corner/lime/full,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cjM" = (/obj/machinery/optable,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/oxygen_pump/anesthetic{pixel_y = -32},/obj/effect/floor_decal/corner/lime,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cjN" = (/obj/machinery/computer/operating{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/effect/floor_decal/corner/lime{dir = 8},/obj/machinery/light,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cjO" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 0; pixel_y = -32},/obj/effect/floor_decal/corner/lime/full{dir = 4},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cjP" = (/obj/item/weapon/storage/box/cups{pixel_x = 0; pixel_y = 0},/obj/structure/table/standard,/obj/machinery/light/small{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "Medbay break room"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"cjQ" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"cjR" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/research_starboard) +"cjS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research_starboard) +"cjT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"cjU" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/research_port) +"cjV" = (/obj/machinery/door/airlock/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/medbay_aft) +"cjW" = (/obj/machinery/door/airlock/glass_medical{id_tag = "Surgery"; name = "Surgical Wing"; req_access = list()},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/pink{dir = 6},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"cjX" = (/obj/effect/floor_decal/snow/floor/edges{dir = 1},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"cjY" = (/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/surround,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"cjZ" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/reception) +"cka" = (/obj/item/weapon/storage/box/cups{pixel_x = 0; pixel_y = 0},/obj/structure/table/standard,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/camera/network/medbay{c_tag = "Surgery Observation 2"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgeryobs) +"ckb" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/medbay_aft) +"ckc" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 0; pixel_y = -32},/obj/effect/floor_decal/corner/lime/full,/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -32},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"ckd" = (/obj/machinery/computer/operating{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/effect/floor_decal/corner/lime,/obj/machinery/light,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cke" = (/obj/machinery/optable,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/oxygen_pump/anesthetic{pixel_y = -32},/obj/effect/floor_decal/corner/lime{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"ckf" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/plating,/area/maintenance/medbay_aft) +"ckg" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/medbay_aft) +"ckh" = (/obj/effect/floor_decal/corner/paleblue,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/pink{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"cki" = (/obj/structure/table/reinforced,/obj/item/device/paicard,/obj/machinery/light{dir = 2},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 32},/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"ckj" = (/obj/machinery/status_display,/turf/simulated/wall,/area/crew_quarters/heads/cmo) +"ckk" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"ckl" = (/obj/machinery/scale,/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/exam_room) +"ckm" = (/obj/machinery/papershredder,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/meeting) +"ckn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -26},/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"cko" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/firstaid/surgery,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/effect/floor_decal/corner/lime/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"ckp" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall,/area/medical/surgery) +"ckq" = (/obj/effect/floor_decal/corner/paleblue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"ckr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"cks" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"ckt" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/body_record_disk,/obj/item/device/sleevemate,/obj/item/weapon/paper{desc = ""; info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing."; name = "Body Designer Note"},/obj/machinery/camera/network/medbay{icon_state = "camera"; dir = 9},/obj/effect/floor_decal/corner/paleblue/full{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"cku" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ckv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"ckw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"ckx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"cky" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay) +"ckz" = (/obj/machinery/iv_drip,/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = 0; pixel_y = -32},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner/paleblue/full,/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled/white,/area/medical/scanning) +"ckA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ckB" = (/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"ckC" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ckD" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ckE" = (/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ckF" = (/obj/effect/floor_decal/corner/pink{dir = 6},/obj/structure/table/standard,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/white,/area/medical/ward) +"ckG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/steel_ridged,/area/hallway/primary/central_one) +"ckH" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/turf/simulated/wall/r_lead,/area/borealis2/outdoors/grounds) +"ckI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ckJ" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/storage/emergency_storage/emergency5) +"ckK" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/storage/emergency_storage/emergency5) +"ckL" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/storage/emergency_storage/emergency5) +"ckM" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ckN" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/wall/r_lead,/area/borealis2/outdoors/grounds) +"ckO" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ckP" = (/obj/machinery/button/remote/blast_door{id = "EMT"; name = "EMT Mech Bay"; pixel_x = -25; pixel_y = 25},/turf/simulated/floor/tiled,/area/hallway/primary/central_one) +"ckQ" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"ckR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/docking_lounge) +"ckS" = (/obj/structure/table/reinforced,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/item/device/halogen_counter,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"ckT" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"ckU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/heavyduty,/turf/simulated/floor/plating/snow/plating,/area/maintenance/auxsolarport) +"ckV" = (/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"ckW" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/syndicate_station/north) +"ckX" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 4},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"ckY" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/solars) +"ckZ" = (/obj/machinery/door/airlock/glass_external/public,/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/entrance) +"cla" = (/obj/effect/floor_decal/rust,/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/structure/cable/heavyduty{icon_state = "1-4"},/obj/effect/floor_decal/snow/floor/edges{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"clb" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds) +"clc" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/heavyduty,/turf/simulated/floor/plating/snow/plating/cryogaia,/area/borealis2/outdoors/grounds/traderpad) +"cld" = (/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/entrance) +"cle" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/cryogaia/station/excursion_dock) +"clf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/cryogaia/station/excursion_dock) +"clg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds) +"clh" = (/obj/structure/table/rack/shelf,/obj/item/weapon/ice_pick,/turf/simulated/floor/tiled,/area/borealis2/outdoors/grounds/entrance) +"cli" = (/obj/machinery/light/small,/turf/simulated/floor/plating/snow/plating,/area/borealis2/outdoors/grounds/entrance) +"clj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/titanium,/area/borealis2/outdoors/grounds) +"clk" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/borealis2/outdoors/grounds) +"cll" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance{name = "Elevator Shaft"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/locker) +"clm" = (/turf/simulated/floor/outdoors/snow/snow/cryogaia,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/borealis2/outdoors/grounds) +"cln" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/excursion/cryogaia) +"cLv" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/directions/security,/turf/simulated/floor/plating,/area/hallway/primary/central_one) +"dDd" = (/obj/structure/sign/directions/science,/turf/simulated/wall/r_wall,/area/hallway/primary/central_one) +"eti" = (/obj/structure/sign/directions/bridge{icon_state = "direction_bridge"; dir = 4},/turf/simulated/wall,/area/maintenance/substation/civilian) +"eQA" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/directions/science,/turf/simulated/floor/plating,/area/hallway/primary/central_one) +"fhn" = (/obj/structure/sign/directions/engineering,/turf/simulated/wall,/area/hallway/primary/aft) +"fIL" = (/obj/structure/sign/directions/science,/turf/simulated/wall,/area/storage/primary) +"mBp" = (/obj/structure/table/marble,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.1; name = "Kitchen Shutters"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"nKF" = (/obj/structure/sign/directions/security{icon_state = "direction_sec"; dir = 8},/turf/simulated/wall/r_wall,/area/hallway/primary/central_one) +"oRX" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/directions/cargo,/turf/simulated/floor/plating,/area/hallway/primary/central_one) +"pcP" = (/obj/structure/sign/directions/engineering,/turf/simulated/wall/r_wall,/area/hallway/primary/central_one) +"qfY" = (/obj/structure/sign/directions/security,/turf/simulated/wall/r_wall,/area/hallway/primary/central_one) +"tbF" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/directions/engineering,/turf/simulated/floor/plating,/area/hallway/primary/central_one) +"vvt" = (/obj/structure/sign/directions/engineering,/turf/simulated/wall/r_wall,/area/maintenance/security_starboard) +"ydj" = (/obj/structure/sign/directions/security{icon_state = "direction_sec"; dir = 8},/turf/simulated/wall,/area/hallway/primary/aft) +"ylY" = (/obj/machinery/door/airlock/glass_engineering{name = "Engine Gas Storage"},/turf/simulated/floor/plating,/area/engineering/engine_room) (1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cgm -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aad -aad -aaf -aaf -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfA -cfx -cfx -cfx -cfx -cfw -cfw -cfw -cfw -cfx -cfx -cfw -cfJ -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aae -aad -aae -aad -aae -aad -aae -aad -aad -aad -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aPe -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aae -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aae -aad -aaf -aaf -aaf -aaf -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfF -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aae -aad -aaQ -aae -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aae -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKU -aLJ -aLJ -aLJ -aLJ -aLJ -aLJ -aLJ -aLJ -aLJ -aLJ -aVy -aKl -aKl -aKl -aKl -aKl -aPe -aad -aad -aad -aad -aae -aad -aad -aad -aaA -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aae -aae -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aae -aae -aaQ -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKV -aLK -aLK -aLO -aLK -aLK -aLK -aLN -aLK -aLK -aLK -aLO -aVy -aKl -aKl -aKl -aKl -aKl -aKl -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -cfh -cfh -cfh -cfh -cfq -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfJ -cfj -cfj -cfA -cfw -cfw -cfJ -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aae -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aae -aae -aad -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aGi -aad -aad -aae -aad -aKl -aKV -aLL -aMC -aNw -aOd -aLK -aLK -aMC -aNw -aOd -aLN -aLO -aLO -aLJ -aLJ -aLJ -aLJ -aVy -aKl -aKl -aKl -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aae -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aaf -aaf -aaf -aaf -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfw -cfw -cfJ -cfj -cfj -cfA -cfw -cfw -cfw -cfw -cfw -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfw -cfw -cfx -cfx -cfx -cfx -cfw -cfw -cfJ -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aae -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aae -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aae -aad -aad -aad -aae -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKV -aLM -aMD -aNw -aOd -aOd -aQd -aNw -aNw -aOd -aLK -aLO -aLO -aLK -aLK -aLN -aLK -aLO -aVy -aKl -aKl -aKl -aad -aae -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aaf -aaf -aaf -aaf -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfs -cfw -cfx -cfx -cfx -cfw -cfw -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aaQ -aae -aae -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aKl -aKV -aLL -aME -aME -aOe -aMC -aMC -aME -aME -aOe -aLK -aLO -aLK -aLK -aNw -aNw -aLK -aLK -aLO -aVy -aKl -aKl -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaf -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfu -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfJ -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aae -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aae -aad -aaQ -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aaQ -aad -aae -aad -aad -aad -aae -aaQ -aae -aad -aae -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aKl -aKV -aLN -aLK -aME -aME -aNw -aNw -aNw -aOd -aLK -aLK -aLN -aLO -aNw -aNw -aNw -aNw -aLK -aLN -aLO -aVy -aKl -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaf -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aae -aae -aae -aad -aad -aae -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aae -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aKl -aKW -aLO -aLK -aMC -aNw -aME -aME -aME -aOe -aLK -aLK -aLK -aNw -aNw -aNw -aNw -aNw -aNw -aLN -aLK -aLO -aVy -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aae -aad -aad -aaf -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aaQ -aad -aaQ -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -abP -abP -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aKl -aKl -aKV -aMF -aNw -aMD -aOd -aMC -aNw -aOd -aLK -aLK -aNw -aNw -aNw -aNw -aNw -aNw -aNw -aNw -aLK -aLK -aRg -aKl -aKl -aKl -bmE -bmE -aae -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaf -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfJ -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aaQ -aae -aad -aad -aad -aad -aad -aad -aad -aaQ -aae -aad -aad -aad -aad -aad -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aaQ -aad -aad -aad -aae -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aae -aad -aad -aae -aad -aae -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aKl -aKl -aKV -aLL -aME -aME -aOe -aNw -aNw -aOd -aNw -aUo -aNw -aNw -aNw -aNw -aNw -aNw -aNw -aNw -beJ -aLO -bhm -biw -aKl -bln -aKl -aKl -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfk -cfk -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfA -cfw -cfw -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aaQ -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aae -aad -aad -aae -aad -aad -aae -aad -aae -aae -aad -aae -aad -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aae -aad -aad -aae -aad -aad -aad -aad -aKl -aKl -aKV -aLK -aLK -aLK -aNw -aQe -aME -aOe -aNw -aUo -aNw -aNw -aNw -aNw -aNw -aNw -aNw -aNw -beJ -aLO -bhm -bix -aKl -aKl -aKl -bln -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -cfk -cfk -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfF -cfj -cfj -cfj -cfj -cfj -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aae -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aae -aad -aad -aad -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aae -aae -aad -aad -aae -aad -aae -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aKl -aKl -aKV -aLK -aMC -aNw -aOd -aLK -aLK -aLK -aTx -aLK -aNw -aNw -aNw -aNw -aNw -aNw -aNw -aNw -aLK -aLK -aRg -aKl -aKl -aKl -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cfA -cfw -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aae -aae -aad -aad -aae -aae -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aad -aae -aae -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aKl -aKl -aKV -aLK -aNw -aMD -aOd -aLO -aLO -aMG -aLO -aLK -aLK -aNw -aNw -aNw -aNw -aNw -aNw -aLK -aLK -aLO -aRh -aKl -aKl -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aaQ -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfs -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aaA -aad -aad -aad -aad -aad -aad -aae -aad -aad -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aKl -aKl -aKV -aLK -aME -aME -aOe -aLK -aRg -aKl -aKW -aLO -aLK -aLK -aNw -aNw -aNw -aNw -aLK -aLN -aLO -aRh -aKl -aKl -aKl -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aaQ -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aae -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aae -aaQ -aad -aad -aad -aad -aad -aaQ -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aKl -aKl -aKV -aLK -aLK -aLK -aLN -aLK -aRg -aKl -aKl -aKW -aLO -aLK -aLK -aUo -aUo -aLK -aLK -aLO -aRh -aKl -aKl -aKl -aad -aad -aae -aad -aad -aaQ -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -cfj -cfj -cfj -cfo -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aae -aad -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aae -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aKl -aKW -aMG -aMG -aMG -aMG -aMG -aRh -aKl -aKl -aKl -aKV -aLO -aLL -aMD -aNw -aMF -aLO -aRh -aKl -aKl -aKl -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aaQ -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfy -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfJ -cfj -cfj -cfj -cfj -cfj -aae -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aae -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKV -aMF -aMF -aNw -aNw -aLL -aRg -aKl -aKl -aKl -aKl -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aaa -aaa -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aad -aad -aae -aad -aad -aae -aad -aae -aae -aad -aad -aad -aaQ -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKV -aMF -aNw -aNw -aMD -aLL -aRg -aKl -aKl -aKl -aKl -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aaQ -aae -aad -aad -aaQ -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -cfj -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKV -aWH -aNw -aNw -aNw -aLM -aRg -aKl -aKl -aKl -aad -aad -aae -aaQ -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aaQ -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -cfj -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aaa -aad -aad -aad -aad -aaa -aaa -cfX -cfY -cfX -cfX -aaa -aaa -cfX -cfX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aae -aad -aad -aae -aad -aad -aad -aaQ -aad -aad -aad -aad -aae -aad -aae -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKV -aLL -aMD -aNw -aMF -aMF -aRg -aKl -aKl -aKl -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aad -aad -aaa -aad -aad -aad -aad -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aae -aad -aae -aad -aad -aad -aae -aad -aae -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKl -aKU -aLO -aLL -aNw -aNw -aMF -aLO -aRg -aKl -aKl -aKl -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -cfj -cfj -cfj -cfn -cfr -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfC -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aad -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aad -aaa -aaa -aaa -aaa -cfP -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aae -aad -aad -aaA -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKU -aLO -aLK -aLK -aUo -aYK -aLK -aLK -aLO -aVy -aKl -aKl -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cfA -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfu -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfJ -cfj -cfj -cfj -cfj -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aaa -aad -aad -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aad -aaa -aaa -aaa -aaa -cfP -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKV -aLK -aLK -aNw -aNw -aNw -aNw -aLK -aLK -aRg -aKl -aKl -aae -aae -aaQ -aad -aad -aad -aaQ -aad -aad -aad -aad -aaQ -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -cfj -cfj -cfj -cfo -cfj -cfs -cfw -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfu -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aad -aaa -aaa -aaa -aaa -cfP -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aPe -aKl -aKl -aKl -aKV -aLK -aNw -aNw -aMC -aME -aNw -aNw -aLK -aRg -aKl -aKl -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfJ -cfj -cfj -cfj -cfj -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -cgb -cgb -cgb -cgb -cgb -aad -aad -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aae -aad -aad -aae -aad -aad -aae -aad -aae -aad -aae -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aPe -aKl -aKl -aKl -aKV -aLK -aNw -aNw -aNw -aNw -aNw -aNw -aLK -aRg -aKl -aKl -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaQ -aae -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfu -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aae -aad -aad -aae -aad -aae -aad -aad -aad -aae -aae -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKV -aLK -aLK -aMC -aNw -aNw -aMC -aLK -aLK -aRg -aKl -aKl -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aaQ -aad -aad -aad -bXb -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aae -cfj -cfj -cfj -cfo -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfO -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aae -aad -aad -aad -aad -aae -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aaQ -aae -aad -aad -aae -aad -aae -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aKl -aKl -aKl -aKl -aKW -aLO -aLK -aLK -aNw -aMC -aLK -aLK -aLO -aRh -aKl -aKl -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfF -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfV -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKW -aLO -aLK -aLK -aLK -aLK -aLO -aRh -aKl -aKl -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cfu -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfA -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKl -aKW -aMG -aMG -aMG -aMG -aRh -aKl -aKl -aKl -aad -aad -aad -aad -aae -aad -aGi -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfy -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfw -cfw -cfw -cfw -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfF -cfj -cfj -cfj -cfj -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aae -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aaQ -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aae -aad -aad -aaz -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aaQ -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aae -aad -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -cfj -cfj -cfj -cfp -cfq -cfj -cfj -cfy -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aae -aae -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aae -aae -aad -aad -aad -aae -aad -aad -aad -aaQ -aaQ -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aae -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfJ -cfj -cfj -cfj -cfj -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -cgb -cgb -cgb -cgb -cgb -aad -aad -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aae -aad -aae -aad -aad -aad -aaQ -aae -aad -aae -aad -aae -aad -aad -aad -aad -aad -aae -aad -aaQ -aad -aae -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfj -cfo -cfj -cfj -cfB -cfC -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -aad -aad -aad -aaa -aaa -aad -aad -aad -aad -aad -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aaQ -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfF -cfj -cfj -cfj -cfj -aad -aaa -aad -aad -aad -aad -aaa -aad -aaa -aaa -aaa -aad -aad -aaa -aad -aad -aad -aad -aad -aaa -aaa -aad -aad -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aaa -aaa -aaa -aad -aad -aad -aad -aad -aaa -aad -aad -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aae -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cfs -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfk -aad -aad -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -cgb -aad -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -cfj -cfj -cfo -cfj -cfj -cfB -cfC -cfx -cfx -cfx -cfx -cfC -cfC -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -cfj -cfj -cfp -cfv -cfq -cfj -cfj -cfy -cfC -cfC -cfF -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aad -aad -aad -aad -aae -aad -aad -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfJ -cfj -cfj -cfj -cfj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aae -aad -aae -aad -aae -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aad -aad -aad -aad -aad -aae -aad -aad -aad -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfj -cfj -cfj -cfj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aDv -aqD -arD -aqD -aDv -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWc -bWc -bWc -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWc -bWc -bWc -bWc -bWc -bWc -bWc -bWc -aao -aao -aad -aad -aad -aae -aad -aad -aad -aad -aad -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfF -cfj -cfj -cfj -cfk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aae -aad -aae -aad -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aag -aag -aag -aag -aag -aag -aag -aag -aag -abz -aag -aag -aag -aag -aag -aag -aag -aag -aDv -arD -aHN -arD -aDv -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWc -bWc -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -bWc -bWc -bWc -bWc -bWc -aao -aao -aad -aad -aad -aad -aae -aad -aad -aad -aad -cfj -cfj -cfp -cfv -cfv -cfv -cfv -cfq -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aDv -aDv -aDv -aDv -arD -aqD -aww -aqD -arD -aqD -arD -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -beK -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWc -bWc -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -bWc -bWc -bWc -bWc -bWc -aao -aao -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cfy -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aad -aad -aad -aad -aae -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aqD -arD -aqD -aqD -aqD -aqD -aqD -aqD -arD -aqD -aqD -arD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aww -aqD -arD -aqD -aqD -arD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aqD -aqD -arD -aqD -aqD -arD -aqD -aqD -beK -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWc -bWc -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -bWc -bWc -bWc -bWc -bWc -aao -aao -aad -aad -aad -aad -aad -aGi -aad -aae -aad -aad -aad -cfj -cfj -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfF -cfj -cfj -cfj -cfj -cfj -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aag -abQ -abQ -abQ -abQ -abQ -aag -aag -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aqE -aqE -aqE -aqE -aqE -arD -aqD -arD -aqE -aqE -aqE -aqE -aqE -aqD -aqE -aqE -aqE -aqE -aqE -arD -aww -arD -aqE -aqE -aqE -aqE -aqE -aqD -aqE -aqE -aqE -aqE -aqE -arD -aqD -arD -aqE -aqE -aqE -aqE -aqE -arD -aDv -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWc -bWc -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -bWc -bWc -bWc -bWc -bWc -aao -aao -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aae -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aae -aad -aae -aad -aae -aad -aad -aao -aao -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aag -aag -aag -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -aqD -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -aqD -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -aqD -beK -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWc -bWc -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -bWc -bWc -bWc -bWc -bWc -aao -aao -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -cfj -cfj -cfj -cfj -cfo -cfj -cfj -cfj -cfB -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aae -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aae -aao -aao -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aag -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -aqD -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -aqD -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -aqD -beK -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUY -bWc -bWc -bWd -bWd -bWd -bWd -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWd -bWd -bWd -bWd -bWc -bWc -aao -aao -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfo -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aad -aae -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aae -aad -aad -aad -aao -aao -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aag -aqD -arD -aqD -aqD -aqD -avw -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -arD -aqD -aqD -aqD -avw -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -arD -aqD -aqD -aqD -avw -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aEt -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -abf -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aGi -cfj -cfo -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aad -aad -aae -aad -aao -aao -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aag -aqE -aqE -aqE -aqE -aqE -arD -aww -arD -aqE -aqE -aqE -aqE -aqE -aqD -aqE -aqE -aqE -aqE -aqE -arD -aww -arD -aqE -aqE -aqE -aqE -aqE -aqD -aqE -aqE -aqE -aqE -aqE -arD -aww -arD -aqE -aqE -aqE -aqE -aqE -arD -aDv -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -abf -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfo -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfJ -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aae -aad -aad -aad -aao -aao -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aag -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -aqD -aqF -arE -arE -arE -arE -avv -aIt -avv -ayf -ayf -ayf -ayf -aBG -aqD -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -arD -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aad -aad -aad -aad -aaf -aad -aad -aae -aad -aaQ -aad -aad -aad -aad -aad -cfj -cfo -cfj -cfj -cfj -cfy -cfC -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -aad -aae -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aae -aao -aao -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aag -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -aqD -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -aqD -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -arD -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cft -cfC -cfC -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfF -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aae -aad -aae -aad -aae -aad -aao -aao -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aag -aag -aag -aqD -arD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aad -aae -aad -aad -aad -aad -aad -aad -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfL -cfj -cfj -cfy -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aag -abQ -abQ -abQ -abQ -abQ -aag -aag -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aqE -aqE -aqE -aqE -aqE -arD -aww -arD -aqE -aqE -aqE -aqE -aqE -aqD -aqE -aqE -aqE -aqE -aqE -arD -aww -arD -aqE -aqE -aqE -aqE -aqE -aqD -aqE -aqE -aqE -aqE -aqE -arD -aww -arD -aqE -aqE -aqE -aqE -aqE -aqD -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfy -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aad -aad -aad -aad -aae -aad -aae -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -aqD -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -aqD -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfU -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aad -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -aqD -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -aqD -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aqD -arD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfC -cfF -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aae -aad -aad -aae -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -aqE -aqE -aqE -aqE -aqE -arD -aww -arD -aqE -aqE -aqE -aqE -aqE -aqD -aqE -aqE -aqE -aqE -aqE -arD -aww -arD -aqE -aqE -aqE -aqE -aqE -aqD -aqE -aqE -aqE -aqE -aqE -arD -aww -arD -aqE -aqE -aqE -aqE -aqE -aqD -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aae -aad -aad -aad -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfy -cfC -cfC -cfC -cfC -cfC -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfx -cfN -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aae -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -aqD -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -aqD -aqF -arE -arE -arE -arE -avv -awv -avv -ayf -ayf -ayf -ayf -aBG -aqD -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aaA -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cft -cfx -cfx -cfx -cfx -cfx -cfC -cfC -cfx -cfx -cfx -cfx -cfx -cfC -cfC -cfC -cfC -cfC -cfF -cfj -cfj -cfj -cfj -aad -aad -aad -aae -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -aqD -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -aqD -aqG -aqG -aqG -aqG -aqG -arD -aww -arD -aqG -aqG -aqG -aqG -aqG -arD -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfy -cfC -cfC -cfC -cfC -cfF -cfj -cfj -cfy -cfC -cfC -cfC -cfF -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aae -aad -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aqD -arD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -arD -aqD -aqD -aEt -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aae -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aqD -aqD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aDv -aEt -arD -arD -arD -arD -aww -arD -arD -arD -aDv -aDv -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -aqD -aqD -arD -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -btK -avv -avv -avv -byN -byN -byN -byN -byN -byN -byN -byN -byN -byN -byN -bMY -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aae -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aqD -aww -aqD -aqD -aqD -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -aqD -arD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aTy -aTy -aTy -aTy -aTy -aww -aTy -aTy -aTy -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bLF -bLF -bLF -bLF -bLF -aag -bTr -bUX -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aae -aad -aaf -aaf -aaf -aaf -aaf -aaf -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aae -aad -aae -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aqD -awx -avv -avv -avv -avv -avv -avv -avv -avv -avv -avv -avv -avv -avv -awv -avv -avv -avv -avv -avv -avv -avv -avv -avv -avv -avv -avv -avv -aVz -aqD -aqD -aqD -arD -arD -aqD -aqD -arD -arD -aqD -aqD -arD -arD -aqD -aqD -arD -arD -aqD -aqD -aww -arD -aqD -aTy -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bLF -bMZ -bMZ -aaD -bLF -bRZ -bTs -bUZ -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfM -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfP -cfP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aae -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aHN -aww -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aww -aqD -arD -aYL -aZJ -bbc -arD -aYL -aZJ -bbc -arD -aYL -aZJ -bbc -arD -aYL -aZJ -bbc -arD -aYL -aZK -bbc -aqD -aTy -aag -aag -aag -aag -aag -bsy -aag -aag -aag -aag -bLF -bNa -bNa -bPu -bQE -bSa -bTt -bVa -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -cfj -cfj -cfo -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aae -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfP -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aHa -aHO -aIu -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aYL -aZK -bbc -aqD -aYL -aZK -bbc -aqD -aYL -aZK -bbc -aqD -aYL -aZK -bbc -aqD -aYL -aZK -bbc -arD -aTy -aag -aaY -aHb -aHb -aHb -aHb -aHb -aHb -aHb -aHb -bLG -bNb -bNb -bPv -bQF -bSb -bTu -bVb -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfl -cfh -cfh -cfh -cfh -cfh -cfh -cfh -cfv -cfv -cfr -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aae -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aab -aHP -aIv -aHP -aHP -aHP -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aww -aqD -arD -aYL -aZK -bbc -arD -aYL -aZK -bbc -arD -aYL -aZK -bbc -arD -aYL -aZK -bbc -arD -aYL -aZK -bbc -arD -aTy -aag -btM -buX -bww -bww -bww -bww -bww -bww -bww -bLG -bNb -bNb -bPv -bQF -bSc -bTv -bVc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aaf -aaf -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aae -aad -aad -aae -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aDw -aag -aag -aag -aHP -aIw -aJz -aKm -aHP -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -avw -aqD -aww -aqD -aqD -aYL -aZK -bbc -arD -aYL -aZK -bbc -aqD -aYL -aZK -bbc -aqD -aYL -aZK -bbc -aqD -aYL -aZK -bbc -arD -aqD -aag -btM -avu -aag -aag -aag -aag -aag -bsy -aag -bLF -bNa -bNa -bPw -bLF -bRZ -bTs -bVd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aaf -aaf -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aae -aad -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aae -aad -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aDw -aag -aag -aag -aHP -aIx -aIB -aKn -aHP -aLP -aiP -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aww -aqD -aqD -aYL -aZK -bbc -arD -aYL -aZK -bbc -arD -aYL -aZK -bbc -arD -aYL -aZK -bbc -arD -aYL -aZK -bbc -aqD -aqD -aag -btM -avu -aag -aag -aag -aag -aag -aag -aag -bLF -bMZ -bMZ -bPx -bLF -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aaf -aaf -cfj -cfj -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -cfj -cfj -cfj -cfj -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aae -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aae -aad -aae -aad -aad -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abf -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aDw -aag -aag -aag -aHP -aIy -aIB -aIB -aHP -aaj -abj -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aww -aqD -aqD -arD -aww -aqD -aqD -arD -aww -aqD -aqD -arD -aww -aqD -aqD -arD -aww -aqD -aqD -arD -aww -aqD -aqD -aqD -aag -btM -avu -aag -aag -aag -aag -aag -aag -aag -bLF -bLF -bLF -bLF -bLF -aag -bTr -bUX -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -aad -aad -cfj -aad -aad -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -cfj -cfj -cfj -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cga -cfW -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(72,1,1) = {" -aaa -aaa -aaa -aab -aab -aab -aap -aad -aad -aad -aad -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abz -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aDw -aDw -aag -aag -aHP -aIz -aIB -aKo -aHP -aaj -abj -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -awx -avv -avv -avv -aZL -avv -avv -avv -aZL -avv -avv -avv -aZL -avv -avv -avv -aZL -avv -avv -avv -btL -aqD -aqD -aqD -aag -btM -avu -bsy -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -cfj -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cga -cga -cga -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(73,1,1) = {" -aaa -aaa -aaa -aab -aac -aac -aaq -aad -aad -aad -aae -aad -aad -aae -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aDw -aDw -aDw -aag -aag -aHP -aIA -aIB -aIB -aKX -aaj -abj -aqD -aqD -aqD -aqD -aqD -avw -aqD -aqD -aqD -aqD -aqD -arD -aww -aqD -aqD -arD -aww -arD -aqD -arD -aww -arD -aqD -arD -aww -arD -aqD -arD -aww -aqD -aqD -aqD -aag -btM -avu -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cga -cga -cga -cga -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(74,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aad -aad -aad -aad -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHP -aIB -aIB -aIB -aKY -aaj -abj -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -arD -aYL -aZM -bbc -arD -aYL -aZM -bbc -arD -aYL -aZM -bbc -arD -aYL -aZM -bbc -arD -aYL -aZM -bbc -aqD -aqD -aag -btM -avu -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUY -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cga -cga -cga -cga -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(75,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aar -aae -aad -aad -aad -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHP -aIC -aJA -aKp -aHP -aaj -abj -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -arD -aYL -aZM -bbc -aqD -aYL -aZM -bbc -aqD -aYL -aZM -bbc -aqD -aYL -aZM -bbc -aqD -aYL -aZM -bbc -aqD -aqD -aag -btM -avu -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cga -cga -cga -cga -cga -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(76,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aar -aad -aad -aae -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -ahj -ahj -ahj -ahj -ahj -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHP -aID -aJB -aKp -aHP -aaj -abj -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aYL -aZM -bbc -arD -aYL -aZM -bbc -arD -aYL -aZM -bbc -arD -aYL -aZM -bbc -arD -aYL -aZM -bbc -arD -aTy -aag -btM -avu -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWd -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cga -cga -cga -cga -cga -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(77,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aar -aad -aad -aad -aad -aad -aae -aao -aao -aag -aag -aag -abq -abq -abq -aag -aag -aag -aaO -abq -ahj -ahM -ahM -ahM -ahj -ahj -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abl -aag -aag -aHP -aID -aJC -aKq -aHP -aaj -abj -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aYL -aZM -bbc -aqD -aYL -aZM -bbc -arD -aYL -aZM -bbc -arD -aYL -aZM -bbc -arD -aYL -aZM -bbc -arD -aTy -bsy -btM -avu -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTw -bUX -bWd -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -bWc -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -bWd -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cga -aaf -aaf -aaf -aaf -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(78,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aar -aar -aad -aad -aad -aad -aad -abq -abq -abq -aag -aag -abq -abq -abq -aag -aag -aag -abq -abq -ahj -ahj -ahM -ahM -ahM -ahj -ahj -abq -abq -abq -aag -aag -aag -aag -aag -aag -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHP -aIE -aHP -aHP -aHP -aaj -abj -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aYL -aZN -bbc -arD -aYL -aZN -bbc -arD -aYL -aZN -bbc -arD -aYL -aZN -bbc -arD -aYL -aZN -bbc -aqD -aTy -aag -btM -avu -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bTr -bUX -bWd -bWd -bWd -bWd -bWd -bWd -bWc -bWc -bWc -bWc -bWc -bWc -bWc -bWc -bWd -bWd -bWd -bWd -bWd -bWd -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cga -cga -aaf -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(79,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aar -aar -aar -aad -aad -aad -aar -abq -abq -abq -abq -aag -abq -abq -abq -aag -aag -aag -abq -abq -ahj -ahN -ahM -ahM -ahM -ahM -ahj -ahj -abq -abq -abq -aag -aag -aag -aag -aaO -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aIF -aag -aag -aag -aLQ -abj -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -aqD -arD -arD -aqD -arD -arD -aqD -arD -arD -arD -aqD -arD -arD -arD -aqD -arD -arD -arD -aqD -aqD -bxt -aag -btM -avu -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -aag -aag -bTr -bUY -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aal -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cga -cga -aaf -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(80,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aar -aar -aar -aar -aar -aar -aar -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -abq -abq -abq -ahj -ahj -ahM -ahM -ahM -ahM -ahM -ahj -abq -abq -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aIF -aag -aag -aag -aLQ -abj -aqD -aqD -aqD -aqD -aqD -aqD -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aTy -aag -btM -avu -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -aag -bTx -aax -aax -aax -aax -abq -abq -abq -abq -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -ceZ -aaf -aaf -aaf -cfa -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -bmE -aGi -aad -aaf -aad -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cfW -cga -cga -cga -aaf -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(81,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aar -aar -aar -aar -aar -aar -aar -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -abq -abq -abq -ahj -ahM -ahM -ahM -ahj -ahj -ahj -abq -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -abz -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aIF -aag -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -btM -avu -bsy -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cga -cga -aaf -aaf -cfP -cfP -cfP -aaa -aaa -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(82,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aar -aar -aar -aar -aar -aar -aar -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -abq -abq -ahj -ahj -ahj -ahj -ahj -abq -abq -abq -abq -aag -aag -aag -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abp -aag -aag -aag -aag -aag -aag -aIF -aag -aag -aKZ -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -btM -avu -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -bmE -bmE -bmE -aaf -aaf -aaf -aaf -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(83,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aaj -aaj -aaj -aaj -aaj -aaj -abi -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aIF -aag -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abp -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -btM -avu -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -abz -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -cfd -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -bmE -bmE -bmE -bmE -bmE -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(84,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -abq -abq -abq -aag -aag -aag -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aIF -aag -aag -aaO -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bsy -aag -aag -aag -btM -avu -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aar -aar -bmE -bmE -bmE -aar -aar -aaf -aae -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(85,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aIF -aag -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaY -aHb -aHb -aHb -aHb -buX -avu -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aar -aar -bmE -bmE -bmE -aar -aar -aaf -aaf -aad -aad -aad -aaz -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(86,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aIF -aag -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -btM -buX -bww -bww -bww -bww -bBs -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -ceZ -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aar -aar -bmE -bmE -bmE -aar -aar -aar -aaf -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(87,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abi -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aIF -aag -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -btM -avu -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -cfb -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -aar -aar -aar -bmE -bmE -bmE -aar -aar -aar -aar -aar -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -bmE -bmE -bmE -bmE -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(88,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aaj -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abj -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -awm -aIG -awm -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -abz -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -btM -avu -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aar -aar -aar -aar -cfT -bmE -bmE -bmE -aar -aar -aar -aar -aar -aad -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -bmE -bmE -bmE -bmE -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(89,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aaj -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abj -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -aag -aaN -aag -aag -aag -aag -aag -aaY -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -aHb -asx -aIH -asx -abd -abd -aaj -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -btM -avu -bsy -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -cfd -cfm -aaf -aaf -aaf -aaf -ceY -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aar -aar -aar -aar -aar -bmE -bmE -bmE -aar -aar -aar -aar -aar -aad -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -bmE -bmE -bmE -bmE -bmE -bmE -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(90,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aaj -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abj -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaY -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -axg -aag -aag -aka -aag -aaN -aag -aag -aag -aag -aag -aHc -awn -aII -awn -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -btM -avu -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aar -aar -aar -aar -bmE -bmE -bmE -bmE -aar -aar -aar -aar -aar -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -bmE -bmE -bmE -bmE -bmE -aar -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(91,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aaj -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abj -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aIF -aag -aag -aaN -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -btM -avu -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aaO -abp -aag -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -ceY -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aar -aar -aar -aar -bmE -bmE -bmE -bmE -aar -aar -aar -aar -aar -aad -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -bmE -bmE -bmE -bmE -bmE -aar -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(92,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aaj -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abj -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aIF -aag -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bsy -btM -avu -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(93,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aaj -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abj -abq -abq -abq -abq -abq -aag -aag -aag -abq -abq -abq -aag -aag -aag -aag -aag -aaZ -aag -aag -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aIF -aag -aag -aag -aLQ -abj -aKZ -aag -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aag -aag -aag -btM -avu -aag -aag -aKZ -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -ceZ -aaf -aaf -cfb -cfm -aaf -aaf -ceY -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(94,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aaj -aaB -aaB -aaB -aaB -aaB -aaj -abk -abq -abq -abq -abq -abq -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aaZ -aaN -aag -abq -abq -abq -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aIF -aag -aag -aag -aLQ -aaj -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -aLP -btN -btN -aLP -aLP -byO -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -abq -abq -abq -aag -aag -aaO -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aar -aar -aar -aar -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(95,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aaj -aaj -aaB -aaB -aaB -aaj -abj -abq -abq -abq -abq -abq -abq -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aaZ -aag -aag -abq -abq -abq -abq -aag -aaO -aaO -aag -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aIF -aag -aag -aag -aLR -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aMH -aaj -abj -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -aag -aag -abq -abq -abq -abq -abq -aag -abq -abq -abq -abq -abq -aag -aag -abl -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -ceZ -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aar -cfP -cfP -aad -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(96,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aaj -aaj -aaH -aaR -aaH -aaj -abj -abq -abq -abq -abq -abq -abq -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -abq -abq -abq -abq -abq -aag -aag -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aIF -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aLQ -abj -aag -aag -aag -aka -aag -aag -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -abq -abq -abq -abq -abq -aag -abq -abq -aag -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -cfd -aaf -aaf -cfm -aaf -aaf -aaf -ceY -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aae -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aar -aad -aad -aad -aad -aad -aad -aar -aar -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(97,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aal -aal -aaI -aaS -aaI -aal -abk -abq -abq -abq -abq -abq -abq -aag -aag -aag -abq -abq -abq -abq -abq -aag -aag -aag -aaZ -aag -abq -abq -abq -abq -abq -abq -abq -aag -aag -abq -abq -abq -abq -abq -abq -aag -aag -abp -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aIJ -aJD -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -btO -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(98,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aab -aaC -aaJ -aaT -abb -abg -aab -abq -abq -abq -abq -abq -abq -aag -aag -abq -abq -abq -abq -abq -abq -aag -aag -aag -aaZ -aag -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -btP -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -aag -abq -aag -aag -aag -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -ceY -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(99,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aab -aaD -aaK -aaU -aaK -aaD -aab -abq -abq -abq -abq -abq -abq -aag -aag -abq -abq -abq -abq -abq -abq -aag -aag -aag -aaZ -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aZO -bbd -bbd -bbd -bbd -bbd -bbd -bbd -bbd -bbd -bmF -aag -aag -aag -aag -aag -btP -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -abp -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -abq -abq -abq -abq -abq -aag -aag -aag -aka -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -ceZ -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(100,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aaa -aab -aaE -aaL -aaV -aaL -abh -aab -abq -abq -abq -abq -aag -aag -aag -aag -abq -abq -abq -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -abq -abq -abq -aag -aag -aaO -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aka -aag -aag -aag -aag -aag -aag -aag -aag -aZP -bbe -bbe -bbf -bbe -bbe -bbf -bbe -bbe -bbe -bmG -aag -aag -aag -aag -aag -btP -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -cfb -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(101,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aaa -aab -aaF -aaF -aaF -aaF -aaF -aab -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -abz -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aqH -aqH -aag -aqH -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aHd -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aZP -bbf -bcx -bcx -beL -bgc -bhn -bhn -bjZ -blo -bmG -aag -aag -aag -aag -aag -btP -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -aag -abq -abq -abq -abq -abq -abq -aag -aag -aag -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(102,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aaa -aab -aaF -aaF -aaF -aaF -aaF -aab -abq -abq -abq -abq -aag -aag -aag -aag -aab -aab -aab -aab -aab -aab -aab -aab -aaN -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aaO -aag -aag -aqH -aqH -aqH -aqH -aqH -aqH -aag -akb -akb -akb -aag -aag -aag -aag -aag -aag -aaN -aag -aHd -aaN -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aaN -aag -aag -abp -aag -aag -aag -aZP -bbf -bcx -bdE -bbe -bgc -bgc -bgc -bjZ -blo -bmG -aag -aag -aag -aag -aag -btP -aag -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -aag -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -ceZ -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(103,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aaa -aab -aaF -aaF -aaF -aaF -aaF -aab -abq -abq -abq -abq -aag -aag -aag -aag -aab -aeG -afo -afo -afo -afo -afo -aab -aag -aaZ -aag -aag -aag -aag -aag -aag -akb -akb -akb -akb -aag -aqH -aqH -aqH -aqH -aag -aag -akb -akb -akA -akb -aag -aag -aag -aag -aag -aag -aag -aGj -aHe -aHQ -aHQ -aHQ -aHQ -aHQ -aHQ -aHQ -aHQ -aHQ -aHQ -aHQ -aRi -aag -aag -aag -aag -aag -aag -aag -aZP -bbf -bcx -bcx -bbf -bgc -bgc -biy -bjZ -blo -bmG -aag -aag -aag -aag -aag -btP -aag -aKZ -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -aag -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(104,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aab -aab -aaM -aaW -abc -aab -aab -abq -abq -abq -abq -aag -aag -aag -aag -aab -aeH -afo -aga -agF -ahk -afo -aab -aag -aaZ -aag -aag -aag -abp -aag -aag -akb -akA -akA -akb -aag -aag -aqH -aqH -aag -akb -akb -akb -akA -akA -akb -aag -aag -aag -aag -aag -aag -aag -aGk -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aRj -aag -aag -aag -aag -aag -aag -aag -aZP -bbe -bbe -bdF -bbe -bbe -bdF -bbe -bbe -bbe -bmG -aag -aag -aag -aag -aag -btP -aag -aag -aLQ -abj -aag -aag -aag -aKZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -ceZ -aaf -cfm -aaf -ceY -aaf -aaf -aad -aad -aad -aaA -aad -aad -aae -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(105,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aaj -aaj -aaj -aaj -aaj -aaj -aaj -abq -abq -abq -abq -aag -aag -aag -aag -aab -aeI -afo -agb -agG -ahl -afo -aik -aag -aaZ -aag -aag -aag -aag -aag -aag -akb -akA -akA -akb -aag -aag -aag -aag -aag -akb -akA -akA -akA -akA -akb -aag -aag -aag -aag -aag -aag -aag -aGk -aaj -aHR -aaj -aaj -aKs -aaj -aaj -aHR -aaj -aaj -aKs -aaj -aRj -aag -aag -aag -aag -aag -aag -aag -aZQ -bbg -bcy -bdG -bbh -bbh -bdG -bbh -bbg -bbg -bmH -aag -aag -aag -aag -aag -btP -aag -aag -aLQ -byP -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abe -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(106,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aaj -aaj -aaj -aaj -aaj -aaj -aaj -abq -abq -aag -aag -aag -aag -aag -aag -aab -aeJ -afo -agc -agH -ahm -afo -aab -aag -aaZ -aag -aag -aag -akb -akb -akb -akb -akb -akA -akb -akb -akb -akZ -akZ -akZ -akb -akb -akb -akb -akb -akb -akb -aag -aag -aag -aag -aag -aaN -aGk -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aab -aQf -aaj -aSm -aIK -aIK -aIK -aWI -aXJ -aYM -aWI -aWI -bbh -bdH -bbh -bbh -bho -bbh -aag -aag -aag -aag -aag -aag -aag -awm -btQ -awm -aag -aLQ -abj -aag -aag -abf -aag -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(107,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aax -aax -aax -aaX -aax -aax -aax -abq -abq -aag -aag -aag -aag -aag -aag -aab -aeG -afo -afo -afo -afo -afo -aab -aag -aaZ -aag -aag -aag -akb -akY -ame -ame -ame -aot -apb -apb -apb -apb -apb -apb -aok -avx -akb -akA -akA -akA -akb -aag -aag -aag -aag -aag -aag -aGk -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aab -aQg -aRk -aQg -aIK -aUp -aVA -aWI -aXK -aYN -aZR -aWI -bbh -bdI -bbh -bbh -bhp -bbh -aag -aag -aag -aag -aag -aag -aag -asx -btR -asx -aag -aLQ -abj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -cfd -cfm -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(108,1,1) = {" -aaa -aaa -aaa -aab -aac -aab -aar -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aab -aab -aab -aab -aab -aab -aab -aab -aag -aaZ -aag -abl -akb -akb -ala -akA -akA -akA -aou -apc -apd -apd -apd -apd -apc -akA -aou -akb -akA -akA -akA -akb -aag -aag -aag -aag -aag -aag -aGk -aac -aHS -aHS -aHS -aHS -aHS -aHS -aHS -aHS -aHS -aPf -aQh -aRl -aSn -aTz -aUq -aVB -aWI -aXL -aYO -aZS -aWI -bbh -bdJ -bbh -bbh -bdJ -bbh -aag -aag -abl -aag -aag -aag -aag -awn -btS -awn -aag -aLQ -abj -aag -bBt -bBt -bBt -bBt -bBt -bBt -bBt -bBt -bBt -bBt -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aKZ -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(109,1,1) = {" -aaa -aaa -aaa -aab -aac -aac -aas -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aaN -akb -akB -ala -akA -akA -akA -aou -apd -apW -apW -apW -apW -apd -akA -aou -akb -akA -akA -akA -akb -aag -aag -aag -aag -aEu -akb -akb -akb -aHT -aHT -aHT -aHT -aHT -aHT -aHT -aHT -aHT -aPg -aQi -aRm -aSo -aTA -aTA -aTA -aTA -aXJ -aYM -aZT -aWI -bcz -bcC -beM -bgd -bcC -bcy -aag -aag -aag -aag -aag -aag -aag -aag -btP -aag -aag -aLQ -abj -aag -bBt -bCJ -bEb -bFn -bGB -bGB -bFn -bKu -bLH -bBt -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -ceY -aaf -aaf -cfm -aaf -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(110,1,1) = {" -aaa -aaa -aaa -aab -aab -aab -aat -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -akb -akb -akA -ala -akA -akA -akA -aov -apd -apW -apW -apW -apW -apd -auo -avy -akb -akb -akb -akb -akb -akc -akc -akb -akb -akb -akA -aGl -akb -aHT -aHT -aHT -aHT -aHT -aHT -aHT -aHT -aHT -aPf -aQj -aRn -aSp -aTA -aUr -aVC -aWJ -aXM -aYP -aZU -bbh -bcA -bcC -bcC -bcC -bcC -bcy -bkb -bkb -bkb -bkb -bkb -aag -aag -aag -btP -aag -aag -aLQ -abj -aag -bBt -bCK -bEb -bFn -bGB -bGB -bFn -bKv -bLI -bBt -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -ceZ -aaf -aaf -aaf -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aag -aag -aag -aag -aag -aag -aag -abp -aag -abz -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -akb -akA -akA -ala -akA -amU -amU -aow -apd -apW -apW -apW -apW -apd -bte -avz -awy -awy -ayg -awy -awy -awy -avx -aCF -aDx -akb -aFs -aGm -akb -aHU -aHT -aHT -aHU -aHT -aHU -aHT -aHT -aHU -aPf -aQg -aRo -aSq -aTA -aUs -aVD -aWK -aXN -aYQ -aZV -bbi -bcB -bcB -beN -bge -bhq -bcy -bkb -blp -bmI -bnT -bkb -aag -aag -aag -btP -aag -bwx -bxu -aQf -bxD -bBt -bCL -bEb -bFn -bGC -bGC -bFn -bKw -bLJ -bBt -bNe -bNe -bNe -aag -aag -buX -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -cfb -cfm -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -akb -akA -akA -ala -akA -amU -anE -aox -apd -apW -apW -apW -apW -apd -akA -akA -akA -akA -akA -akA -akA -akA -aou -akb -aDy -akb -akA -aGn -akb -aHT -aHT -aHT -aHT -aHT -aHT -aHT -aHT -aHT -aIK -aQk -aRp -aSr -aTA -aUt -aVE -aWL -aXO -aXT -aZW -bbj -bcC -bcC -beO -bgf -beP -bcy -bkb -blq -bmJ -bnU -bkb -aag -aag -aag -btT -aag -bro -bxv -byQ -bxD -bBt -bCM -bEc -bFn -bGD -bGD -bFn -bKx -bLK -bBt -bOm -bPy -bNe -bNe -bNe -buX -buX -aag -aag -aag -aag -aag -aag -aag -aka -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -ceY -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -akb -akb -akb -ala -akA -amU -anF -aoy -apc -apd -aqI -aqI -apd -apc -aup -avA -awz -axh -ayh -akB -akA -aAx -aBH -aCG -aDz -aDy -aFt -aGo -akb -aHT -aIK -aIK -aIK -aIK -aIK -aHT -aHT -aHT -aIK -aQl -aRq -aSs -aTA -aUu -aVF -aWM -aXP -aYR -aZX -bbk -bcD -bdK -beP -bbh -bbh -bbh -bhx -bhx -bmK -bhx -bhx -bhx -bro -bsz -btU -bsz -bro -bxw -byR -bxD -bBt -bCN -bCN -bFn -bFn -bFn -bFn -bKy -bLL -bBt -bOn -bPz -bQG -bSd -bNe -buX -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKZ -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -cfd -aaf -aaf -aaf -cfm -aaf -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aar -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ail -aag -aaZ -aag -aab -akY -alg -alH -akA -amU -anG -aoz -ape -apX -aqJ -arF -asJ -asJ -asJ -asJ -asJ -axi -axi -axi -axi -aAy -akb -akb -aDA -akb -akb -aGp -aHf -aHV -aHV -aJE -aKt -aLa -aHV -aHV -aHV -aOf -aOf -aOf -aOf -aSt -aTB -aUv -aVG -aWN -aXQ -aXT -aZY -aWI -aWI -aWI -aWI -aWI -bhr -biz -bkc -bkc -bmL -bnV -bpe -bhx -bro -bsA -btV -bfm -bwy -bxx -byS -bxD -bBt -bCO -bEd -bFo -bGE -bIh -bJs -bKz -bLM -bBt -bOo -bPA -bPA -bSe -bNe -buX -buX -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaz -aad -aad -aad -aad -aad -aad -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -cfI -aad -aar -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aab -ala -akb -alI -alI -alI -alI -alI -alI -alI -aqK -arG -asJ -atq -auq -avB -asJ -axj -ayi -ayY -axi -aAy -akb -akb -aDB -aCG -asv -aGq -aHf -aHV -aIL -aJF -aKu -aKu -aLS -aLS -aHV -aOg -aPh -aQm -aOf -aOf -aOf -aUw -aVH -aWN -aXR -aYS -aZZ -bbl -bcE -bdL -beQ -aWI -bhs -biA -bkd -blr -bmM -bnW -bpf -bhx -bro -brs -brs -brs -bro -bxy -byT -bxD -bBt -bBt -bBt -bBt -bGF -bIi -bBt -bBt -bBt -bBt -bOp -bPA -bPA -bSf -bTy -bPM -bPM -bPM -bPM -bPM -bPM -bPM -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -ceY -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aab -ala -akb -amf -amV -amV -bLz -aoA -apf -alI -aqL -arH -asJ -atr -aur -avC -asJ -axk -ayj -ayZ -axi -aAy -aBI -aBI -aDC -aBI -aBI -akA -aHf -aHV -aIM -aJF -aKv -aKu -aLT -aLT -aHV -aOh -aPi -aOj -aRr -aSu -aOf -aUx -aVI -aWN -aXS -aXT -baa -bbm -bcF -bdM -beR -aWI -bht -biB -biC -bkf -bmN -bnX -bpg -bhx -bro -bsB -btW -buZ -bro -bxz -byU -bAk -bBu -bCP -bEe -bFp -bGG -bIj -bJt -bKA -bLN -bNc -bOq -bPB -bQH -bSg -bTy -bPE -bPE -bPE -bPE -bPE -bPE -bPM -aag -aag -aag -aag -abp -aag -aag -aag -aaZ -aKZ -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -ceY -cfm -aaf -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aab -ala -akb -amg -amW -amW -amW -amW -apg -apY -aqM -arI -asJ -ats -aus -avD -asJ -axl -ayk -aza -axi -aAy -aBI -aCH -aDD -aEv -aBI -akA -akA -aHV -aIN -aJG -aKw -aKu -aLU -aMI -aHV -aOi -aPj -aOj -aRs -aSv -aTC -aUy -aRp -aWO -aXT -aXT -bab -bbn -bcE -bdN -beS -aWI -bhu -biB -bke -bls -bmO -bnY -bph -bqq -brp -bsC -btX -bva -bro -bxA -byV -bAl -bBv -bBv -bEf -bFq -bGH -bIk -bJu -bKB -bLO -bNd -bOr -bPC -bQI -bSh -bTy -bVe -bVe -bXc -bXd -bZh -bPE -bPM -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -abz -aag -aao -aao -aaf -aaf -cfb -aaf -aaf -aaf -cfm -aaf -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aag -aag -aah -aah -aah -aah -aah -aag -aag -aah -aah -aah -aah -aah -aah -aiO -aaZ -aag -ceQ -ala -alJ -amh -cgG -amX -anH -aoB -aph -apZ -aqN -arJ -asJ -att -aut -att -asJ -axm -ayl -axi -axi -aAz -aBI -aCI -aDE -aEw -aBI -ayh -akA -aHV -aIO -aJH -aKx -aKu -aKu -aKu -aNx -aOj -aPj -aQn -aRs -aSw -aTD -aUy -aRp -aWO -aXT -aXT -bac -bbo -aWI -aWI -aWI -aWI -bhv -biC -biB -biB -biB -bkf -biC -bqr -brq -bsD -btY -bvb -bro -bxB -bxB -bxD -bBw -bBw -bBw -bFr -bGI -bIl -bIn -cgQ -cgT -cgW -bNe -bPD -bQJ -bNe -bTy -bVe -bVe -bXd -bXd -bZh -bPE -bPM -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -aai -abi -aaN -ajn -aag -ceQ -ala -akb -ami -amW -amY -anI -aoC -api -apY -aqO -arK -asK -atu -auu -avE -awA -axn -aym -axt -azN -aAA -aBI -aCJ -aDF -aEx -aBI -aGr -akA -aHV -aIP -aJI -aKy -aKy -aLV -aMJ -aHV -aOk -aPk -aQo -aRt -aSx -aTE -aUz -aVJ -aWP -aXU -aXT -bad -bbp -bcG -bdL -beT -aWI -bhw -biB -bkf -biB -biC -biB -bpi -bhx -brr -bsD -btZ -bvc -bro -bxC -byW -bxD -bBx -bCQ -bEg -bFs -bGJ -bIm -bIn -cgR -cgU -cgX -bNe -bNe -bNe -bNe -bPE -bVf -bSu -bSu -bSu -bSu -bPE -bPM -aag -bSv -bSv -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -ceZ -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aiP -ajn -aag -aab -ala -akb -amj -amW -amW -amW -amW -apj -alI -aqP -arL -asL -atv -auv -avF -awB -axo -ayn -azb -azO -aAB -aBJ -aCK -aDG -aEy -aBI -aGs -akA -aHV -aIQ -aJH -aKu -aKu -aKu -aMK -aNy -aOl -aPl -aQp -aRu -aSy -aTF -aUA -aVK -aWN -aXV -aYT -baa -bbq -bcH -bdM -beR -aWI -bhx -biD -bkg -blt -bmP -bnZ -bhx -bhx -brs -bsE -bro -brs -bro -bxD -bxD -bxD -bBy -bCR -bBw -bFt -bGK -bIn -bIn -cgS -cgV -cgY -bOs -bPE -bPE -bPE -bPE -ylY -bVg -bPE -bPE -bPE -bPE -bPM -bPM -aag -bSv -bSv -bSv -cbV -bSv -aKZ -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaj -aaj -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -abj -ajn -aag -aab -ala -akb -alI -amk -amW -amW -amW -apk -alI -aqQ -arM -asM -atw -auw -atw -awC -axp -ayo -azc -azP -aAC -aBI -aBI -aBI -aBI -aBI -aGt -akA -aHV -aIR -aJH -aKz -aLb -aLW -aML -aHV -aNc -aPm -aPm -aPm -aSA -aTG -aUB -aVL -aWN -aXV -aYT -bad -bbn -bcG -bdN -beU -aWI -bhx -bhx -bhx -bhx -bhx -bhx -bhx -bqs -brt -bsF -bua -bvd -bwz -bxE -byX -bro -bBz -bCS -bBw -bGL -bRe -bIo -bJv -bKF -bLS -bNg -bOt -bPF -bQK -bRa -bRa -bRa -bRa -bXe -bYi -bZi -bPE -bPE -bPM -aag -cbn -aag -cbn -aag -bSv -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaj -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -abj -ajn -aag -aab -akE -alc -alI -aml -amZ -anJ -aoD -apl -alI -aqR -arM -asN -atx -aux -avG -asN -axq -ayp -azd -azQ -aAD -aBK -aBK -aBK -aBK -aBK -aBK -akA -aHV -aIS -aJH -aKA -aLc -aLX -aMM -aHV -aOm -aPm -aPm -aPm -aSz -aTH -aUC -aVM -aWN -aXW -aXW -bae -bbr -aWI -aWI -aWI -aWI -bhx -biE -biE -bhx -biE -biE -bhx -bqs -bru -bsG -bub -bub -bwA -bxF -byY -bAm -bBw -bCT -bBw -bFv -bGM -bIp -bJw -bKG -bLT -bNh -bOu -bPG -bQL -bSi -bTz -bTz -bTz -bVh -bRa -bRa -bVt -bPE -bPM -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aar -aar -aar -aar -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -abj -ajn -aag -aab -akb -akD -alK -alK -ana -ana -ana -ana -alK -aqS -arN -asN -aty -auy -avH -asN -axr -ayq -axt -azR -aAE -aBL -aCL -aDH -aEz -aFu -aBK -akA -aHV -aIT -aJH -aKu -aKu -aKu -aMN -aNz -aOo -aPm -aPm -aPm -aKu -aTH -aUD -aVN -aWQ -aXX -aYU -baf -bbs -bcI -bdO -beV -bgg -bhy -bhy -bhy -bhy -bhy -bhy -bhy -bhy -brv -bsH -buc -bub -bub -bxG -byZ -bro -bBA -bCU -bEh -bFw -bGN -chP -bJx -bKH -bLU -bNi -bNi -bIo -bQM -bSj -bTA -bVh -bWe -bXf -bRa -bRa -bRd -bPE -bPM -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -ajn -aag -aag -akb -akD -alK -amm -anb -anK -aoE -apm -aqa -aqT -arO -asN -atz -auz -avI -asN -axs -ayr -axt -azS -aAF -aBK -aCM -aDI -aEA -aFv -aBK -akA -aHV -aIU -aJJ -aKB -aLd -aLY -aLY -aNA -aOp -aPn -aQq -aRv -aSC -aTI -aUE -aVO -aWR -aXY -aXY -bag -bbt -bcJ -bdP -beW -bgh -bhy -biF -bkh -blu -bmQ -boa -bpj -bhy -brw -bsI -bud -bve -bud -bud -bza -brs -bBB -bCV -bCV -bFx -bGO -bIq -bIq -bIq -bLV -bIq -bIq -bPE -bQN -bSk -bTB -bVi -bWf -bXg -bYk -bRa -bXf -caG -bVu -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -ajn -aag -aag -akb -akD -alK -amn -anc -anL -aoF -apn -aqb -aqU -arP -asN -asN -auA -asN -asN -axt -axt -axt -azT -aAG -aBK -aCN -aCN -aCN -aBK -aBK -akA -aHV -aIV -aJK -aKu -aLe -aLZ -aMO -aHV -aOq -aPo -aQr -aRw -aSD -aTJ -aUF -aSr -aWS -aXZ -aSr -bah -aSr -bcK -bcJ -bcJ -bcJ -bhy -biG -bki -bki -bki -bki -bpk -bhy -brx -bsJ -bue -bue -bwB -bue -bzb -bAn -bBC -bCW -bBM -bFy -bGP -bIr -bJy -bKI -bLW -bSQ -bOv -bPE -bQO -bSl -bTC -bVj -bWg -bXh -bYk -bZj -bVj -bPE -bPM -aag -aag -aag -aag -aag -aag -bSv -aaZ -aKZ -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -ceY -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -ajn -aag -aaN -akb -akD -alK -amo -and -anM -aoG -apo -aqc -aqV -arQ -asO -atA -auB -avJ -awD -axu -asO -aze -azU -aAH -aBM -aCO -aDJ -cdh -aFw -aBM -akA -aHV -aHV -aJL -aKC -aHV -aHV -aHV -aHV -aOr -aPp -aQs -aRx -aSE -aTJ -aUG -aVP -aWT -aYa -aYV -bai -aSr -bcL -bdQ -beX -bgi -bhy -biH -bki -blv -bmR -bob -bpl -bhy -bry -bsK -buf -bvf -bwC -bxH -bzc -bAo -bBD -bCX -bEi -bFz -bGQ -bIq -bJz -bKJ -bLX -bNk -bOw -bPH -bQP -bSm -bTD -bRa -bRa -bRa -bRa -bRa -bRa -bPE -bPM -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -cfd -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cgd -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -ajn -aag -aag -akb -akD -alK -amp -and -anN -aoH -app -aqd -aqW -arR -asP -atB -auC -auE -auE -axv -asP -azf -azV -aAI -aBN -aCP -aDK -aEC -aFx -aBM -akA -aHV -aHV -aHV -aHV -aHV -aHV -aHV -aNB -aOs -aOs -aQt -aOy -aSF -aTK -aUH -aVQ -aVQ -aUH -aUH -baj -bbu -bcJ -bdR -beY -bgj -bhy -biI -bkj -blw -bmS -boc -bpm -bhy -brz -bsL -bug -bvg -bsM -bxI -bzd -brs -bBE -bCY -bEj -bFA -bGR -bIs -bIB -bIB -bLY -bIB -bIB -bIB -bQQ -bSn -bTE -bRa -bWh -bXi -bYl -bYl -bYl -bPE -bPM -aag -aag -aag -aag -aag -aag -cbn -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -ceY -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -ajn -aag -akb -akb -akD -alK -amq -and -anO -aoH -apq -aqe -aqX -arS -asQ -atC -auD -avK -auE -axw -ays -azg -azW -aAJ -aBO -aCQ -aCQ -aED -aFy -aBM -akb -aHp -aIW -aJM -aKD -aHp -aMa -aMP -aNC -aOt -aPq -aQu -aRy -aSG -aTL -aUI -aVR -aWU -aVS -aUH -bak -bbv -bcJ -bdS -beZ -bgk -bhy -biJ -bkk -blx -bmT -bod -bpn -bhy -brA -bsM -buh -bsM -buh -bxJ -bze -brs -bBF -bCZ -bCV -bFB -bGS -bIt -bJA -bKK -bLZ -bNl -bOx -bPI -bQR -bSo -bTE -bRa -bWi -bPE -bYm -bZk -bZX -bPE -bPM -cbV -bSv -bSv -bSv -bSv -bSv -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -ceY -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -abj -ajn -aag -akb -akB -akD -alK -amr -ane -anP -aoI -apr -aqf -aqT -arT -asP -atD -auE -avL -awE -axx -asP -azh -azX -aAK -aBP -aCR -aDL -aEE -aFz -aBM -aHg -aHj -aIX -aJN -aHj -aHp -aMb -aMQ -aND -aOu -aPr -aQv -aRy -aSH -aSK -aUJ -aVS -aWV -aVR -aYW -bal -bbw -bcJ -bcJ -bfa -bcJ -bhy -biK -bkl -bly -bmU -boe -bpo -bhy -brB -bsN -bui -bvh -bwD -bxI -bzf -bro -bBG -bDa -cgx -bFC -bGT -bIt -chQ -bKL -bMa -bNm -bOy -bPI -bQS -bSp -bTF -bVk -bWj -bXj -bYn -bZl -bZY -bPE -bPM -cbo -cbo -cbo -cbo -cbo -cbo -cbo -cdZ -cbo -cbo -cbo -cbo -cbo -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aaA -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaj -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -abj -ajn -aag -akb -akb -akD -alK -alK -alK -anQ -anQ -anQ -alK -aqY -arU -asO -atB -auE -auE -auE -axy -asO -azi -azY -aAL -aBM -aCS -aBM -aBM -aBM -aGu -aHh -aHW -aIY -aJO -aHj -aHp -aMc -aMR -aNE -aOv -aPs -aQw -aOs -aSI -aTM -aUK -aVT -aWW -aVT -aYX -bam -bbx -bcM -bdT -bfb -bgl -bhy -biL -bkm -bhy -bmV -bmV -bmV -bqt -bqt -bqt -bqt -bvi -bwE -bxK -bzg -bzp -bBH -bCZ -bEk -bFD -bGU -bIu -bJC -bKM -bMb -bNn -bOz -bPJ -bQT -bSq -bTG -bVl -bWk -bXk -bYo -bZm -bZZ -bKC -ceN -cbp -cbp -cbp -cbp -cbp -cbp -cbp -cbp -cbp -cbp -cbp -cbp -cbp -ceN -ceN -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaj -aaj -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -abj -ajn -aag -akb -akC -alb -akb -akF -anf -anR -aoJ -aps -anV -aqZ -arI -asR -atE -atB -auE -auE -axz -asO -azj -azX -aAM -aBQ -aCT -aDM -aEF -aFA -aBT -aHi -aHj -aIZ -aJP -aHj -aHp -aMd -aMS -aNC -aOw -aPt -aQx -aRz -aSJ -aTN -aUL -aVS -aWX -aVS -aYW -ban -aSr -bcN -bdU -bfc -bgm -bhz -biM -bkn -blz -bmV -bof -bpp -bqu -brC -bsO -bqt -bvj -bwF -bxL -bzh -bzp -bBI -bDb -bEl -bFE -bGV -bIt -bJD -bKN -bMc -bNm -bOA -bPI -bQU -bSp -bTH -bVm -bWl -bXl -bYp -bZn -caa -bPE -bPM -cbq -cbq -cbq -cbq -cbq -cbq -cbq -cea -cbq -cbq -cbq -cbq -cbq -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cgd -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -abk -ajn -aag -akb -akD -akb -akb -akb -anf -anS -aHE -apt -aqg -ara -arV -asO -atF -asP -avM -asP -asO -asO -azk -azZ -aAN -aBR -aCU -aCU -aEG -aFB -aBT -aHj -aHj -aHj -aJQ -aHj -aHp -aMe -aMT -aNC -aOx -aPu -aQy -aRy -aSK -aTO -aUM -aVU -aWY -aVR -aUH -bao -bby -bcO -bdV -bfd -bgn -bhA -biN -bko -blA -bmV -bog -bpq -bqv -brD -bsP -bqt -bvk -bwG -bxM -bzi -bAp -bBJ -bDc -bEm -bFE -bGW -bIt -bJE -bKO -bMd -bNo -bOB -bPI -bQV -bSp -bRa -bVn -bWm -bPE -bYm -bZk -bZX -bPE -bPM -cbn -cbV -bSv -bSv -bSv -bSv -cbV -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -cfd -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cgd -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aal -aal -aal -aal -aal -aal -aal -aal -aal -abr -abA -abR -acf -acv -acv -acv -abu -aee -aeK -afp -aal -aal -aal -aal -aim -aaN -ajn -aag -akc -akD -akb -akF -akF -ang -anT -aoK -apu -aqh -arb -arW -asS -asS -auF -auG -awF -axA -ayt -azl -aAa -aAO -aBS -aCV -aDN -aEH -aFC -aBT -aHk -aHj -aHj -aJQ -aHj -aLf -aHp -aMU -aNF -aOy -aOy -aOy -aOy -aSL -aTK -aTK -aTK -aTK -aTK -aTK -bap -bbz -bcP -bdW -bfe -bfe -bhB -biO -bkp -blB -bmW -boh -bpr -bqw -bqw -bsQ -bqt -bvl -bwH -bxN -bzj -bAq -bBK -bDd -bEn -bFF -bGX -bIs -bIB -bIB -bMe -bIB -bIB -bIB -bQW -bSp -bRa -bVn -bWn -bXm -bYq -bYq -cab -bPE -bPM -aag -aag -aag -aag -aag -aag -bSv -aaZ -aKZ -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -ceY -aaf -aaf -cfm -aaf -aaf -aaf -cfb -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aam -aam -aam -aam -aam -aam -aam -aam -aam -abs -abB -abS -acg -acv -acv -acv -abs -aef -aeL -acg -aam -aam -aam -aam -aam -aam -aaZ -aag -akc -akD -akF -akF -akF -anf -anU -aoL -apv -aqi -arc -arX -asT -atG -auG -avN -asT -axB -ayu -azm -aAb -aAG -aBT -aCW -aDO -cdq -aFD -aBT -aHl -aHj -aJa -aJQ -aHj -aLg -aHp -aMV -aNG -aLk -aLk -aLk -aLk -aLk -aLk -aLk -aLk -aLk -aLk -aLk -aLk -bbA -bcP -bdX -bff -bgo -bhC -biP -bkq -blC -bmX -boi -bps -bqx -brE -bsR -bqt -bvm -bwI -bxO -bzk -bzp -bBL -bDb -bEo -bFF -bGY -bIv -bJF -bKP -bMf -bNp -bOC -bIv -bPN -bQX -bTJ -bVo -bWo -bXn -bYr -bYl -cac -bPE -bPM -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -ceY -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aae -aad -aad -aaQ -aad -aad -aar -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -abs -abC -abT -ach -acw -acw -acw -adz -aeg -aeM -ach -acw -acw -acw -acw -ain -aag -aaZ -aag -akb -akD -akb -akb -akb -anf -anV -aoM -anf -aqj -ard -arY -asU -asV -auH -asV -asV -asW -asW -asW -aAc -aAP -aBT -aBS -aBS -aBS -aBT -aBT -aHm -aHW -aJb -aJR -aHj -aLh -aHp -aMW -aNH -aNH -aPv -aNH -aNH -aNH -aNH -aNH -aNH -aWZ -bxl -aNH -baq -bbB -bcQ -bcQ -bcQ -bgp -bhD -biQ -bkr -blD -bmV -boj -bol -bqy -brF -bsS -bqt -bvn -bwJ -bxP -bzl -bAr -bBM -bDe -bBM -bFG -bGP -bIw -bJG -bKQ -bMg -bNq -bOD -bPK -bQY -bSr -bTL -bVp -bWp -bXo -bVp -bWp -cad -bPE -bPM -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -abs -abD -abU -aci -acx -acP -acx -abt -aeh -aeN -aci -agd -agI -abI -ahO -aci -aag -aaZ -aag -akb -akE -alc -alL -ams -anh -anW -aoN -apw -aqk -are -arZ -asV -atH -auI -avO -awG -axC -ayv -asW -aAd -aAQ -aBK -aCX -aDP -aEJ -aFE -aBK -aHn -aHj -aJc -aJS -aKE -aLi -aHp -aMW -aNH -aOz -aPw -aQz -aNH -aSM -aRF -aUN -aVV -aPw -aYb -aYb -baq -bbC -bcR -bcR -bcQ -bgq -bhE -biQ -bks -blE -biQ -biQ -biQ -biQ -bmV -bmV -bqt -bvo -bwK -bxQ -bzm -bAs -bBN -bCZ -asw -bFH -bGZ -bIx -bJH -bKR -bMh -bNr -bOE -bIv -bQZ -bSs -bTM -bVq -bFg -bXp -bVq -bPe -cae -caG -bVu -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -ceY -aaf -aaf -aaf -cfm -cfb -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -abl -abt -abE -abE -abE -abE -abE -abE -abE -abE -abE -afq -age -agJ -age -ahP -abm -aiQ -aaZ -aag -akb -akB -akD -alL -ams -anh -anX -aoO -apx -ikW -arf -asa -asW -atI -auJ -auI -auI -axD -ayw -asV -aAe -aAR -aBL -aCL -aDQ -aEK -aFu -aBK -aHo -aHj -aHj -aJT -aHj -aLj -aHp -aMW -aNH -aOA -aPx -aQA -aRA -aSN -aTQ -aUO -aVW -aXa -aYc -aYY -baq -bbD -bcS -bdY -bfg -bgr -bhF -biR -bkt -blF -bmY -bok -biQ -bqz -brG -brG -bqt -bvp -bwL -bxR -bzn -bAt -bBO -bDf -bEp -bFH -bHa -bIA -bIv -bIv -bIv -bIv -bIv -bIv -bPN -bSt -bTK -bVr -bWr -bXq -bYs -bWr -caf -bPE -bPM -aag -aag -aag -aag -aag -aag -cbn -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -ceY -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aar -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -abm -abF -abV -acj -acy -acQ -afF -acQ -aei -aeO -afr -agf -abm -abm -abm -abm -aag -aaZ -aag -akb -akb -akD -alL -ams -alL -aqn -aoP -apy -aql -arg -asb -asW -atJ -auK -auI -auI -axE -ayx -asV -aAf -aAS -aBK -aDR -aDS -aDR -aDR -aDR -aDR -aDR -aJd -aJU -aHp -aHp -aHp -aMW -aNH -aOB -aPy -aQB -aRB -aSO -aTR -aUO -aVX -aPw -aYd -aYd -baq -bbE -bcT -bdZ -bfh -bgs -bhG -biS -bku -blF -bmZ -aOn -biQ -biQ -bmV -bmV -bqt -bvq -bwM -bvr -bzo -bvr -bBP -bDg -bZJ -bFI -bHb -bIy -bJI -bKS -bMi -bNs -bOF -bIv -bPO -bRc -bTN -bTP -bWs -bXr -bYt -bZp -cag -bPE -bPM -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -abz -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -ceZ -aaf -aaf -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgd -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -abm -abG -abW -ack -acz -acR -abm -acR -aej -aeP -afs -agg -abZ -ahn -ahQ -aio -aag -aaZ -aag -aag -akb -ald -alL -ams -alL -aqn -aoP -apz -aqm -arh -asc -asW -atI -auL -avP -awH -axF -ayy -asW -aAg -aAT -aBU -aDR -aHX -aHX -aHX -aJV -aJW -aJX -aJY -aKH -aKF -aLk -aLk -aMX -aNH -aNH -aNH -aNH -aRC -aSP -aTR -aUO -aVX -aPw -aPw -aYb -baq -bbF -bcU -bea -bcQ -bgt -bhH -biT -bkv -blG -cgt -bom -bpu -bqA -bqt -bqt -bqt -bvr -bvr -bvr -bvr -bvr -bBQ -bDh -bEq -bFJ -bHc -bIz -bJJ -bKT -bMj -bNt -bOG -bIv -bVi -bRf -bTO -bOl -bTQ -bTR -bYu -bZq -bPE -bPE -bPM -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -cfb -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgd -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgd -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -abu -abH -abX -abE -acA -acS -acS -acS -aek -aeQ -aft -aft -agK -aho -ahR -aip -aiR -ajo -aag -akb -akb -akD -alL -ams -anh -anZ -aoP -aPc -aql -arh -asd -asW -atK -asW -asW -asV -axG -asV -asW -aAh -aAU -aBV -aCY -aCY -aCY -aCY -aCY -aCY -aCY -aJe -bhU -aDb -aLl -aMY -aLl -aLl -aOG -aJf -aOH -aNH -aSQ -aTR -aUO -aVY -aXb -aYe -aYZ -baq -bbF -bcV -bea -bcQ -bgu -bhI -biQ -bkw -blH -bnb -bon -bpv -bqA -brH -bsT -buj -bvs -bsU -bxS -bzp -bAu -bBR -bDi -bEr -bFK -bHd -bIA -bJK -bKU -bIv -bNu -bOH -bIv -bRb -bTI -bTI -bPL -bPL -bPE -bPE -bPE -bPE -bPM -bPM -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aan -aan -aan -aan -aag -aag -aag -aag -aag -abt -abI -abY -abE -acB -ack -adg -ack -ack -aeR -afu -bqZ -abZ -ahp -ahS -aio -aag -ajp -aaN -akb -akC -alb -alL -ams -anh -anZ -aoQ -apz -aqm -arh -ase -asX -atL -auM -avQ -awI -axH -ayz -azn -aAi -aAV -aBW -aCY -aDT -aEL -aFF -aGv -aHq -aCY -aub -bjf -aDb -aLl -aOC -aPz -aLl -aLm -aPz -aLo -aNH -azB -aTS -aUP -aVZ -aPw -aYf -aZa -bar -bar -bar -bar -bfi -bgv -bhJ -biQ -bkx -blH -bnc -boo -bpw -bqA -brI -bqB -buk -bvt -bsU -bxT -bxT -bAv -bAv -bDj -bxT -bFL -bHe -bIv -bIv -bIv -bIv -bNv -bOI -bsf -bsf -bsf -bsf -bsZ -bVs -bPM -bPM -bPM -bPM -bPM -aag -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -ceZ -aaf -cfm -aaf -aaf -aaf -cfd -aaf -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aae -aad -aad -aaQ -aad -aad -aad -aar -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aan -aau -aay -aan -aag -aag -aag -aag -abm -abm -abm -bka -acl -abE -abY -adh -abY -abE -aeS -afv -abm -bka -abm -abm -abm -aag -ajp -aag -akb -akD -ale -alL -alL -alL -aoa -aoR -apA -apC -ari -asf -asY -atM -auN -avR -awJ -axI -ayA -azo -aAj -aAW -aBX -aCZ -aDU -aEM -aFG -aGw -aHr -aCY -apM -bjg -aKG -aLl -aOF -aOI -aPB -aPD -aPA -aQE -aNH -aSS -aTT -aUQ -aWa -aXc -aXc -aZb -bas -bbG -bcW -bar -bfi -auQ -bhK -biU -bky -blI -bnd -bop -bpx -bqA -brJ -bsU -bsU -bsU -bsU -bxT -bzq -bAw -bBS -bDk -bEs -bFM -bHf -bIB -bJL -bKV -bMk -bNw -aaj -bPM -bPM -bPM -bPM -bVs -bVs -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfQ -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aan -aav -aaw -aan -aag -aag -aag -aaN -abn -abv -abJ -abZ -adf -acC -acR -abm -acR -ael -aeT -afw -abm -ahs -agL -ahs -abm -aiS -aaj -ajB -akb -akD -akb -akb -amt -akb -aob -aoS -apB -bwj -arj -asg -asZ -atN -auO -avS -awK -axJ -ayB -avS -avS -aAX -aBY -aDa -aDV -aEN -bna -aDV -aDV -aCZ -apM -bjg -aZg -aOM -aOD -aOL -aOL -aPC -aQC -aOE -aRD -aST -aPw -aUR -aWb -aXd -aXd -aZa -bat -aZa -aZa -bar -bfj -bgx -bhD -biQ -bkz -blJ -bne -biQ -bpy -biQ -brK -bsV -bul -bvu -bsU -bxT -bzr -bAx -bBT -bDl -bEt -bFM -bHg -bIB -aaj -aaj -bMl -bxs -bxs -aag -aag -aag -aag -bVv -bWt -bXs -bZV -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -ceY -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfQ -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aan -aaw -aaw -aaG -aag -aaY -abd -abd -abo -abw -abK -aca -acm -acD -acT -agh -acT -aem -aeU -afx -agi -agM -ahq -abE -abm -aiT -ajq -ajC -agk -akD -alf -akb -akb -akb -akb -alL -alL -alL -ark -aqo -ata -atO -auP -avS -awL -axK -ayC -azp -avS -aAY -aBZ -aCY -aDW -aEO -aFH -aGx -aHs -aDa -aJg -bjg -aZh -aOM -aPz -aPz -aMh -aNI -aQD -aPz -aRE -aSU -aPw -cgk -aWc -aXe -aYg -aZa -bau -bbH -bcX -bar -bfk -bgy -bhL -biV -bkA -blK -bnf -boq -bpz -bqB -brL -bsW -buj -bvv -bsU -bxT -bzs -bAy -bBU -bDm -bEu -bFN -bHh -bIC -aaj -aaj -bMm -bxs -bxs -aag -aag -aag -aag -bVv -bWu -bXs -bZW -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -cbV -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -cfR -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aan -aaw -aay -aan -aag -aaZ -aag -aag -abn -abx -abL -abZ -acn -acE -acU -adi -adA -aen -aeV -afy -agj -abE -ahr -ahT -abm -aiU -ajr -ajD -agk -akE -alg -alg -alc -akF -akb -aoT -apD -aqp -arl -asi -atb -atP -ash -avS -awM -axL -ayD -azq -avS -aAZ -aCa -aCY -aDX -aEP -aDV -aGx -aHt -aCY -aJh -bjh -aZi -aOM -aMf -aPz -aPz -aPz -aQG -aQF -mBp -aSV -aTU -aUT -aWd -aXf -aYh -aZa -bau -aZa -aZa -bar -bfl -bgz -bhM -biW -bkB -blL -bng -boq -bpA -bqC -brM -bsX -buj -bvw -bsU -bxU -bzt -bAz -bAz -bDn -bEv -bFO -bHi -bIC -aaj -aaj -bMm -aaj -aaj -aag -aag -aag -aag -bVv -bWt -bXs -bZV -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bSv -aaZ -aKZ -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -cfb -aaf -aaf -cfm -aaf -aaf -aaf -cfb -aaf -aaf -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -cfR -cfR -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cgd -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aan -aan -aan -aan -aag -aaZ -aby -aby -aby -aby -aby -aby -aco -acF -aby -aby -aby -aeo -aeW -afz -abm -agL -byq -agL -abm -aiV -ajs -ajE -agk -bYZ -akF -akb -amu -ani -akb -aoU -apE -aqq -aqq -asj -atc -aqq -auR -avS -awO -axM -ayE -azr -avS -aBa -aCa -aCY -aDY -aEQ -aDV -aGx -aGx -aCY -apM -bjg -aLr -aLl -aLp -aPz -cgf -aLo -aQD -aNb -aNH -aSW -aTV -aUS -aWe -aXg -aXg -aZa -bav -bbI -bcY -bar -aSR -bgz -bhM -biX -bkC -blM -bnh -boq -bpB -bqD -brN -bsY -bum -boq -bsU -bxT -bzu -bAz -bBV -bDo -bEw -bFP -bHj -bIC -aaj -aaj -bMm -bMm -bxs -aag -aag -aag -aag -bWt -bXs -bXs -bZW -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bSv -aaZ -aag -aag -aag -aag -abp -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -cfR -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aaZ -aby -acG -adC -chi -chp -cht -acp -acH -aby -acb -adB -aep -aeX -afA -agk -agk -agk -agk -agk -aiW -ajt -ajC -akd -akd -alh -akd -amv -agk -agk -aoV -apF -aqr -aqr -ask -atd -atR -auS -avU -bor -awN -ayF -azs -avS -aBb -aBZ -aCY -aCY -aCY -aFI -aGy -aFI -aDb -apM -bjg -aDb -aLl -aLq -aPz -aLl -aNa -aQH -aMZ -aRG -aSX -aPw -aUS -aWe -aXd -aYi -aZa -baw -bbJ -bar -bar -bfn -bgA -bhN -biY -bkD -blN -blN -blN -bpC -bqE -bqE -bqE -bqM -bvx -bvx -chN -bzv -bAA -bAz -bDp -bEx -bFP -bHk -bID -bID -bID -bID -bID -bID -bID -bID -bSv -bSv -bSv -bSv -bSv -bSv -bSv -bSv -bSv -bSv -bSv -cbn -cbn -cbV -bSv -bSv -bSv -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -ceZ -cfm -aaf -ceY -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aaQ -aad -aad -aad -aaf -aaf -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aaZ -abO -acW -cha -chj -chq -chu -acp -acp -adl -acc -adB -aep -aeY -afB -agk -agN -aht -agk -aiq -aiX -aju -ajF -akd -akG -akH -akd -amw -anj -aoc -agk -apG -aqq -bef -asj -ate -atS -auT -avS -awP -awN -awN -azt -avS -aBc -aCb -aCY -aDV -aDV -aDV -aDV -aDV -aDb -apM -bjg -aDb -aLl -aLl -aLl -aLl -aOJ -aPz -aQI -aRG -aSY -cgD -aUS -aWf -aXh -aYj -aZc -aZa -aZa -bar -beb -bfo -bgB -bhO -biZ -bkE -blO -aSB -aTP -bpD -bqF -brO -bqE -bqM -bvy -bwN -bxV -bzw -bAB -bBW -bDq -bEy -bFQ -bHl -bID -bJM -bKW -bMn -bMn -bKW -bJM -bID -bSw -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aaZ -acq -aeq -chd -chm -acp -acp -chH -abN -adj -acd -adB -aep -aeZ -afC -agk -agO -ahu -ahU -air -aiY -ajv -ajG -akd -akG -ali -akd -amx -ank -aod -agk -apH -aqq -arm -asl -aoT -atT -aoT -avS -awQ -awN -cgw -azu -avS -aBd -aCc -aDb -aDb -aER -aFJ -aDb -aDb -aDb -apM -bkI -aMj -aLn -cgP -cgZ -aLl -aOK -aPz -aQJ -aRH -aSZ -aSZ -aUU -aWg -aXg -aXg -aNH -bax -bax -bar -bec -bfp -bgC -bhP -bja -bkF -blP -bnj -bos -bpE -bqG -brP -aZd -bqM -bvz -bwO -bxW -bzx -bwT -bxY -bDr -bxY -bFR -bHm -bID -bJN -bKX -bMo -bNx -bKX -bPP -bID -bKj -bKj -aag -bKj -bKj -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -ceZ -aaf -aaf -aaf -aaf -cfm -aaf -aaf -cfd -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cgd -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aaZ -aby -acV -adC -chn -chr -chv -chy -chy -chz -ace -chA -aer -afa -afD -agk -agP -ahv -agk -ais -aiZ -ajv -ajH -ake -akH -alj -alM -amy -anl -aoe -agk -apI -aqq -aqq -asm -atf -aqq -aqq -avT -awN -awN -awN -azv -avS -apM -aCd -aDc -aDb -aDb -aDb -aDb -aHu -aHY -apM -arq -aMg -aDb -aDb -aDb -aLl -aOM -aPE -aQK -aRI -aRG -aRG -aUS -aWh -aRG -aNH -aRI -aZa -bbK -bcZ -bed -bfq -bgD -bhQ -bjb -bcZ -blN -bnk -bot -bpF -bqH -bqK -bta -bqM -bvA -bwP -bxX -bzy -bAC -bAC -bDs -bAC -bFS -bHm -bID -bJO -bKY -bMp -bLa -bMp -bPQ -bID -bKj -bKj -bKj -bKj -bKj -aag -bKj -bKj -bKj -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -ceY -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aaf -aaf -aaf -bmE -cfS -cfS -cfS -cfP -cfS -cfS -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aaN -aaZ -aby -act -aEI -cho -cbM -ccq -abM -adE -adj -acI -adB -aep -aeZ -afC -agk -agk -agk -ahV -ait -aiZ -ajv -ajH -akd -akd -akd -akd -amz -anm -aof -aLw -apJ -aqs -arn -asn -atg -aqq -aqq -avS -awR -axN -ayG -azw -avS -apM -aCd -aCd -apM -apM -apM -apM -apM -apM -aJi -arq -apM -apM -aMk -apM -apM -apM -aPF -apM -apM -apM -apM -axQ -aWi -apM -aYk -aZe -bay -bbL -bda -bee -bfr -bgE -bhR -bjc -bkG -blN -bnl -bou -bpG -bqI -bqK -btb -bqM -bvB -bwQ -bxW -bzz -bwT -bwT -bDt -bwT -bFT -cgI -bIE -bJP -bKZ -bLa -bLa -bLa -bPR -bID -bKj -bKj -bKj -bKj -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -abf -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -cfb -aaf -aaf -aaf -cfm -aaf -aaf -ceY -aaf -aaf -aaf -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aaZ -aby -aEB -acp -acp -bNj -ccQ -aby -aby -aby -adF -adG -aes -afb -afE -agl -agQ -agQ -ahW -aiu -aiZ -ajv -ajI -akf -bCp -alk -alN -amA -ann -aog -agk -apK -aqt -aro -aso -ath -atU -auU -avS -avS -avS -avS -azx -avS -aBf -aCe -aDd -aAk -aAk -aAk -aGz -aAk -aAk -aAk -aJZ -aAk -aAk -aAk -aAk -aNJ -aON -aPG -aAk -aAk -aAk -aAk -aUV -aWj -aXi -aYl -aZf -baz -bbM -bdb -cgr -bfs -bgF -bhS -bjd -bkH -blN -bnm -bov -bpH -bqJ -brQ -btc -bqM -bvC -bwR -bxY -bzA -bwT -bwT -bDr -bwT -bFT -bHm -bIF -bJP -bLa -bMq -bLa -bOJ -bPS -bID -bSx -bSx -bKj -bKj -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aag -aKZ -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aaQ -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -bmE -bmE -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aaZ -acr -acX -adk -acp -acp -cdd -acp -acp -acp -chk -aby -aet -afc -akI -agm -cgi -agR -ahX -aiv -aja -ajv -ajv -ajv -ajv -ajv -ajv -amB -ano -aoh -agk -apL -aqu -arp -apL -aoT -aoT -aoT -avS -avS -apM -apM -atV -apM -apM -aCf -arq -apM -aES -aFK -aGA -aHv -aHZ -apM -aKa -apM -apM -apM -aBe -atY -aKJ -qfY -aBd -aKJ -aBd -aTW -apM -apM -aXj -aCd -apP -baA -bbN -bdc -beg -bft -bgG -bhT -bje -bbK -blN -bnn -bow -bpI -bqK -bqK -btd -bqM -bvD -bwS -bxZ -bzB -bAD -bBX -bDu -bBX -bFU -bHo -bIG -bJQ -bLb -bMr -bNy -bOK -bPT -bRg -bSy -bSx -bKj -bKj -bKj -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -ceY -aaf -aaf -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -bmE -bmE -bmE -bmE -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aaY -abd -abd -abd -axg -acs -acY -anu -chx -chD -chE -chF -chF -chF -chG -aby -adG -afd -adB -agk -agk -agk -ahV -aiw -ajb -ajv -ajv -ajv -asu -ajv -ajv -amB -ano -aoi -agk -apM -apM -arq -apM -apM -atV -apM -avV -awS -axO -ayH -azy -aAk -aAk -aCg -aDe -aDZ -aET -aEb -aGB -aHw -aIa -aGH -aKb -apM -apM -apM -apM -aNK -nKF -aPH -aPI -aPH -aPI -aKJ -aUW -apM -aXj -aCd -aZg -aZg -ydj -bbO -bbO -bbO -bbK -bKD -bLQ -bKD -blQ -bno -box -bpI -bqK -brP -bni -bqM -bvE -bwT -bya -bzC -bAE -bBY -bBY -bBY -bFV -bHp -bID -bJR -bLc -bMs -bNz -bOL -bID -bID -bSz -bSx -bSx -bSx -bSx -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -ceZ -aaf -aaf -aaf -aaf -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -bmE -bmE -bmE -bmE -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aaZ -aah -aah -aah -aah -acq -acZ -adD -aby -aby -aby -aby -chB -chC -aby -aby -afG -afd -adB -agk -agN -aht -agk -aix -ajb -ajv -ajJ -akg -akJ -all -alO -amC -anp -aoj -aoW -apN -aqv -arr -aqv -aqv -atW -aqv -avW -aqw -axP -ayI -azz -aAl -aBg -apM -avX -aEa -aEU -aEV -aEV -aEV -aIb -aJj -aKc -apM -aLs -aAl -apM -apM -aBd -aPH -aPI -aPH -aPI -aBd -apM -apM -aXj -aWl -aZh -baB -bbO -bdd -beh -bfu -bgH -bKE -bLR -bKD -blR -bnp -boy -bpI -bqL -brR -bqM -bqM -bvF -bwU -byb -bzD -bzD -bzE -bzE -bzE -bzG -bzG -bID -bID -bID -bID -bID -bID -bID -bID -bSA -bTS -bTS -bSy -bXt -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -ceZ -aaf -aaf -ceZ -cfm -aaf -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -bmE -bmE -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -chg -aaj -aaj -aaj -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -aaj -che -adH -afH -afe -adB -agk -agO -ahu -ahU -air -ajc -ajw -ajw -akh -akK -alm -ajw -amD -anq -anq -aoX -apO -apM -ars -oRX -tbF -eQA -cLv -avX -apM -axQ -apM -azz -aAm -aBh -apM -aDf -aEb -aEV -aEV -aGC -aEV -aEV -aJk -aKc -apM -aLt -aAm -apM -aNL -aKJ -aPI -aQL -aRJ -aRJ -aTX -aUX -aBe -aXj -aCd -aZi -aZi -bbO -fhn -bbO -bbO -bbO -bLP -bNf -vvt -blS -bnq -blS -bpJ -bqM -bqM -bqM -bun -bvG -bde -byc -bzE -bAF -bAG -bAG -bAG -bFW -bzG -bzG -bzG -bzG -bzG -bzG -bzG -bzG -bzG -bzG -bzG -bzG -bSz -bXt -bKj -bKj -bKj -bKj -bKj -aag -aag -ccS -aag -aag -abl -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -bmE -bmE -cfS -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -chg -aaj -aaj -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -aaj -che -adG -afI -adH -adH -agk -agP -ahv -agk -aiy -ajd -ajx -ajK -aki -akL -ajv -alP -amE -anr -ajx -aoY -apP -aqw -aqw -aqw -aqw -atX -auV -avY -aqw -axP -ayJ -azz -aAn -aBi -apM -avX -aEc -aEW -aFL -aGD -aHx -aGF -aJl -aKc -apM -aLu -aAn -apM -apM -aBd -aPH -aQM -aPH -aPI -aBd -aUY -aBe -aXj -aCd -apM -baC -bbP -bde -bei -bfv -bgI -cgh -bji -bek -bde -bek -bek -bpK -bqN -bek -btf -bpK -bgI -bwV -byd -bzE -bAG -bBZ -bDv -bEz -bFX -bHq -bzG -bJS -bLd -bzG -bNA -bOM -bPU -bAG -bAG -bTT -bzG -bSz -bSx -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aag -aaZ -aKZ -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -cfb -aaf -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -bmE -bmE -cfS -cfS -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -chg -aaj -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -aaj -che -aag -afJ -aag -aag -agk -agk -agk -agk -aiz -aje -aiz -ajL -akj -akM -aln -alQ -aiz -ans -agk -agk -apM -aqx -art -apM -apM -atY -auW -avZ -awT -axR -apP -azA -aqw -aqw -ayJ -aDg -aEd -aEX -aFM -aGE -aHy -aIc -aJm -aKd -apM -apM -apM -apM -aNK -pcP -aPH -aPI -aPH -aPI -aKJ -aUZ -apM -aXk -aYm -aZj -baD -bbQ -bdf -bej -bfw -bgJ -bhV -bjj -bhV -blT -bhV -boz -bpL -bqO -bhV -btg -buo -bvH -bwW -bye -bzF -bAH -bCa -bDw -bEA -bAH -bAH -bIH -bJT -bLe -bIH -bAH -bAH -bPV -bRh -bAG -bTU -bzG -bSz -bSx -bSx -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -chg -aaj -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -aaj -che -aag -ado -aag -aag -aag -aag -aag -agk -aiA -ajf -ajy -ajM -ajM -ajM -ajM -ajM -aiA -ant -agk -agk -agk -agk -aru -asp -ati -aru -auX -aru -aru -axQ -apM -atY -apM -apM -aCd -avX -apM -aES -aEc -aGF -aHz -aHZ -apM -aKe -aJm -aJm -aJm -aJm -aNM -dDd -aKJ -aBd -aKJ -aBd -aTW -aBk -apM -aXl -aYn -apM -apM -bbP -bde -bek -bfx -bgK -bhW -bjk -bkJ -blU -bek -boA -blU -bqP -brS -bth -bgK -bvI -bwX -byf -bzE -bAG -bBZ -bDv -bEB -bFY -bHr -bII -bJU -bLf -bII -bAG -bAG -bAG -bRi -bFX -bTV -bzG -bSz -bSD -bSx -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -ceY -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -cfd -aaf -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -chg -aaj -aaj -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -aaj -che -aag -ado -aag -aag -aag -aag -aah -aah -aiB -ajg -aiB -aag -aag -akN -aag -aag -aiB -chh -agk -aag -aag -aag -aru -asq -atj -atZ -auY -awa -aru -axS -ayK -ayK -eti -aBj -aCh -aDh -aEe -aEY -aEY -aGG -aEe -aEe -aEe -aEe -aEe -aEe -aEe -aEe -aEe -aEe -aPJ -aEe -aEe -aEe -aEe -aVa -apM -aXm -fIL -aYo -aYo -aYo -aYo -aYo -bfy -bgL -bhX -bhX -bhX -bhY -bnr -bhY -bhX -bhX -brT -bti -bup -bvJ -bwY -bwY -bzG -bAI -bAG -bAG -bAG -bFZ -bHs -bzG -bzG -bzG -bzG -bNB -cgA -bAG -bRj -bAG -bTW -bzG -bSz -bXu -bXu -bXu -bXu -bXu -bXu -bXu -bXu -bXu -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -ceY -aaf -cfm -aaf -ceY -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cge -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaN -chg -aaj -aaj -aaj -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -ccR -aaj -che -aag -ado -aag -aag -aah -afg -aaj -aaj -aiC -ajh -ajz -ajN -ajN -ajN -ajN -ajN -ajz -anv -aol -aaj -aaj -aag -aru -asr -atj -aua -auZ -awb -aru -awi -axT -ayL -ayK -aBk -aCd -aDi -aEf -aEZ -aFN -aGH -aHA -aId -art -apM -aKI -apM -apM -apM -apM -aBe -aPK -apM -apM -apM -apM -apM -apM -aXl -aYo -aZk -baE -bbR -bdg -aYo -bfz -bgM -bhY -bjl -bkK -blV -bns -boB -bpM -bhX -brU -btj -buq -bvK -bwZ -bwZ -bwZ -bwZ -bCb -bDx -bEC -bxa -bxa -bwZ -bJV -bLg -bMt -bAG -bAG -bAG -bRk -bFY -bTX -bzG -bSz -bXu -bYv -bZr -bZr -caI -bZr -bZr -bYv -bXu -aag -ccS -aag -aKZ -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -cfS -cfS -cfS -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -chg -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -che -adm -afK -aag -afg -aaj -aaj -aaj -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -aaj -aaj -aru -ass -atk -anY -ava -awc -aru -axU -ayM -azC -aAo -aBl -aCi -aDj -aDk -aFa -aFO -aGI -aHB -aDl -aDl -aKf -aKJ -aLv -aMl -aNd -aNN -aMl -aPL -aNN -aRK -aTa -apM -apM -aWk -aXn -aYp -aZl -baF -bbS -bbS -bel -bfA -bgN -bhY -bjm -bkL -blW -bnt -bkP -bpN -bhX -brV -btk -bur -bvL -bxa -byg -bzH -bAJ -bCc -bDy -bED -bGa -bHt -bwZ -bJW -bLh -bMu -bAG -bAG -bAG -bAG -bAG -bTY -bzG -bSz -bXu -bYw -bZs -bZr -bZs -bZr -bZs -bYw -ccT -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -ceY -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aba -chb -chb -chb -chb -chc -aam -aam -aam -aam -aam -aam -aam -aam -adm -adI -adJ -aff -aaj -aaj -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -aaj -aru -ast -ast -ast -ast -ast -ast -axV -ayN -azD -aAp -aBm -aCj -aDk -aDk -aFb -aFP -aGJ -aHC -aDl -aJn -aKg -aKK -aKK -aMm -aNe -aNe -aNe -aNe -aNe -aRL -aTb -aTY -apM -aCd -aXl -aYq -aZm -baG -baH -bbS -aYq -bfB -bgN -bhY -bjn -bkM -blW -bnu -boC -bpO -bhX -brT -btl -bup -brT -bxa -byh -bzI -bAK -bCd -bDz -bEE -bGb -bHu -bwZ -bJX -bLi -bMv -bNC -bON -bPW -bRl -bSB -bTZ -bzG -bSz -bXu -bYx -bZt -bZr -bZr -bZr -bZr -bYw -ccU -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -ceY -aaf -ceY -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aae -aad -aad -aad -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -adn -adJ -aag -aff -aaj -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -aaj -aaj -atl -atl -atl -atl -atl -atl -atl -ayK -aAp -aBn -aCk -aDl -aDl -aFc -aFQ -aGK -aDl -aDl -aJo -aKg -aKK -bJB -aMn -aNf -aNO -aOO -aPM -aQN -aRM -aRL -aTZ -aVb -aCd -aXl -aYr -aZn -baH -bbT -aZm -aYr -bfA -bgN -bhX -bjo -bkN -blX -bnt -bkP -bpP -bhY -brW -btm -bus -bvM -bxa -byi -bzJ -bAL -cgB -bDA -bCe -bGc -bHv -bwZ -bJY -bJY -bJY -bND -bJY -bJY -bzG -bzG -bzG -bzG -bWv -bXu -bYy -bZu -cah -caJ -cah -caJ -ccw -bXu -aag -aag -aag -aag -aaZ -aag -aag -aag -abz -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -ceZ -aaf -aaf -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -ado -aag -aag -aff -aaj -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -aaj -aaj -atl -auc -avb -awd -awU -atl -atl -azE -awY -aBm -aCj -aDl -aEg -aFd -aFR -aGL -aHD -aIe -aJp -aKg -aKL -aLx -aMo -aNg -aNP -aLB -aLB -aQO -aRN -aRM -aRL -aVc -aCd -aXl -aYq -aZm -baH -baH -bbS -aYq -bfC -bgO -bhX -bgw -bkO -blY -bnv -boD -bpQ -bqQ -brX -btn -but -bvN -bxa -byj -bzK -bAM -bCf -bDB -bEF -bGd -bHw -bxa -bJY -bLj -bMw -bNE -bOO -bJY -bRm -bSC -bSC -bSC -bWw -bXv -bYw -bZv -bZr -bZr -bZr -bZr -bYw -ccT -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -ceY -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aba -abe -aag -abz -aag -aag -aag -aag -aag -adp -aag -aag -aff -aaj -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -aaj -aaj -atl -aud -avc -ave -ave -axW -atl -awY -awY -aBo -aCl -aDl -aEh -aFe -aFS -aGM -byp -aFS -aJq -aKg -aKK -aLy -aMp -aNg -aLB -aOP -aLB -aNg -aRO -aTc -aUa -aVd -aCd -aXo -aYs -aZo -cgq -aZo -bdh -bel -bfD -bgN -bhX -bjq -bkP -blZ -bkP -bkP -bkP -bqR -brY -bto -buu -bvO -bxa -bxa -bxa -bAN -bCg -bDC -bxa -bxa -bxa -bxa -bJY -bLk -bMx -bNF -bOP -bJY -bRn -bSD -bSD -bSD -bWx -bXu -bYw -bZw -cai -caK -cai -caK -ccx -ccU -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -ccS -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aae -aad -aae -aae -aad -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -adp -aag -aag -afg -aaj -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -aaj -aaj -atl -aue -avd -awe -awe -awe -ayO -azF -aAq -aBp -aCm -aDl -aEi -aFf -aFT -aGN -aHF -aIf -aJr -aKh -aKK -aLz -aMq -aNg -aLB -aOQ -cgn -aNg -aRP -aTd -aUa -aVd -aWl -aXl -aYo -aZp -baI -bbU -bdi -aYo -bfD -bgP -bhX -bjr -bkQ -bma -bnw -boE -bpR -bhY -brZ -btp -buv -bvP -bxb -byk -bzL -bAO -bCh -bDD -bus -bGe -bHx -bIJ -bJZ -bLl -bMy -bNG -bOQ -bJY -bRo -bRs -bRs -bRs -bWx -bXu -bYz -bZx -bZr -bZr -bZr -bZr -ccy -bXu -aag -aag -aag -aaO -aaZ -aKZ -aag -aag -aag -aag -aao -aao -aaf -aaf -ceY -ceY -aaf -aaf -cfm -aaf -aaf -cfd -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -acu -adq -adw -acu -aag -aaj -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -aaj -aaj -atl -aud -ave -awf -awV -axX -ayP -azG -aAr -aBq -aCn -aDl -aEj -aFg -aFU -aGO -aHG -aIg -aJs -aKi -aKK -aLA -aMr -aNh -aNQ -aOR -aOR -aQP -aRQ -aTe -aUb -aVe -aCd -aXp -aYo -aYo -aYo -aYo -aYo -aYo -bfE -bgQ -bgT -bgT -bgT -bgT -bnx -bhZ -bpS -bgT -bgT -bgT -buw -bvQ -bxc -byl -bzM -bAP -bCi -bDE -bzM -bGf -bHy -bIK -bKa -bLm -bMz -bNH -bOR -bJY -bRq -bSG -bUc -bSH -bWx -bXu -bYA -bZy -caj -caL -cbr -caL -ccz -bXu -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aaN -aaZ -aag -aag -aag -aag -aag -aag -acu -adr -adK -acu -aag -aaj -aaj -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -aaj -aaj -aaj -atl -auf -ave -awg -ave -axY -atl -awY -awY -aBr -aCo -aDl -aDl -aFh -aFV -aDl -aDl -aDl -aFV -aFV -aKK -aLB -aMp -aNi -aNR -aOS -aPN -aQQ -aRR -aTf -aKK -aVf -aCd -aXq -aYt -aZq -baJ -bbV -aYt -bem -bfD -bgN -bhZ -bjs -bkR -bmb -bny -boF -bpT -bqS -bsa -bgT -bux -bvR -bxd -bxd -bxd -bAQ -bAQ -bAQ -bxd -bxd -bHz -bIL -bJZ -bLn -bMA -bNI -bOS -bJY -bRr -bSF -bUb -bSH -bWx -bXu -bYB -bZz -cak -cak -cgy -cak -ccA -bXu -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -ceY -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aaz -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aaO -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -acu -ads -adL -acu -aag -aag -aaj -aaj -aaj -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -agn -aaj -aaj -aaj -aaj -atl -aug -avf -awh -awW -atl -atl -awY -awY -aBs -aCp -aDm -aEk -aFi -aFW -aGP -aGP -aIh -aJt -aGP -aKM -aLB -aMp -aNj -aLB -aLB -aLB -aQR -aKK -aKK -aKK -aVg -aWm -aXr -aYu -aZr -baK -bbW -aYu -ben -bfF -beo -bia -bjt -bkS -bmb -bnz -boG -bpU -bqT -bsb -bhZ -buy -bvS -bxe -bym -bzN -bAR -bCj -bzQ -bEG -bxd -bHA -bIM -bJY -bLo -bMB -bNJ -bOT -bJY -bSE -bUa -bXN -bSH -bWx -bXu -bYC -bZA -bZr -caM -caM -caM -ccB -bXu -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -ceZ -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aaA -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -acu -acu -adM -acu -adw -acu -acu -agS -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aqy -aam -aam -atl -atl -atl -atl -atl -atl -ayV -awY -axZ -aBo -aCq -aDn -aEl -aFj -aFX -aGQ -aGQ -aGQ -aJu -aEl -aKN -aLC -aMs -aNk -aNS -aOT -aPO -aQS -aRS -aTg -aUc -aTg -aWn -aXs -aYv -aZs -baL -bbX -bdj -beo -bfG -bgR -bhZ -bju -bkS -bmb -bnA -boH -bpV -bqT -bmb -btq -btm -bvT -bxe -byn -bzO -bAS -bCk -bAU -bEH -bGg -bHB -bIN -bJY -bJY -bJY -bJY -bJY -bJY -bRs -bSH -bUd -bSH -bWy -bXu -bXu -bZB -bXu -bXu -bXu -bXu -bXu -bXu -bXy -bXy -bXy -aKZ -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -cfa -aaf -aaf -aaf -aaf -cfm -aaf -aaf -cfb -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aba -abd -abe -aag -aag -acu -acu -acu -adt -adN -aeu -afh -afL -ago -aag -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aag -aag -aag -aag -aag -avg -ayV -ayV -ayV -awj -azH -aAs -aBt -aCr -aDo -aos -aFk -aFY -aNv -aHH -aGR -aJv -aGR -aKM -aLD -aLB -bVT -aNT -aOU -aPP -aQT -aRT -aTh -aUd -aVh -aqv -aXt -aYu -aZt -baM -bbY -aYu -bep -bfH -bgN -bgT -bjv -bkT -bmc -bmc -bmc -bpW -bqU -bsc -btr -buz -bvU -bxf -byo -bzP -bAT -bCl -bDF -bDF -bGh -bHC -bIO -bKb -bLp -bMC -bNK -bOU -bLp -cgg -bSI -bUe -bVw -bWz -bXw -bYD -bZC -cal -caN -caN -cbW -ccC -ccV -cdi -cdi -bXy -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aaf -aaf -bmE -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -acu -acJ -ada -adu -adO -acu -afi -afM -adw -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -awj -awX -awX -ayQ -awY -aNl -aBu -aCs -awY -aEn -awY -awY -awY -awY -aIi -awY -awY -aKK -aKK -aMt -aKK -aNU -aKK -aPQ -aQU -aLB -aPR -aUe -aPR -aWo -aXr -aYw -aZu -baN -bbZ -aYw -beo -bfD -bgS -bgT -bjw -bkU -bmb -bmb -boI -bpX -bqV -bsd -bts -buA -bvV -bxe -cgv -bzQ -bAU -bCm -bAU -bEI -bGg -bHD -bIP -bKc -bLq -bMD -bLq -bOV -bPX -bRt -bSJ -bUf -bVx -bPX -bXx -bYE -bZD -cam -caO -cbs -cbX -ccD -ccV -cdi -cdi -bXy -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -ceY -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aaN -acu -acu -acu -adv -adP -acu -acu -acu -acu -agT -agT -agT -agT -afj -afj -ajO -ajO -ajO -ajO -ajU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -awk -awY -awY -awY -awY -awY -aBv -aCt -awY -aEo -aFl -avg -aGS -ayV -ayV -ayV -ayV -ayV -aLE -aMu -aNm -aNV -aKK -aPR -aQV -aRU -aKK -aKK -aVg -aWp -aXu -aYu -aYu -aYu -aYu -aYu -beq -bfI -bgT -bgT -bjx -bkV -bmd -bmb -boJ -bjy -bjy -bse -bhZ -buB -bvW -bxe -buY -bzR -bAV -bCn -bDG -bEJ -bxd -bHE -cgJ -brT -brY -bME -bKd -bKd -bPY -bRu -bSK -bUg -bKd -bKd -chR -bYF -bXy -bXy -bXy -cbt -cbY -bXy -bXy -bXy -bXy -bXy -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -bmE -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -abf -aag -aag -aaZ -aag -aag -aag -aag -acu -acu -adQ -aev -afj -afN -agp -agU -ahw -ahY -aiD -aji -afj -ajP -akk -akO -alo -ajU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -awk -awY -axZ -ayR -axZ -awY -aBw -aCu -awY -aEo -aAu -aAu -aAu -aAu -aAu -aAu -aAu -aKO -aLF -aMv -aNn -aNW -aNY -aPS -aQW -aRV -aTi -chM -aVi -aWq -aXr -aYx -aYx -aYx -bca -aYx -beo -bfD -bgT -bib -bjy -bkW -bmb -bnB -bgT -bpY -bqW -aMi -bgT -buC -bvX -bxd -bxd -bxd -bxe -bxe -bxe -bxd -bxd -bHF -bIR -bKd -bKd -bKd -bKd -bOW -bPZ -bRv -bQb -bUh -bVy -bKd -bXz -bYG -bYI -bKj -bXy -bXy -bXy -bXy -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -ceY -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aaQ -aad -aad -aad -aaf -aaf -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -aba -abd -abe -aag -aag -aag -adw -adR -aew -afk -afO -agq -agV -ahx -ahZ -afR -afO -afj -ajP -akl -akP -alp -ajU -ajU -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -awk -awY -aya -aya -azI -aAt -aBx -aCv -aAu -aAu -aAu -aFZ -aGT -aHI -aIj -aJw -aAu -ayU -aLE -aMw -aNo -aNX -aNY -aPT -aQX -aRW -aTj -aNY -aVj -apM -aXv -aYy -aZv -baO -baO -aYx -beo -bfD -bgT -bic -bjz -bkW -bmb -bnC -bgT -bgT -bqX -bgT -bgT -buD -bvY -bxg -byr -byr -byr -bCo -byr -bEK -bxg -bHG -bIS -bKd -bLr -bLs -bNL -bOX -bQa -bRw -bSL -bUi -bVz -bKd -bXA -bYG -bZE -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aaZ -aKZ -aag -aag -aag -aag -aao -aao -aaf -aaf -ceY -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaA -aad -aad -aae -aad -aad -aad -cfG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -adw -adR -aew -afk -afO -afO -agW -ahy -aia -afO -afO -afj -ajQ -akm -ajP -alq -alR -ajU -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -awk -awY -axZ -ayS -azJ -aAu -aBy -aCw -aAu -aEp -aAu -aGa -aGU -aAu -aIk -aJx -aAu -ayU -avg -avg -avg -aNY -aOV -aPU -aQY -aRX -aTk -aNY -aVk -apM -aXr -aYz -aZw -aZw -aZw -aYz -ber -bfD -bgT -bid -bjA -bkX -bme -bnD -bmi -bpZ -bqY -bsg -btt -buE -bvZ -bxh -bys -bzS -bAW -bHn -bDH -bEL -bGi -buB -bIT -bKd -bLs -bMF -bNM -bOY -bQb -bRx -bQb -bUj -bVA -bKd -bXA -bYG -bZE -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -cfb -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfR -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aaZ -aag -aag -aag -acu -adS -aex -afj -afP -agr -agX -ahz -aib -aiE -ajj -afj -ajR -akm -akQ -alq -alS -ajU -ajU -aag -aag -aag -aag -aag -aag -aag -aag -avg -awk -awY -awY -ayT -azK -aAu -aBz -aCx -aAu -aAu -aAu -aGb -aGV -aAu -aIl -aJy -aAu -ayU -ayV -ayV -aNY -aOW -aRV -aPV -aQZ -aRY -aRV -aUf -aVl -apM -aXw -aYx -aZx -aZx -bcb -bdk -bes -bfH -bgT -bgT -bjB -bkY -bmf -bmg -bkY -bqa -bmg -bsh -btu -buF -bwa -brT -brT -brT -bAX -brT -brT -brT -brT -bzL -bIU -bKd -bLt -bMG -bNN -bOZ -bQc -bRy -bSM -bUk -bVB -bKd -bXB -bYH -bYI -bKj -bKj -bKj -bKj -bKj -aag -abp -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -ceY -aaf -cfm -aaf -aaf -aaf -aaf -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaf -cfR -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aaZ -aag -aag -aag -adw -adL -aey -afk -afQ -ags -agY -ahA -aic -ags -agZ -afj -ajS -akn -akR -alr -alT -amF -ajO -aag -aag -aag -aag -aag -aag -aag -aag -avg -awl -awZ -ayb -awY -awY -aAu -aBA -aCy -aDp -aEq -aAu -aAu -aGW -aAu -aIm -aAu -aAu -aKP -avg -aNp -aNY -aOX -aRV -aPW -aRa -aRZ -aTl -aUg -aVl -aWr -aXx -aYx -aYx -aYx -aYx -aYx -beo -bfD -aYz -bie -bjB -bkZ -bmg -bmg -bmg -bmg -bCx -bjB -brT -buG -bup -brT -brT -bzT -bAY -brT -bDI -bEM -bGj -bHH -bIV -bKd -bKd -bKd -bKd -bPa -bQd -bRz -cgH -bUl -bVC -bKd -bXC -bXz -bYI -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -ceZ -aaf -aaf -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aaf -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aaZ -aag -aag -aag -adw -adM -aey -afk -afQ -agt -agZ -ahA -afQ -aiF -agZ -afj -ajT -ako -ajP -ajP -ajP -amG -ajO -aag -aag -aag -aag -aag -aag -aag -aag -avg -avg -avg -awl -ayb -ayV -aAu -aBB -aCz -aBD -aBD -aFm -aGc -aGX -aHJ -aIn -aAu -aMx -ayU -avg -aNq -aNY -aOY -aRV -aPW -aRb -aSa -aTl -aUg -aVl -arq -axQ -aYA -aYA -aYA -aYA -aYA -beq -bfJ -aYz -aYz -bjB -bla -bmh -bmh -bla -bmg -bra -bjB -brU -buH -bwb -bvK -brT -bzU -bAZ -brT -brT -bEN -brT -bHI -bIW -bKd -bLu -bMH -bNO -bPb -bQc -bQb -bSN -bUm -bVD -bKd -bXD -bYI -bYI -bKj -bKj -cbu -bKj -bKj -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -cfb -aaf -aaf -cfb -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aae -aaz -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aad -aad -aad -aad -aao -aao -aaZ -aag -aag -aag -acu -adT -aez -afj -afR -agu -aha -ahB -aid -agu -agq -afj -ajP -ako -ajP -ajP -ajP -amG -ajO -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -avg -ayU -avg -aAu -aBC -aCA -aDq -aBD -aFn -aGd -aBD -aHK -aIo -aAu -avg -ayU -avg -aNr -aNY -aOZ -aRV -aPV -aRc -aSb -cgp -aUh -aVm -aWs -axQ -aYA -aZy -baP -bcc -aYA -bet -bfA -beo -bif -bjB -blb -aun -aEm -blb -bnE -bjB -bjB -brV -buI -bwc -bvL -brT -bzV -bBa -brT -bDJ -bEO -brT -bHJ -bIX -bKd -bLv -bMI -bNP -bPc -bQb -bQb -bQb -bUn -bVE -bKd -bXE -bYI -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aad -aad -aad -aad -aao -aao -aaZ -aag -aag -aag -acu -adU -acu -afj -afk -afk -afj -ahC -afj -afk -afk -afj -ajU -akp -ajU -ajP -ajP -amG -ajO -aag -aka -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -ayU -avg -aAv -aBD -aCB -aDr -aEr -aFo -aGe -aFo -aHL -aIp -aAu -avg -ayU -avg -avg -aNY -aPa -aRV -aPX -aRd -aSc -chL -aNY -aVn -arq -aXy -aYB -aZz -baQ -bcd -bdl -beu -bfK -beo -big -beq -blc -bmj -bmj -boK -bqb -brb -aYz -brT -buJ -bwd -brT -brT -brT -brT -brT -bDK -bEP -brT -aYz -aYz -bKd -bLw -bMJ -bNQ -bPd -bQe -bRA -bSO -bUo -bVF -bKd -bXF -bYI -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -ccS -aKZ -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -ceZ -aaf -aaf -cfm -aaf -aaf -cfd -aaf -aae -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aae -aad -aad -aao -aao -aaZ -aag -aag -abl -acu -adV -aed -afl -afn -afn -ahb -ahD -aed -adL -afn -afn -aed -adV -ajO -als -alU -amG -ajO -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -ayU -avg -aAu -aBE -aCC -aDs -aBD -aFp -aGf -aBD -aBD -aIq -aAu -avg -aKQ -aLG -aLG -aLG -aLG -aPb -aPY -aLG -aNY -aNY -aNY -aVo -aWt -aXz -aYA -aZA -baR -bce -aYA -ber -bfL -bgU -bih -bjC -bgU -bgU -bgU -bgU -bgU -brc -bsi -btv -buK -bqb -bxi -byt -bxi -bBb -brT -brT -brT -brT -bHK -bIY -bKd -bKd -bKd -bKd -bKd -bKd -bRB -bSP -bUp -bKd -bKd -bXG -bVH -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -ceY -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aae -aad -aad -aao -aao -aaZ -aaN -aag -aag -acu -adW -aeA -aeA -aeA -agv -aeA -ahE -aie -aiG -aeA -aeA -aeA -akq -akS -akS -akS -akS -akS -akS -akS -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -awl -ayb -aAu -aBD -aCD -aDt -aBD -aFq -aGg -aGY -aBD -aIr -aAu -ayV -ayU -aLG -aMy -aNs -aNZ -aMz -aPZ -aRe -aSd -aTm -aUi -aVp -aWu -aXA -aYA -aYA -aYA -aYA -aYA -bev -bfM -bgV -bii -bjD -bld -bmk -bnF -boL -bqc -brd -bsj -bsj -buL -bwe -bxj -byu -bzW -bBc -bCq -bDL -bEQ -bGk -bHL -bIZ -bIZ -bIZ -bMK -bNR -bRp -bQf -bNU -cgl -bNU -bNU -bWA -bXG -bVH -bZF -bZF -bZF -bZF -bZF -bZF -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -ceY -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -cfG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aad -aad -aad -aad -aad -aao -aao -aaZ -aag -aag -aag -acu -adX -aed -acu -acO -acO -acu -ahF -acu -acO -acO -cgj -aed -ahD -akS -alt -alV -amH -anw -anw -akS -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -avg -azL -aAu -aBF -aCE -aDu -aEs -aFr -aGh -aGZ -aHM -aIs -aAu -ayV -ayU -aLH -aMz -aNt -aOa -bVN -aQa -aLG -aSe -aTn -aTn -aTn -aWv -aXB -aTn -aTn -baS -bcf -bdm -bew -bfN -bgW -bij -bim -ble -bim -bik -bim -bim -bre -bsk -btw -buM -bwf -bxk -byv -bzX -bBd -bCr -bDM -bER -bES -bES -bES -bES -bES -bER -bNS -bPf -bQg -bQg -bQg -bQg -bQg -bQg -bXH -bYJ -bZF -can -caP -cbv -bZF -bZF -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aaz -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aae -aad -aad -aad -aad -aao -aao -aaZ -acu -acu -acu -acu -adX -aed -acO -afS -agw -ahc -afS -aif -aiH -afX -acO -aed -akr -akS -alu -alW -amI -anx -aom -akS -aag -aag -arv -asx -asx -asx -avh -aag -aag -avg -ayV -awk -aAu -aAu -aAu -aAu -aAu -aAu -aAu -aAu -aAu -aAu -aAu -avg -ayU -aLG -aMA -aNu -aOb -aNu -aQb -aLG -aSf -aTn -aUj -aUj -aWw -aXC -aYC -aTn -baT -bcg -bdn -bex -bfO -bgW -bik -bjE -blf -bml -bnG -boM -bim -bim -bsl -bsm -buN -bsm -bsm -bsl -bsl -bBe -bCs -bDN -bES -bGl -bGl -bGl -bGl -bGl -bES -bNT -bPg -bPg -bRC -bSR -bPg -bPg -bPg -bXI -bYK -bZF -cao -caQ -cbw -cbZ -bZF -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -cfb -aaf -aaf -aaf -cfm -aaf -aaf -cfb -aaf -aaf -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aaQ -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aad -aad -aad -aad -aad -aao -aao -aaZ -acu -acK -adb -acK -adY -aeB -acO -afS -agx -ahd -afS -afS -aiI -afW -acO -ajV -aks -akS -alv -alX -amJ -any -aon -akS -apQ -aqz -arw -asy -asy -asy -avi -aqz -axa -ayc -ayW -azM -aAw -aAw -aAw -aAw -aAw -aAw -aAw -aAw -aAw -aAw -aAw -aKj -aKR -aLG -aMB -chK -aOc -aPd -aQc -aLG -aSf -aTn -aUj -aUj -aWx -aXD -aYD -aTn -aTn -bch -bdo -cgs -bfP -bgW -bik -bjF -blf -bmm -blf -boN -bqd -brf -bsl -btx -buO -bwg -bty -byw -bsl -bBf -bCt -bDO -bET -bGl -bGl -bGl -bGl -bGl -bES -bNU -bPg -bQh -bRD -bSS -bUq -bPg -bPg -bXI -bYL -bZG -cap -caR -cbx -cca -bZF -aag -aag -aag -aag -aag -aaZ -aKZ -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -ceZ -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aae -aad -aad -aao -aao -aaZ -acu -acL -acL -acL -adZ -aed -acO -afT -afS -afS -ahG -aig -aiH -afX -acO -aed -akt -akT -alw -alY -amK -anz -aoo -akS -apR -aag -arv -asx -asx -asx -avh -aag -apR -avg -avg -avg -avg -avg -avg -avg -avg -avg -avg -avg -avg -ayV -avg -avg -aKS -aLG -aLG -aLG -aLG -aLG -aLG -aLG -aSf -aTn -aTn -aVq -aWy -aWA -aYE -aZB -aTn -bci -bdp -bew -bfQ -bgX -bil -bjG -blf -bmn -cgu -boO -bqe -brg -bsm -bty -bjH -bwh -buP -byx -bsl -bBg -bCs -bDO -bET -bGl -bGl -bGl -bGl -bGl -bES -bNV -bPh -bQi -bRE -bST -bUr -cgz -bPh -bXJ -bPi -bZH -caq -caR -cby -ccb -bZF -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -cfD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aae -aad -aad -aad -aao -aao -aaZ -acu -acK -acK -adx -aea -aeC -acu -afU -afS -ahe -ahH -ahf -aiJ -ajk -acu -ajW -aku -akS -alx -alZ -amL -anA -aop -akS -apR -aag -aag -aag -aag -aag -aag -aag -apR -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -avg -avg -avg -avg -aKT -aLI -aLI -aLI -aLI -aLI -aLI -aRf -aSg -aTo -aTn -aVr -aWz -aXE -aYF -aZC -aTn -bcj -bdq -bey -bfR -bgY -bim -bjp -blf -bmo -bnI -boP -blf -blf -bsn -bty -buQ -bwi -bty -byy -bsl -bBe -bCu -bDO -bET -bGl -bGl -bGl -bGl -bGl -bES -bNW -bPg -bQj -bRF -bRC -bUs -bPg -bWB -bXK -bYL -bZG -car -caR -cbx -ccc -bZF -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -ceY -aaf -aaf -aaf -cfm -aaf -aaf -aaf -ceY -aaf -aad -aae -aad -aad -aad -aaQ -aad -aad -aad -cfK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aaf -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfP -cfP -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aaZ -acu -acL -acL -acL -adZ -aed -acO -afV -agy -afV -afS -afS -afS -aiL -acO -aed -adV -akU -aly -ama -amM -anB -aoq -aoZ -apS -aag -aag -aag -aag -aag -aag -aag -apR -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aSh -aTp -aTn -aVs -aWA -aXF -aYE -aZD -aTn -bck -bdr -bez -bfS -bgZ -bim -bjI -blf -bmp -bnJ -boQ -bqf -brh -bsl -btz -buQ -bty -bty -byz -bsl -bBe -bCs -bDN -bEU -bGl -bGl -bGl -bGl -bGl -bES -bNX -bPg -bQk -bRG -bSU -bUt -bPg -bWC -bXK -bYM -bZF -cas -caS -cbz -ccd -bZF -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -ceZ -aaf -aaf -aaf -ceY -aaf -cfm -aaf -cfd -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfP -cfP -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aad -aad -aae -aad -aad -aao -aao -aaZ -acu -acK -adc -acK -adY -aeB -acO -afW -afS -ahf -afS -afS -aiK -ajl -acO -ajV -aks -akS -alz -amb -amN -anC -aor -akS -aag -aag -aag -aag -aag -aag -aag -awm -axb -awm -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKk -aKk -aTq -aTn -aVt -aWB -aVt -aYG -aZE -aXB -bcl -bds -beA -bfT -bha -bim -bjJ -blf -bmq -bnH -boR -bnH -bri -bsm -btA -buR -bwk -bxm -byA -bsl -bBh -bCv -bDP -bER -bES -bES -bES -bES -bES -bER -bNY -bPg -bPg -bPg -bPg -bPg -bPg -bPg -bXK -bYN -bZF -bZF -bZF -bZF -bZF -bZF -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -ceY -aaf -aaf -cfm -aaf -aaf -ceY -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfP -cfP -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aae -aad -aad -aad -aad -aao -aao -aaZ -acu -acu -acu -acu -adX -aed -acO -afX -agz -ahg -ahG -aih -aiL -aiI -acO -aed -ahD -akS -alA -alA -akS -anD -anD -akS -aag -aag -aag -aag -aag -aag -aag -asx -axc -asx -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKk -aKk -aTr -aTn -aVu -aWC -aXG -aYH -aZF -aTn -bcm -bdt -beB -bfU -bhb -bin -bjK -blg -bmr -bnK -boS -bqg -brj -bsm -btB -buS -bwl -bxn -byB -bsl -bBe -bCs -beo -beq -beo -beo -bJa -beo -bLx -bML -bNZ -bPg -bQl -bRH -bRH -bUu -bVG -bWD -bXL -bYO -bVH -bKj -bKj -aag -aag -aag -aag -aag -aag -cdJ -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -cfb -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -cfS -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfP -cfP -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aaZ -acu -acu -acu -acu -aeb -aed -acu -acO -acO -acu -ahF -acu -acO -acO -acu -ajX -ahD -akS -akS -akS -akS -akS -akS -akS -aag -aag -aag -aag -aag -aag -aag -awn -axd -awn -aag -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKk -aSi -aTs -aTn -aTn -aTn -aTn -aTn -aTn -aTn -bcn -bdu -beC -beD -bhc -bim -bjL -bim -bms -bnL -bim -bik -bik -bsl -bsl -bsm -bwm -bsl -bsl -bsl -bBi -bCw -bDQ -bEV -bGm -bHM -bJb -bKe -bLy -bMM -bOa -bPi -bQm -bRI -bSV -bUv -bVH -bWE -bXM -bYP -bVH -bKj -bKj -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfS -cfS -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfP -cfP -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aae -aad -aad -aad -aad -aad -aao -aao -aaZ -acu -acM -add -ady -aec -aeD -afm -afm -agA -ahh -ahI -afm -aiM -afm -afm -afm -akv -ajA -alB -alC -amO -ajA -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apR -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKk -aSi -aTt -aUk -aVv -aWD -aXH -aYI -aZG -baU -bco -bdv -beC -beC -bhd -bcr -bjM -blh -bmt -blk -boT -bqh -brk -bso -btC -blk -bwn -bxo -byC -byC -bBj -bIQ -bAg -byC -byC -bHN -bJc -bHO -bHO -bKi -bKi -bKi -bQn -bKi -bKi -bKi -bKi -bWF -bWU -bWF -bVH -bKk -bKk -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -abf -aag -aao -aao -aaf -aaf -ceY -aaf -ceY -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfS -cfS -cfS -cfP -cfP -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aae -aad -aao -aao -aaZ -acu -acN -ade -acu -aed -aed -afn -afn -agB -aed -adX -aii -aiN -afn -afn -aed -adV -ajA -alC -alC -amP -ajA -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -axe -ayd -aag -aag -abp -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aKk -aSj -aTu -aUl -aVw -aWE -aXI -aYJ -aUn -baV -bcp -bdw -beD -bfV -bhe -bcr -bjN -bli -bmu -bnM -blk -blk -blk -blk -blk -blk -bwo -bxp -byC -bzY -bBk -bCy -bDR -bEW -bGn -bHO -bJd -bKf -bHO -bMN -bOb -bOb -bQo -bKi -bSW -bUw -bKi -bWG -bXO -bYQ -bVH -aag -aag -aka -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -ceZ -aaf -aaf -ceY -aaf -aad -aad -aad -aaQ -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aaf -aaf -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfS -cfP -cfP -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aae -aad -aae -aad -aad -aad -aad -aao -aao -aaZ -acu -acO -acu -acu -acu -aeE -acu -acu -acu -acu -ahJ -acu -acu -acu -ajA -ajA -akw -ajA -alD -amc -amQ -ajA -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apR -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aSk -aTv -aUm -aVx -aWF -aWF -aWF -aZH -baW -bcq -bdx -beE -bfW -bhf -bcr -bjO -blj -bmv -bnN -boU -boU -boU -bsp -blj -blj -bwp -bxq -byD -bzZ -bBl -bCy -bDS -bDS -bGo -bHO -bJe -bKg -bHO -bMO -bOc -bPj -bQp -bRJ -bSX -bUx -bKi -bWH -bXP -bYR -bVH -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -ceZ -aaf -aaf -ceZ -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aaf -aaf -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfS -cfP -cfP -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aaZ -aaN -aag -aag -acu -acM -aeF -acu -afY -agC -add -ahK -aij -agC -afY -ajA -ajY -akx -akV -alE -alC -amR -ajA -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apR -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aSl -aTw -aUn -aUn -aWG -aWG -aWG -aUn -aUn -bcr -bdy -bcr -bcr -bcr -bcr -bjP -blk -bmw -bnO -boV -bqi -boV -bsq -btD -boV -bwq -bxr -byC -bAa -bBm -bCz -bDT -bDT -bGp -bHP -bJf -bKh -bHO -bMP -bOd -bPk -bQq -bKi -bSY -bUy -bKi -bWF -bXQ -bWF -bVH -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKZ -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aaf -aaf -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfS -cfP -cfP -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aad -aad -aad -aad -aao -aao -aaZ -aag -aag -aag -acu -acN -ade -acu -afZ -agD -ahi -ahL -ahi -agD -ajm -ajA -ajZ -aky -akW -alF -amd -amS -ajA -aag -aag -aag -aag -apa -apa -apa -apa -apa -apa -aka -apR -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -abz -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aZI -baX -bcs -bdz -beF -bfX -bhg -bio -bjQ -bll -bmx -bll -boW -bqj -bqj -bqj -btE -bll -bwr -bxr -byC -bAb -bBn -bCA -bDU -bEX -bGq -bHO -bHO -bHO -bHO -bMQ -bKi -bPl -bKi -bKi -bKi -bKi -bKi -aum -aaj -bYS -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -cfb -aaf -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfS -cfP -cfP -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aae -aad -aad -aao -aao -aaZ -aag -aag -aag -acu -acO -acu -acu -afY -agC -acL -acL -acL -agC -afY -ajA -ajY -akz -akX -alG -alC -amT -ajA -aag -aag -aag -aag -apa -asz -atm -auh -avj -apa -aag -apR -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aZI -baY -bct -bdA -beG -bfY -bga -bip -bjR -blm -bmy -blk -blk -blk -blk -blk -btF -buT -bws -bxr -byE -bAc -bBn -bCB -bDV -bEX -bGr -bHQ -byC -byC -bKi -bMR -bKi -bPm -bKi -bRK -bSZ -bUz -bKi -aag -avt -aag -aag -aag -aag -aag -aag -aag -aag -bUA -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -ceZ -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -cfH -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aaf -aaf -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfS -cfP -cfP -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aad -aad -aad -aad -aao -aao -aaZ -aag -aag -aag -aag -aag -aag -acu -acu -agE -acN -acN -acN -agE -acu -ajA -ajA -ajA -ajA -ajA -ajA -ajA -ajA -aag -aag -aag -aag -apa -asA -arz -aui -avk -apa -apa -apR -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aZI -baZ -bcu -bdB -beH -bfZ -bhh -aZI -bjS -blk -blk -bnP -boX -boX -boX -bsr -blk -buT -bwt -bxr -byF -bAd -bBn -bCC -bDU -bEX -bGs -bHR -byC -bKi -bKi -bKi -bKi -bKi -bKi -bKi -bKi -bKi -bKi -aag -aaZ -aag -aag -aag -aag -abl -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -ceY -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -cfd -aaf -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfS -cfS -cfS -cfP -cfP -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aad -aad -aad -aad -aad -aad -aae -aao -aao -aaZ -aag -aag -aag -aag -aag -aag -aag -acu -acu -acO -acO -acO -acu -acu -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apa -arx -arA -asG -arA -awo -apa -apR -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abz -aZI -bba -bcv -bdC -beG -bga -bhi -aZI -bjT -blk -bmz -bnQ -boY -blk -bmz -bss -bss -buU -bsv -bxr -byG -bAe -bBn -bCD -cgF -bEY -bGt -bHR -byC -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aaZ -aKZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -cdJ -aag -aag -aag -aag -aao -aao -ceZ -aaf -aaf -aaf -aaf -aaf -cfm -ceY -aaf -aaf -ceY -aaf -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfP -cfP -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aae -aad -aad -aad -aao -aao -aaZ -aag -aag -aag -aag -aag -aag -aag -abl -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apa -apa -apa -atn -auj -apa -apa -apa -apR -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aZI -bbb -bcw -bdD -beI -bgb -aZI -aZI -bjU -blk -bmA -bnR -boZ -bqk -brl -bst -btG -btG -btG -bxr -byC -bAf -bBo -bCE -bDW -bEZ -bGt -bHS -byC -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aaf -aaf -aaf -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfS -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfP -cfP -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aaz -aad -aad -aad -aad -aad -aad -aao -aao -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apa -apa -apa -arx -asB -ato -auk -avl -awp -axf -aye -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaO -aZI -aZI -aZI -aZI -aZI -aZI -aZI -aZI -bjV -bjV -bmB -bnS -bpa -bmB -bpb -bsu -bmB -bjV -bjV -bxr -byC -bAg -bBp -byC -byC -bFa -bGu -bFa -byC -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -aag -aao -aao -aao -aao -aao -aaf -aaf -aaf -aaf -bmE -cfh -cfh -cfh -cfh -cfh -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfP -cfP -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aad -aae -aad -aae -aao -aao -aaZ -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apa -apT -aqA -ary -asC -cgC -arA -avm -arA -apa -apR -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bhj -biq -biq -biq -bmC -bnR -blk -bmB -blk -bsv -btH -biq -biq -biq -byH -bAh -bBq -aag -byC -bFb -bGv -bHT -byC -bKj -bKj -bKj -bKj -bKj -bKj -aag -aag -aag -abz -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aka -aag -aaZ -aag -aag -aag -aag -aao -ceO -ceO -ceO -aao -aaf -aaf -cfg -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -cfP -cfP -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aae -aad -aae -aad -aao -aao -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apa -apU -aqB -arz -asD -arz -arz -avn -awq -apa -apR -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -abf -aag -aag -aag -aag -aag -aag -aag -aag -bhk -bir -bjW -bjW -bmD -bnS -bpb -bql -bpb -bsu -btI -bjW -bjW -bjW -byI -bAi -bBq -aag -byC -bFc -bGw -bHU -byC -bKk -bKk -bKk -bKk -bKk -bKk -aag -aag -aag -aag -aag -aaZ -aag -aag -cat -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -cey -aao -aao -ceP -ceP -ceP -aao -aao -cfe -aaf -aaf -cfm -aaf -aaf -ceZ -aaf -aaf -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cgc -cfS -aaa -cfP -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aad -aad -aad -aad -aao -aao -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apa -apV -aqC -arA -asE -ary -aul -avo -awr -apa -apR -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bhk -bis -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bxs -byJ -bAi -bBq -aag -byC -bFd -bGx -bHV -byC -aag -aag -aag -aag -aag -aag -aKZ -aag -bUA -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aag -aag -aaZ -aKZ -aag -cez -aao -ceH -ceI -azE -ceI -ceI -aao -brm -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aaf -aaf -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -aaa -cfP -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aae -aae -aad -aao -aao -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apa -apa -apa -arB -asF -arB -apa -avp -arB -apa -apR -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bhk -bis -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -byJ -bAi -bBq -aag -aag -bFe -aaj -bHW -aal -aiR -aiR -aiR -aiR -aiR -aiR -aiR -aiR -aiR -aiR -aai -bXR -aiR -aiR -aiR -aiR -aiR -aiR -aiR -aiR -aiR -aiR -aiR -aiR -ceb -aiR -aiR -aaj -cgo -ceI -ceI -ceI -ceI -ceI -cgo -brm -cfh -cfh -bmE -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfS -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -aaa -cfP -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aae -aad -aad -aad -aao -aao -aba -abe -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abz -aag -aag -aag -aag -aka -aag -aag -aag -aag -aag -aag -apa -arA -asG -arA -apa -avq -aws -apa -apR -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bhk -bis -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -byJ -bAi -bBq -aKZ -aag -aag -aLR -bHX -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aKZ -ajp -aag -aag -aag -aKZ -aag -aag -aag -aag -aag -aag -aag -aag -aKZ -aag -aag -aag -ceA -aao -ceI -ceI -azE -ceI -cfc -aao -brm -aaf -aaf -cfm -aaf -aaf -aaf -cfd -aaf -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -cfS -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfS -cfP -cfP -cfP -aaa -cfP -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aae -aad -aae -aae -aad -aao -aao -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -abp -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -apa -arC -asH -atp -apa -avr -awt -apa -axe -ayd -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bhk -bis -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -byK -bAi -bBq -aag -aag -aag -aag -aag -aKZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aiS -aaj -bXS -aag -aag -aag -aag -aag -abl -aag -aag -aag -aag -aag -aag -aag -aag -aag -cey -aao -aao -ceQ -ceX -ceQ -aao -aao -cfe -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -aaa -cfP -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aae -aae -aad -aad -aad -aad -aao -aao -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aka -aag -apa -apa -apa -apa -apa -avs -apa -apa -aag -apR -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abz -aag -aag -bhk -bit -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -byJ -bAi -bBq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bPn -bQr -bQr -bPn -bPn -bVI -bWI -bXT -bPn -bYT -bYT -bYT -bYT -bYT -bYT -bYT -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aaF -aaF -aaF -aao -aaf -aaf -aaf -aaf -cfm -aaf -ceY -aaf -aaf -aaf -aad -aad -aae -aad -cfE -aad -aad -aad -aad -aae -aad -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aad -aae -aad -aad -aao -aao -aag -aba -abe -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aum -aaj -awu -aag -aag -apR -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bhk -bis -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -byJ -bAi -bBq -aag -aag -aag -bGy -bGy -bGy -bGy -bGy -bGy -bGy -bPn -bQs -bRL -bTa -bUB -bVJ -bWJ -bXU -bPn -bJr -cau -caT -cau -cau -ccE -bYT -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -ceR -ceR -ceR -aao -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -cfK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aad -aae -aad -aad -aad -aao -aao -aag -aaN -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -avt -aag -aag -aka -apR -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bhk -bis -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bjX -bxs -byL -bAi -bBq -bCF -bDX -aag -bGy -bHY -bJg -bKl -bOg -bMS -bOe -bPn -bQs -bRL -bTb -bUC -bVK -bWK -bXV -bPn -bZI -bYV -caU -cbA -bYV -ccF -ccW -aag -aag -aag -abp -aag -aag -aag -aag -aag -aao -aao -aao -aao -aao -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -cfb -aaf -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aae -aad -aad -aae -aad -aao -aao -aag -aag -aaZ -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -apR -aag -aag -aag -aag -aag -aag -aag -abq -abq -abq -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bhk -biu -bjY -bjY -bjY -bjY -bjY -bjY -bjY -bjY -bjY -bjY -bjY -bjY -byM -bAi -bBr -bCG -bDY -bFf -bGz -bHZ -bJh -bKm -bKm -bKm -bKm -bPo -bQt -bQt -bQt -bPn -bVI -bWL -bXT -bYT -bZK -bYV -caV -cbB -cce -ccF -ccW -aag -aag -aag -aag -aag -aag -abz -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -bmE -aar -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aae -aae -aad -aad -aao -aao -aag -aag -aba -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -avu -aag -aag -aag -apR -aag -aag -aag -aag -aag -aag -aag -aag -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abl -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bhl -biv -biv -biv -biv -biv -biv -biv -biv -biv -biv -biv -biv -biv -biv -bAj -aag -bCF -bDX -bBq -bGz -bHZ -bJi -bKn -bKn -bKn -bKn -bKn -bQu -bRM -bTc -bUD -bVL -bWM -bXW -bYU -bZL -cav -caW -cbC -ccf -ccG -ccW -aag -aag -aag -aag -cat -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -ceZ -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bmE -aar -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aae -aad -aad -aad -aad -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaZ -aag -aag -aag -apR -aaN -aag -aag -aag -aag -aag -abf -aag -abq -abq -aag -aag -aag -aag -aag -aag -aag -aag -aag -abp -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abp -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -bBq -bGy -bIa -bJj -bKm -cgE -bKm -bOf -bPp -bPp -bRN -bPp -bUE -bQt -bQt -bXX -bYV -bYV -bYV -caV -cbD -ccg -ccH -bYT -bYT -bYT -aag -aag -aag -aag -aqH -aag -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -ceZ -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bmE -aar -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aae -aae -aae -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -asI -aag -aag -aaZ -aag -aag -awm -ayX -awm -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abz -aag -bBq -bGy -bIb -bJk -bKo -bLA -bMT -bRT -bPp -bQv -bRO -bTd -bPp -bVM -bQt -cet -bYT -cgL -bYV -caU -cbB -cch -ccI -ccX -cdj -bYT -aag -aag -aag -aqH -aqH -aqH -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aae -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aba -abd -abd -asx -axc -asx -abe -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -bpt -bGy -bIc -bJl -bKp -bKq -bMU -bOh -bPp -bQw -bRP -bZM -bPp -bUF -bWN -bXY -bPn -bZN -caw -caX -cbB -cch -ccJ -ccY -cdk -bYT -aag -aag -aag -aag -aqH -aqH -aag -aag -aao -aao -aaf -aaf -aaf -cfd -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aae -aad -aae -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -awn -axd -awn -aba -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -abd -bCH -bCH -bFh -bGy -bQB -bJm -bKq -bLB -bMV -bOh -bPq -bQx -bRQ -bTf -bUG -bVO -bQt -bXX -bPn -bYT -cax -caY -caY -cci -ccK -ccY -cdl -bYT -aag -aag -aag -aag -aqH -aqH -aqH -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -cfd -aaf -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfS -cfS -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aae -aae -aad -aae -aad -aae -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abl -aag -aag -aag -aag -aag -aag -aag -apR -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aaN -aag -aag -aag -aag -aag -aag -aag -aag -bCH -bDZ -bFi -bGy -bId -bJn -bKr -bLC -bMU -bOh -bPr -bQy -bRR -bTg -bUH -bVO -bQt -bXX -bYW -bYT -cay -caZ -cbE -ccj -ccL -bYT -bYT -bYT -aag -aag -aag -aag -aag -aqH -aag -aag -aao -aao -aaf -ceY -aaf -aaf -aaf -ceY -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aae -aad -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abz -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -axe -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -aqz -bCI -bEa -bFj -bGA -bIe -bJo -bKs -bLD -bMW -bOi -bPs -bQy -bRS -bTh -bUI -bVO -bQt -bXX -bYX -bYT -caz -caz -cbF -cck -ccM -bYT -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aao -aao -aaf -aaf -aaf -ceY -aaf -aaf -cfm -aaf -ceY -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aaQ -aad -aad -aae -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aae -aad -aad -aad -aad -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aka -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abl -aag -aag -aag -aag -aag -bCH -bDZ -bFi -bGy -bIf -bJp -bKm -bKm -bKm -bOj -bPp -bQz -cgK -bTi -bPp -bQt -bWO -bXZ -bQt -bPn -bPn -bPn -bPn -bPn -bPn -bPn -bPn -bPn -bPn -bPn -bPn -bPn -bPn -bPn -aag -aag -aao -aao -aaf -aaf -aaf -cfb -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aae -aad -aae -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aka -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abf -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bCH -bCH -bFk -bGy -bIg -bJq -bKt -bLE -bMX -bOk -bPp -bPp -bPp -bPp -bPp -bQt -bQt -bYa -bYY -bZO -cgM -cba -cbG -ccl -ccN -ccN -ccN -ccN -ccN -ccN -ccN -caA -ceo -bPn -aag -aag -aao -aao -aaf -aaf -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -cfE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aad -aad -aae -aad -aao -aao -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bCH -bFh -bCH -bCH -bCH -bCH -bCH -bCH -bCH -bPt -bQA -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -bRU -ceh -cep -bPn -aag -aag -aao -aao -aaf -ceY -aaf -aaf -ceY -aaf -cfm -aaf -aaf -aaf -ceY -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aae -aad -aad -aad -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -bFl -aad -aad -aad -aad -aad -aad -aad -bPt -bQC -bRV -bRV -bUJ -bRV -bRV -bRV -bRV -bRW -bRW -bRW -bRW -bRW -ccO -ccO -bRV -bRV -bRV -bRV -bRV -cei -cgN -bPn -aao -aao -aao -aao -aad -aad -aad -aad -aaf -ceY -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aae -aae -aad -aad -aae -aad -aad -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -bsw -btJ -btJ -btJ -btJ -btJ -btJ -btJ -btJ -btJ -bFm -aad -aad -aad -aad -aae -aad -aad -bPt -bQC -bRV -bTj -bUK -bVP -bWP -bYb -bFu -bRW -bRV -bRV -cbH -ccm -ccP -ccZ -bTl -cdx -cdK -bYb -bFu -cei -cep -bPn -azE -azE -azE -aao -aad -aad -aad -aad -aaf -aaf -cfm -aaf -ceY -aaf -aaf -aaf -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfQ -cfQ -cfQ -cfQ -cfP -cfQ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bpc -bqm -brm -bsx -brm -buV -bwu -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bPt -bQC -bRV -bTk -bUL -bVQ -bWQ -bYb -bFu -bRW -bRV -cbb -cbI -ccn -bUO -cda -cdm -cdy -cdL -bYb -bFu -cej -ceq -bPn -bPt -bPt -bPt -bPt -aad -aad -aae -aad -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aaP -aaP -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bpc -bqn -brm -brm -brm -buV -bwu -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -bPt -bTe -bRV -bTl -bUM -bVR -bWR -bYc -bZa -bUJ -bRV -caH -cbJ -cbd -bUO -bUO -cdn -cdz -cdM -bRV -bRV -cei -cer -ceB -ceE -ceJ -ceS -bPt -aad -aad -aad -aad -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfQ -cfZ -cfZ -aad -aad -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -bpc -bqn -brm -brm -brm -buV -bwu -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -bPt -bQC -bRW -bRV -bUN -bVS -bWS -bYd -bZb -bZP -bWV -cbc -cbK -ccp -bUO -cdb -cdo -cdA -cdN -cdW -cec -cei -ces -ceC -ceF -ceK -ceT -bPt -aad -aad -aad -aad -ceY -aaf -cfm -aaf -aaf -aaf -ceY -aaf -aad -aad -aad -aad -aaz -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -aad -aad -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aae -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -bpc -bqo -brn -brn -brn -buW -bwu -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -bPt -bQC -bRV -bRV -bUO -bVX -bUO -bYe -bZc -bZQ -bWW -cbe -cbL -bUO -bWW -cdc -cdp -cdB -cdO -cdW -ced -cei -ces -ceC -ceF -ceL -ceU -bPt -aad -aad -aad -aad -aaf -ceY -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aad -aad -aad -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -aad -aad -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aae -aad -aad -aad -aad -aad -aae -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bpd -bqp -bqp -bqp -bqp -bqp -bwv -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bPt -bQC -bRX -bTm -bUP -bVU -bWT -bUO -bZd -bUO -bWW -cbf -cdt -cdu -cdv -cdw -chl -cdC -cdP -cdX -cee -cei -ces -ceC -ceF -ceL -ceV -bPt -aad -aad -aad -aad -aaf -aaf -cfm -aaf -ceY -aaf -aaf -aaf -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -aar -aar -aar -aar -aar -aar -aar -aad -aad -aad -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -aad -aad -cfQ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aaz -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -bPt -bQC -bRX -bTn -bUQ -bVV -chI -bYf -bZe -bZR -caB -cbg -cbN -cbN -bWV -cde -chs -cdD -cdP -bRV -cef -cek -ces -ceC -ceF -ceM -ceW -bPt -aad -aad -aad -aad -aaf -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -aad -aad -cfQ -cfQ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aad -aad -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aae -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -bPt -bQC -bRX -bTo -bUR -bVW -bWV -bYg -bZf -bZS -bUO -cbh -cbO -ccr -bWV -cdf -chw -cdE -cdQ -bRV -bRW -cei -cgO -bPn -ceG -ceG -ceG -bPt -aad -aaQ -aad -aad -aaf -aaf -cfm -aaf -aaf -aaf -cfb -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aar -aad -aad -aad -aad -aad -aar -aad -aad -aad -aad -aad -aad -aad -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aae -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -bPt -bQC -bRV -bRV -bUO -chJ -bWW -bYg -bZf -bZT -bWV -cbi -cbP -ccs -bUO -cdg -chO -cdF -cdR -cdY -ceg -cel -ceu -bPt -bPt -bPt -bPt -bPt -aad -aad -aad -aad -ceY -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aaA -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aad -aad -aad -aad -aad -aad -aad -aar -aad -aad -aad -aad -aad -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aae -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bPt -bQC -bRW -bRV -bUS -bVY -bWX -bYh -bZg -bZU -bWV -cbj -cbQ -cct -bUO -cdg -chS -cdG -cdS -cdX -bRW -cei -cev -bPt -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfm -aaf -ceY -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aaQ -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -bmE -aar -aar -aar -aar -aad -aad -aad -aad -aad -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aaz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -bPt -bTe -bRV -bTl -bUT -bVZ -bWW -bUO -bWW -bUW -caC -cbk -cbR -ccu -bUO -bUO -chT -bWV -cdT -bRV -bRV -cei -cew -bPt -aad -aaA -aad -aad -aad -aad -aad -aad -ceZ -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bXb -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -aad -aad -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aae -aad -aae -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aae -aae -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bPt -bQC -bRV -bTp -bUU -bWa -bWY -bYb -bFu -bRW -bRV -cbl -cbS -ccv -bUO -chf -chU -cdH -cdU -bYb -bFu -cem -cex -bPt -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -cfm -aaf -aaf -aaf -ceZ -aaf -aad -aae -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -aad -aad -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aae -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aaz -aad -bPt -bQC -bRV -bTq -bUV -bWb -bWZ -bYb -bFu -bRW -bRV -bRV -bUW -bRV -bRV -bRV -bTl -cdI -cdV -bYb -bFu -cei -bQt -bPt -aad -aad -aad -aad -aaz -aad -aad -aad -ceY -aaf -cfm -aaf -aaf -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -aad -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aaQ -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bPt -bQC -bRV -bRV -bUW -bRV -bRV -bRV -bRV -bRW -bRW -bRW -bRW -bRW -bRW -bRW -bRV -bRV -bRV -bRV -bRV -cei -bQt -bPt -aad -aad -aad -aaQ -aad -aad -aad -aad -aaf -aaf -aba -abd -abe -aaf -cfb -aaf -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -aad -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aae -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aae -aae -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -bPt -bQD -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -bRY -cen -bQt -bPt -aad -aad -aad -aad -aad -aad -aad -aad -aaf -cfd -aaf -aaf -cfm -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -aad -aad -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aae -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaz -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -bPt -bQt -bQt -bQt -bQt -bQt -bXa -bQt -bQt -bQt -bQt -bQt -bQt -bXa -bQt -bQt -bQt -bQt -bQt -bQt -bQt -bQt -bQt -bPt -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aad -aad -aad -aad -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aae -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aae -aae -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aae -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -bPt -aad -aae -aad -aaQ -aad -aad -aad -aad -ceY -aaf -ceY -aaf -cfm -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aar -aar -bmE -aad -aad -aad -aad -aar -aad -aad -aar -aar -aad -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aaQ -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aaf -aaf -aaf -aaf -cfm -aaf -ceY -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -aad -aad -aad -aad -aad -aar -aad -aad -aad -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aad -aad -aae -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aae -aad -aae -aad -aad -aad -aad -aae -aae -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aaz -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -aaf -cfm -aaf -aaf -aaf -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aad -aad -cfQ -cfQ -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aaf -aaf -aaf -cez -aai -ajo -aai -abi -aaf -aaf -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aar -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -cfQ -cfQ -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aaz -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaA -aad -aad -aae -aad -aad -aad -aad -aad -aad -aaf -aaf -aaf -bwx -aaj -aaj -aaj -aaj -aaj -cfz -aaf -aaf -aaf -aad -aad -aad -aaQ -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaz -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -aad -aad -cfQ -cfQ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aae -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aae -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aaf -cff -cff -cff -ceD -cff -cff -cff -ceD -cff -cff -cff -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -aad -aad -cfQ -cfQ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aae -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aae -aad -aad -aae -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aGi -aad -aad -aad -aad -aad -aad -aad -aad -aae -aaf -cff -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cff -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -cfQ -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -aad -aad -cfQ -cfQ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aaz -aad -aad -aad -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aaf -cff -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cff -aaf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -cfQ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -cfZ -aad -aad -cfQ -cfQ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aae -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aaP -aaP -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aae -aad -aad -aad -aae -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaQ -aad -aad -aad -aad -aad -aad -aad -aaz -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aad -aad -aad -aad -aae -aad -aad -aad -aad -aaa -cff -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cff -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aar -aar -aar -aad -aad -aad -cfQ -cfQ -cfQ -cfQ -aad -cfQ -cfQ -cfQ -cfQ -cfZ -cfZ -aad -aad -aad -cfQ -cfQ -cfQ -cfQ -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -"} -(250,1,1) = {" -aaa -aar -aaa -aaa -aaa -aaa -aaa -aar -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aar -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aar -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aar -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aar -aaa -aaa -aaa -aaa -aar -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aar -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aar -aar -aaa -aar -aaa -aaa -aaa -aaa -aaa -aar -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aaa -aaa -cff -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cfi -cff -aaa -aar -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aar -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP -cfP +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaar +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaadaaeaadaaeaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaabaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaabaafaafaagaagaagaagaagaahaaiaajaajaajaakaakaakaakaakaakaakaajaajaajaalaamaagaagaagaagaagaagaanaanaanaanaanaanaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaNaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaaeaadaadaadaadaadaaeaaeaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaadaapaaqaaraaraaraaraaraaraaraaraaraaraaraaraaraaraajaajaajaajaajaajaaraaraaraaraaraaraaaaaaaaaaaaaaraaraaraaraaraasaataafaafaagaagaagaagaagaahaaiaajaajaakaakaakaakaakaakaakaakaakaajaajaalaamaagaagaagaagaagaagaanaauaavaawaawaanaagaagaagaagaagaagaagaaYaaZchgchgchgchgchgchgchgabaaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaaeaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaaeaadaadaaeaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaaeaadaadaaeaadaaeaadaadaadaadaaeaadaaeaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaaeaaeaadaadaadaadaadaadaaeaadaaeaaeaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaaeaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaraaraaraaraaraaraaraaraajaajaajaajaajaajaajaajaajaajaajaajaajaajaalaabaabaabaabaabaabaabaajaajaaxaagaagaagaagaagaagaagaagaagaagaahaaiaajaakaakaakaakaakaakaakaakaakaakaakaajaalaamaagaagaagaagaagaagaanaayaawaawaayaanaagaagaagaagaagaagaagabdaahaajaajaajaajaajaajaajchbaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaaoaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaaeaadaadaadaaeaadaadaazaaeaaeaadaadaaeaadaadaadaadaaeaadaaeaadaaeaadaaeaadaaeaadaaeaadaaeaadaaeaadaaeaadaaeaadaadaadaaeaadaaeaadaadaaeaadaaeaaeaadaaeaadaaeaadaadaar +aaaaaeaadaadaaeaadaadaadaadaadaadaaeaadaaeaadaadaadaadaadaadaadaaeaaeaadaadaadaadaadaadaadaadaadaaeaadaadaaAaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaaeaadaadaaraaraaraaraaraajaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaajaajaalaaCaaDaaEaaFaaFaaFaabaajaajaaxaagaagaagaagaagaagaagaagaagaagaahaaiaajaakaakaakaakaakaakaakaakaakaakaakaajaalaamaagaagaagaagaagaagaanaanaanaaGaanaanaagaagaagaagaagaagaagabdaahaajaajabiabiaajaajaajchbaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaaoaadaadaaeaadaadaadaadaadaadaaeaadaadaaeaadaaeaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaaeaaeaadaadaadaadaadaadaaeaadaaeaaeaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaaa +aaaaadaadaaeaadaadaadaaeaadaadaaeaadaaeaadaadaadaadaaeaadaadaaeaadaadaadaadaadaaeaaeaadaadaadaadaadaadaaeaadaadaadaadaaeaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaraaraaraaraajaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaHaaIaaJaaKaaLaaFaaFaaFaaMaajaajaaxaagaagaagaagaagaagaagaagaagaagaahaaiaajaakaakaakaakaakaakaakaakaakaakaakaajaalaamaagaagaagablaagaagaagaagaagaagaagaagaagaagaagaagaaNaagaagabdaahaajabiabiabiabiaajaajchbaagaagaagaagaagaagaaOaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaaeaadaadaaeaadaadaaeaadaaeaaeaadaadaaeaadaadaadaaeaadaaPaadaadaaPaadaadaadaaPaadaaeaadaadaadaaPaadaadaadaaPaadaadaaPaadaaa +aaaaaeaadaadaadaadaaeaadaadaadaadaaQaadaadaadaadaaeaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaaeaaeaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaaeaadaaeaadaaeaadaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaraaraaraajaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaRaaSaaTaaUaaVaaFaaFaaFaaWaajaajaaXaagaagaagaagaagaagaagaagaagaagaahaaiaajaakaakaakaakaakaakaakaakaakaakaakaajaalaamaagaagaagaagaagaagaagaagaagaaYaaZaaZaaZaaZaaZaaZaaZaaZaaZaxgaahabiabiabiabiabiabiaajchbaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaaeaadaaeaadaaeaaeaadaadaaeaadaadaadaaeaadaadaadaaPaaPaaPaaPaadaadaadaaPaaPaaPaaPaaPaaPaaPaadaadaadaaPaaPaaPaaPaaeaaa +aaaaadaadaaQaaeaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaaeaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaaeaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaraaraaraajaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaHaaIabbaaKaaLaaFaaFaaFabcaajaajaaxaagaagaagaagaagaagaagaagaagaagaahaaiaajaakaakaakaakaakaakaakaakaakaakaakaajaalaamaagabmabmabmabmabmabmaagaagabdaagabyabyabOacqabyabyabyacracsacqabiabiabiabiabiabiaajchcaaZaaZabaaagaagaaNaagaagaagaagaagabfaagaagaaoaaoaadaadaadaaeaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaaeaadaaeaadaaeaadaadaaeaadaaeaadaaeaaeaadaadaaeaadaadaaeaadaadaaPaaPaaPaaPaadaaeaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaadaaPaaPaaPaaPaadaaa +aaaaadaaeaaeaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaaeaadaaeaadaadaadaadaaeaaeaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaaeaadaadaadaadaaeaadaadaadaaeaadaadaadaaeaadaadaadaadaaraaraaraajaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaaBaajaajaalabgaaDabhaaFaaFaaFaabaajaajaaxaagaagaagaagaagaagaagaagaagaagaahaaiaajaakaakaakaakaakaakaakaakaakaakaakaajaalaamaagabmabEaclaDPaFaabmaagaaNabdaagabyacGacWaeqacVactaEBacXacYacZabiabiabiabiabiabiaajaamaagaagabeaaZaaZaaZaaZaaZabaaagaagaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaaeaadaaeaadaadaadaaeaadaaeaadaadaadaaeaaeaadaaeaaeaadaadaadaadaaPaaPaaPaaPaadaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaeaadaaPaaPaaPaaPaadaaa +aaaaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaadaaeaadaadaadaaeaadaadaadaadaaeaadaadaazaaeaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaaeaadaaeaadaadaadaadaadaadaaeaadaadaadaaeaadaaraaraaraarabjaajaajaajaajaajaajaajaajaajaajaajabkabkacvaabaabaabaabaabaabaabaajaajaaxaagaagaagaagaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakaalaamaagabmabEabEaFHaFKabmabmabnaboabnabyadCchachdadCaEIacpadkanuadDabiabiabiabiabiabiaajaamaagaagaagaagaagaagaagaagabdaagaagaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaaa +aaaaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoabqabqabqabqabqabqabqabqabqabjabkabkabkabkabkabkacvabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagabpaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakabrabsabsabtaFMaFMabmabnabmabmabvabwabxabychichjchmchnchoacpacpchxabyabiabiabiabiabiabiaajaamaagaagabzaagaagaagaagaagabeaaZaaZaaZabaaagaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaeaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaaa +aaaaadaadaaeaadaadaadaaeaadaadaadaadaadaaeaadaadaaeaadaadaaeaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaaQaadaadaaeaadaaeaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagaagaaiaakaakaakaakaakaakaakaakaakaakaakaakaakabAabBabCabDabEabFabGabHabIabmabJabKabLabychpchqacpchrcbMbNjacpchDabyabiabiabiabiabiabiaajaamaagaagaagaagaagaagaagaagaagaagaagaagabdaagaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaadaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaaa +aaaaadaaeaadaadaadaadaadaadaadaadabPaadaadabPaaeaadaadabPaadaadaadaaeaadabPaadaadaadabPaadaadabPaadaaeaaeaadaadaadaadaadaaoaaoaagaagaagaagaagabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagabzaagaagaagaagaagaagaagaaiaakaakaakaakaakaakaakaakaakaakaakaakaakabRabSabTabUabEabVabWabXabYbkaabZacaabZabychtchuacpchvccqccQcddchEabyabiabiabiabiabiabiaajaamaagaagaagaagaagaagaagaagaagaagaaNaagabeaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZabaaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaaoaadaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaaa +aaaaadaadaadaaeaadaaeaadaaQaadaaeabPabPabPabPaadaadaadabPabPabPabPabPabPabPaadaaeaadabPabPabPabPaaeaadaadaadaadaadaaeaaeaaoaaoaagaagaagaagabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakacfacgachaciabEacjackabEabEacladfacmacnacoacpacpchHchyabMabyacpchFabyabiabiabiabiabiabiaajaamaagaagaagaagaagaagaagaagacuacuacuaagaagaagaagaagaagaagaagaagaaNaagacuacuacuacuacuacuacuacuacuacuacuaaNaagaagaagaagaagaagaaNaagaagaagabeaaZaaZabaaaNaagaagaagaagaagaagaagaagaagaagaagaaoaaoaadaaeaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaeaar +aaaaaeaadaadaaeaadaadaaeaadaadaadabPabPabPabPaadaaeabPabPabPabPabPabPabPabPabPaadaaeabPabPabPabPaadaadaaeaadaadaadaadaadaaoaaoaagaagaagaagabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakagnagnacwacxabEacyaczacAacBabEacCacDacEacFacHacpabNchyadEabyacpchFchBabiabiabiabiabiabiaajaamaagaagaagaagaagaagaagaagacuacJacuaagaagaagaagaagaagaagaagaagaagaagacuacKacLacKacLacKacuacuacMacNacOaagaagaagaagaagaagaagaagaagaagaagaagaagaagabeaaZaaZabaaagaagaagaagaagaagaagaagaagaaoaaoaadaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaaa +aaaaadaadaaeaaQaadaadaadaadaaeaadabPabPabPabPaaeaadabPabPabPabPabPabPabPabPabPaaeaaeabPabPabPabPaadaadaadaadaadaadaaeaadaaoaaoaagaagaagaagabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaNaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakagnagnacwacPabEacQacRacSackabYacRacTacUabyabyacoadjchzadjabyacpchFchCaajaajaajaajaajaajaajaamaagaagaagaagacuacuacuacuacuadaacuacuaagaagaagaagaagaagaagablaagaagacuadbacLacKacLadcacuacuaddadeacuaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaa +aaaaadaadaadaadaaeaadaadaadaadaaeabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPaadaadaaeaadaaQaaeaadaadaaoaaoaagaagaagaagabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakagnagnacwacxabEafFabmacSadgadhabmaghadiabyacbaccacdaceacIadFchkchGabychechechechechechecheadmadnadoadpadpadqadradsacuadtaduadvacuadwadwacuadwadwacuacuacuacuacuacuacKacLadxacLacKacuacuadyacuacuacuacuacuaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaa +aaaaaeaadaadaaeaadaadaadaaeaaeaadabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPaadaaeaadaadaadaadaadaadaaoaaoaagaagaagaagabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagabqaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakabuabsadzabtabEacQacRacSackabYacRacTadAabyadBadBadBchAadBadGabyabyabyadHadGaagaagaagaagadmadIadJaagaagaagadwadKadLadMadNadOadPadQadRadRadSadLadMadTadUadVadWadXadXadYadZaeaadZadYadXaebaecaedacuacMacNacOaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaaa +aaaaadaaeaadaadaadaaeaadaadaadaadabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPaadaadaadaaeaadaadaadaadaaoaaoaagaagaagaagaagabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqaagaagaagaagaagabqabqabqaagabqabqabqaagaabaabaabaabaabaabaabaagaagaagaagaagaagaagaagaagaagaaiaakaakaakaakaakaakaakaakaakaakaakaakaakaeeaefaegaehabEaeiaejaekackabEaelaemaenaeoaepaepaepaeraepaesaetadGafGafHafIafJadoadoadoafKadJaagaagaagaagacuacuacuacuaeuacuacuaevaewaewaexaeyaeyaezacuaedaeAaedaedaeBaedaeCaedaeBaedaedaeDaedaeEaeFadeacuaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaaeaadaadaadaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaadaadaadaadaaa +aaaaadaadaadaadaaeaadaaQaadaadaaeabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPaadaadaadaadaadaadaadaadaaoaaoaagaagaagaagaagabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqaagaagaagaagaagabqabqabqabqabqabqabqabqaagaabaeGaeHaeIaeJaeGaabaagaagaagaagaagaagaagaagaagaagaaiaakaakaakaakaakaakaakaakaakaakaakaakaakaeKaeLaeMaeNabEaeOaePaeQaeRaeSaeTaeUaeVaeWaeXaeYaeZafaaeZafbafcafdafdafeadHaagaagaagaagaagaffaffaffaffafgaagaagaagadwafhafiacuafjafkafkafjafkafkafjafjaflaeAacuacOacOacOacuacOacOacOacuafmafnacuacuacuacuacuaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaadaaeaadaadaaa +aaaaadaadaaeaadaadaadaaeaadaadaadabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPaadaadaadaadaadaadaadaaeaaoaaoaagaagaagaagabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqaagaagabqabqabqabqabqaagaagaagaagaagabqabqabqabqabqabqabqabqaagaabafoafoafoafoafoaabaagaagaagaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakafpacgachaciafqafrafsaftafuafvafwafxafyafzafAafBafCafDafCafEakeadBadladBadHaagaagaagaagafgaajaajaajaajaajaajaajaagacuafLafMacuafNafOafOafPafQafQafRafkafnaeAacOafSafSafTafUafVafWafXacOafmafnacuafYafZafYacuacuablaagaagaagaagaagaagaagaagaagaagaagabdaaNaagaagaagaagaagaagaagaagaaoaaoaadaadaaeaadaaeaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaadaadaadaadaaa +aaaaaeaadaadaadaaeaadaaeaaeaadaadabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPaadaadaadaaeaadaadaaeaadaaoaaoaagabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaOabqabqabqabqaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqaagaagaabafoagaagbagcafoaabaagaagaagaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakaalaamacwagdageagfaggaftbqZabmabmagiagjabmagkagkagkagkagkaglagmagkagkagkagkagkaagaagaahaajaajaimaimaimaimaimaajaajacuagoadwacuagpagqafOagragsagtaguafkafnagvacOagwagxafSafSagyafSagzacOagAagBacuagCagDagCagEacuaagaagaagaagaagaagaagabpaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaaeaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPaadaadaaeaadaadaadaadaadaaoaaoaagabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqaagaagaabafoagFagGagHafoaabaagaagaagaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakaalaamacwagIagJabmabZagKabZbkaahsagMabEagLagkagNagOagPagkagQcgiagkagNagOagPagkaagaagafgaajaimaimaimaimaimaimaimaajagSaagaagagTagUagVagWagXagYagZahaafjahbaeAacuahcahdafSaheafVahfahgacuahhaedacuaddahiacLacNacOaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaaeaadaadaadaadaaPaaPaaPaaPaaPaaPaaPaaPaaPaadaadaadaadaadaadaadaaa +aaaaadaadaadaaeaadaadaaeaaQaadabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPaadaadaadaadaadaaeaadaadaaoaaoaagabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqahjahjahjahjahjabqabqabqaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqaagaagaabafoahkahlahmafoaabaagaagaagaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakaalaamacwabIageabmahnahoahpabmagLahqahrbyqagkahtahuahvagkagQagRagkahtahuahvagkaagaahaajaajaimaimaimaimaimaimaimaajaajaamaagagTahwahxahyahzahAahAahBahCahDahEahFafSafSahGahHafSafSahGahFahIadXahJahKahLacLacNacOaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaaPaaPaaPaaPaaPaaPaaPaadaadaadaadaadaaeaadaadaaa +aaaaadaaeaadaadaadaaeaadaadaadaadabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPabPaaeaadaaQaadaaeaadaadaadaaoaaoaagabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqahjahMahjahNahjahjahjabqabqaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaabafoafoafoafoafoaabaagaagaagaagaagaagaagaagaagaahaaiaakaakaakaakaakaakaakaakaakaakaakaakaakaalaamacwahOahPabmahQahRahSabmahsabEahTagLagkagkahUagkahVahWahXahVagkahUagkagkagkaahaajaimaimaimaimaimaimaimaimaimaajaamaagagTahYahZaiaaibaicafQaidafjaedaieacuaifafSaigahfafSafSaihacuafmaiiacuaijahiacLacNacOaagaagaagaagaagaagaagaagaagaagaagaaNabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaaeaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaaeaadaadaadaadaadaadaaa +aaaaaeaadaaeaadaadaadaadaaeaadaadaadaadaaeaadabPabPabPabPabPabPabPabPabPabPabPabPabPaaeaadaadaadaadaadaadaadaadaadaadaadaaoaaoaagabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqahjahMahMahMahMahMahjabqabqaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaabaabaabaikaabaabaabaagaagaagaagaagailaagaagaagaahabjaakaakaakaakaakaakaakaakaakaakaakaakaakaiPaamainaciabmabmaioaipaioabmabmabmabmabmagkaiqairaisaitaiuaivaiwaixairaiyaizaiAaiBaiCaimaimaimaimaimaimaimaimaimaajaamaagagTaiDafRafOaiEagsaiFaguafkadLaiGacOaiHaiIaiHaiJafSaiKaiLacOaiMaiNacuagCagDagCagEacuaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaaeaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaar +aaaaadaadaaeaadaadaadaadaadaadaaeaadaadaaeaadabPabPabPabPabPabPabPabPabPabPabPabPabPaadaadaadaaeaadaadaaeaadaadaadaaeaadaaoaaoaagabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqahjahMahMahMahMahMahjabqabqaagaagaagaagaaNaagaagaagaagaagaagaagaagaagaagaagaagaaNaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaiOaaNaiRabkabkabkaakaakaakaakaakabkabkabkacvaaNaamaagaagaiQaagaagaiSaagaagajoaiTaiUaiVaiWaiXaiYakHaiZaiZajaajbckRajcajdajeajfajgajhaimaimaimaimaimaimaimaimaimaajaamaagafjajiafOafOajjagZagZagqafkafnaeAacOafXafWafXajkaiLajlaiIacOafmafnacuafYajmafYacuacuaagaagaagaagaagaagabzaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaaeaadaadaaeaadaaeaadaadaaeaadaadaadaadaaeaadaaeaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaaeaadaaeaadaadaaeaadaaeabPabPabPabPabPabPabPabPabPabPabPabPabPaadaaeaadaadaadaaeaadaadaadaaeaadaaeaaoaaoaagabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqahjahjahMahMahMahMahjabqaagaagaagaagaagaagaaYaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZajnajnajnajnajnajnajnajnajnajnajnajnajnajnajnaaZaaZaaZaaZaaZaaZajpajBajBaajajqajrajsajtajuajvakIajvajvajvajvajvajwajxaizajyaiBajzaimaimaimaimaimaimaimaimaimaajaamaagafjafjafjafjafjafjafjafjafjafnaeAcgjacOacOacOacuacOacOacOacuafmafnajAajAajAajAajAaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaa +aaaaaeaadaaeaadaadaaeaadaadaaeaaeaadaadaadaadabPabPabPabPabPabPabPabPabPabPabPabPabPaadaadaadaadaadaadaadaadaadaadaadaadaaoaaoabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqahjahjahMahMahjahjabqaagaagaagaagaagaagabdaagaagaagaaNaagaagaagaagaagaagabzaagaagaagaagaagaagaagaagaagaagaagaCYaCYaCYaCYaCYaCYakFaleaCYaagaagaagaaNaagakCakCakCalbalbakCakCakCanfanfanfanfanfaagaaNaagajNajCajDajEajCajFajGalgajHajIajvajvajJajwajKajLajMaagaqEaimaimaimaimaimaimaimaimaimaajaamaagajOajPajPajQajRajSajTajPajUaedaeAaedaedajVaedajWaedajVaedajXafmaedajAajYajZajYajAaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaaNaagaagaagaagaagakaaagaaoaaoaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaaeaadaaeaadaadaaeabPabPabPabPabPabPabPabPabPaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaaoaaoabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqahjahjahMahjabqabqaagaagaagaagaagaagabdaagaagaagaagaagaagabqabqabqaagaagaagaagaagaagaagaagablaaNakbakbakbaCYalHalKalKamlamnamVamXaCYamZamZamZamZaagakCalcalJalfalfamialLakCalMamfamgamhanfakbakbakbakbagkagkagkakdakdakdalhakdakfajvajvakgakhakiakjajMaagaqEaimaimaimaimaimaimaimaimaimaajaamaagajOakkaklakmakmaknakoakoakpadVakqahDakraksaktakuadVaksahDahDakvadVakwakxakyakzajAaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaaeaadaadaadaaeaadaadaadaadaadaadaaeaadaaeaadaadaaeaadaadaaeaadaaeaadaaa +aaaaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadabPabPabPabPabPabPabPaadaaeaadaaeaadaadaadaaQaadaadaadaaeaadaadaadaaoaaoabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqahjahjahjabqabqabqaagaagaagaagaagabdaagaagabqabqabqaagabqabqabqaagaagaagaagaagaagaagaagakbakbakbakAaqQaCYanaanbanhaniankanHanIaCYanJaqLanKamZamZakCamjampamkammamoavMamqancamramsamtamuakDakDakDaldakEaljaofakdakGakGaliakdbCpajvasuakJakKakLakMajMakNaqEaimaimaimaimaimaimaimaimaimaajaamaagajOakOakPajPakQakRajPajPajUajOakSakSakSakSakTakSakUakSakSakSajAajAajAakVakWakXajAaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaaeaadaaeaadaaeaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaaeaaa +aaaaadaadaaeaadaadaadaadaadaaeaadaaeaadaaeaadaaeaadaaeaadaadaaeaadaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaaoaaoabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqaagaagaagaagaagabdaagaagabqabqabqabqabqabqabqabqaagaagaagabpaagakbakbakbakBakAakAakAaCYanTanUanVaoEanhaoGaoIaCYanRanXaoBamZamZakCamvamwamxamyamzamYaoaaoNanjanlanmanfakbakbavSavSapgaoeaprapockJckKckLakdalkajvajvallalmajvalnajMaagaqEaimaimaimaimaimaimaimaimaimaajaamaagajOaloalpalqalqalrajPajPajPalsakSaltalualvalwalxalyalzalAakSalBalCalDalEalFalGajAaagaagaagaagaagaagaagakaaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaaeaadaadaadaadaadaaeaadaadaaa +aaaaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaaeaadaadaadaaeaadaadaadaadaadaaeaadaadaadaaQaadaaeaadaadaadaadaadaaoaaoabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqaagabqabqaagaagaagaagaagaagabdaagaagabqabqabqabqabqabqabqabqaagaagaagaagaagakbakYalaalaalaavzakAaCYaoRanHaoSaoEaCYaCYaCYaCYaoCaoLaoCamZaoOakCanQanSanWaoAanZakCaoaaqhaobaocaodanfaoPaoQaoUavSapBaphapAakdakdakdakdakdalNajvajvalOajwalPalQajMaagaqEaimaimaimaimaimaimaimaimaimaajaamaagajUajUajUalRalSalTajPajPajPalUakSalValWalXalYalZamaambalAakSalCalCamcalCamdalCajAaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaazaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaa +aaaaaeaadaadaadaadaaeaadaadaaeaadaadaaeaaQaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaaoaaoabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagabqabqabqabqabqabqaagaagaagaagaagakbameakAakAakAciVaovapvapwapwapwapxapyapCaqdaoVapfapiapjaplapqapsapJaqKaqMaqOaqPaqXaqYaqZardarfariarkaroaroarJavSaqaaxqarRaoDaoMawSappavSamAamBamBamCamDamEaizaiAaiBajzaimaimaimaimaimaimaimaimaimaajaamaagaagaagajUajUajUamFamGamGamGamGakSamHamIamJamKamLamMamNakSakSamOamPamQamRamSamTajAaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaaeaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaaeaadaaeaadaaa +aaaaadaaeaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaAaadaaeaadaadaaeaadaaeaadaadaadaaeaadaadaaeaadaadaaoaaoabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaaNaagaagaagaagabqabqabqaagaagaagaagakbakbakbakbameakAakAayAamUamUamUamUaCYaGCaGDaGEaGGaGIarLarMarQarYasaasbarLaseasiasVasYatGauLauNauTaETaxVaytaytaytaywazmarTbPeaNKawNawNawNawNapkavSannanoanoanpanqanransantchhanvaimaimaimaimaimaimaimaimaimaajaamaagaagaagaagaagajUajOajOajOajOajOakSanwanxanyanzanAanBanCanDakSajAajAajAajAajAajAajAaagaagaagaagaagaagaagaagaagaagaagaagaaNabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaeaaeaadaadaadaadaadaadaadaar +aaaaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaoaaoabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqaagaagabdaagaagaagaagaaOabqabqabqaagaagaagaagakbaShakAakbameakAakAayBamUanEanFanGaCYaCYaCYaCYcibciganLaoHaqbandaneaqeaqfanLalIalIapnangalIapzarmapzarParPapzapzavOaADarSbPLasfckkcklbVtaqiaqjavSaogaohaoiaojanqajxagkagkagkaolaimaimaimaimaimaimaimaimaimaajaamaagaagaagaagaagaagaagaagaagaagaagakSanwaomaonaooaopaoqaoranDakSaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaaeaaeaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaaa +aaaaadaaeaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaaeaadaadaadaaeaadaadaadaadaadaadaaeaadaaeaadaadaadaadaaoaaoabQabQabQabQabQaagabQabQabQabQabQaagabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabdaagaagaagaagaaOaagaagaagaagaaOaagaaOakbaShakAakAaotaouaouaovaowaoxaoyaozatDcijcijatDcikcilanLapmanManNanOanPaoFanLaqkaqlaqmaqoawTapzasTauwauAawDaxxarPatxaBjavSathbefargavSavSavSavSarlarhagkagkaoWaoXaoYagkagkaagaajaimaimaimaimaimaimaimaimaimaajaamaagaagaagaagaagaagaagaagaagakaaagakSakSakSakSakSakSaoZakSakSakSaagaagaagaagaagaagaagaagaagapaapaapaapaapaaagaagakaaagaagaagabdaagaagaagaagaagabzaagaagaagaaoaaoaadaadaadaadaadaadaaeaaeaadaadaadaadaadaadaadaadaaeaadaadaaeaaeaadaadaadaaa +aaaaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaaQaadaadaadaadaadaadaadaaoaaobtLbyObyObyObyObNwbyObyObyObyObyObNwbyObyObyObyObyObNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwckVaagaagaagaagaagaagaagaagabqabqabqabqabqabdaagaagaagaagaagaagaagaagaagaagaagaagakbakbakbakbapuapcapdapdapdapdapcapeatDatDatDatDcimciPanLapYaoJaoKaptapZaqcanLarnarpamWarNarOarPazAatBatBatBaAjapzaEUaABavSaHwciYapEapFapGapHapIapDapKapLapMapNapOapPapMagkaagaajaajaimaimaimaimaimaimaimaajaajaamaagaagaagaagaagaagaagaagaagaagaagaagaagaagapQapRapRapSaagaagaagaagaagaagaagaagaagaagaagaagapaapTapUapVapaaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaaeaaeaadaadaadaadaadaadaadaaeaadaaeaadaadaaeaadaadaadaadaadaaeaadaaeaaa +aaaaaeaadaadaadaadaadaadaaQaadaadaaeaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaoaaockWabQabQabQabQaagaagaagaagaagaagaagabQabQabQabQabQaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbNoaagaagaaOabqabqabqaagaagaagabqabqabqabqabdaagaagaagaagabqabqabqaagaagaagaagaagaagaagaagakbapbapdapWapWapWapWapdapXatDciQciRciScjhcjiaqgaqRaqnaqpaqSaqTaqUaqVarVarWarXarZasdauxaNcaAXaAXaAXbKEbYvchZcjnasjcjocjlaslaqraqqaqqaqqaqsaqtaquapMaqvapMaqwaqxagkaagaagaajaajaimaimaimaimaimaajaajaqyaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaqzaagaagaagaagaagaagaagaagaagaagaagaagaagaagapaapaaqAaqBaqCapaapaapaapaaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaQaadaaeaadaadaadaadaaeaadaadaaeaadaadaaQaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaqDaqDaqFaqGarEaqDaqFaqGarEaqDaqFaqGarEaqDaqFaqGarEaqDaqDaagaagaagaagaagaagaagaagaagaagaagaagbNoaagabqabqabqabqabqabqaagaagabqabqabqaagabdaagaagaagabqabqabqabqaagaagaagaagaqHaqHaagaagakbapbapdapWapWapWapWaqIaqJaqNasRckvckwckxckyaqgaqWaraarbaoJarcareaqVasnamWamWarNasMarPcjpaDCaGBaZwbaRckhasNasPasQckqckrcjmaskcksckBasmatKatLasoarqarrarsaqwartaruaruaruaruaruaajaajaajaajaajaajaajaamaagaagaagaagaagaagaagaagaagaagaagaagaagaagarvarwarvaagaagaagaagaagaagaagaagaagapaapaapaapaapaarxaryarzarAarBarAarCapaaagaagaagabdaagaagaagaagablaagaagaagaagaaoaaoaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaaeaadaadaaeaaeaadaaeaadaadaadaadaaeaadaaQaadaadaadaaeaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaaoaaobNoaagaqDarDaqFaumarEarDaqFaumarEarDaqFaumarEarDaqFaumarEarDaqDaagaagaagaagaagaagaagaagaagaagaagaagbNoaagabqabqabqabqabqabqaagaagaagaagaagaaNabdaagaagaagabqabqabqabqaagaagaagaqHaqHaqHaqHaagakZapbapdapWapWapWapWaqIarFarGarHarIciTarKaDKanLarjarUatAaMjciUckianLasUasWasXasZatwapzbqPaKGaLqciocipapzatxatyaoTatiaqqatfaqqatfatEatfatfatfapLapMaqvoRXaqwapMaspasqasrassastaajaajaajaajaajaajaajaamaagaagaagaagaagaagaagaagaagaagaagaagaagaagasxasyasxaagaagaagaagaagaagaagaagaagapaaszasAarxapaasBasCasDasEasFasGasHapaaagaagaagabdaagasIaagaagaagaagaagabfaagaaoaaoaadaadaaeaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaaeaadaaeaadaaa +aaaaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaQaadaadaaQaadaadaadaadaadaadaadaadaaQaadaadaaoaaobNoaagaqDaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqDaagaagaagaagaagaagaagaagabzaagaagaagbNoaagabqabqabqabqabqabqaagaagaagaagaagaagabdaagabqabqabqabqabqabqaagaagaagaqHaqHaqHaqHaagakZapbapdapWapWapWapWapdasJasJasJasJasJasKasLckjanLanLanLanLaqfaqfanLalIatFangalIatHciqbVsapzarPapzcjqapzauGauJatQataatbatcatdateaoTatzatgaoTaoTapMaqvtbFaqwapMauHatjatjatkastatlatlatlatlatlatlatlatlaagaagaagaagaagaagaagaagaagaagaagaagaagaagasxasyasxaagaagaagaagaagaagaagaagaagapaatmarzarAatnatocgCarzaryarBarAatpapaaagaagaagabdaagaagaagaagaagaagaagaagaagaaoaaoaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaaeaadaadaadaadaadaaa +aaaaadaadaadaadaaeaadaadaadaadaadaaeaadaadaaeaadaadaaeaadaadaaeaadaadaadaadaadaaeaadaaeaadaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaqDaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqDaagaagaagaagaagaagaagaagaagaagaagaagbNoaagaagabqabqabqaagaagaagaagaagaagaagaagabdaagabqabqabqabqabqabqaagaagaagaagaqHaqHaagaagakZapbapcapdapdapdapdapcasJatqatratsattatuatvavGavHavIavJatCasSatMauBauCauDauFauIayDauyavKavLayEavNavKauybXFavQatNatOatPashatRatTatUasjasjauMaoTatVatWeQAatXatYaruatZauaanYastatlaucaudaueaudaufaugatlaagaagaagaagaagaagaagaagaagaagaagaagaagaagasxasyasxaagaagaagaagaagaagaagaagaagapaauhauiasGaujaukarAarzaulapaapaapaapaavtaagaagabdaagaagaaNaagaagaagaagaagaagaaoaaoaaeaadaadaadaadaadaadaaeaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaoaaobNoaagaqDaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqDaagaagaagaagaagaagaagabfaagaagaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaagaagabdaaNaagaagaagabqabqabqaagaagaagaqHaqHaagakbakbakbaokaqQakAauobteaAUaupasJauqaurausautauuauvavRavTavUawCawEawJaxoaxpaxzayuazOazOayFauzawFawHawKawLawMauzatxawOauOauPatSauRauSauUatfcjZatfcktaoTaHvaqvcLvauVauWauXauYauZavaastatlavbavcavdaveaveavfatlavgavgavgavgavgavgavgavgavgaagaagaagaagaagavhaviavhaagaagaagaagaagaagaagaagaagapaavjavkarAapaavlavmavnavoavpavqavravsaajavvaaZavuaaZaaZabaaagaagaagakaaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaaeaadaadaadaadaadaadaaa +aaaaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaaQaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaaQaadaadaadaadaadaaeaaoaaobNoaagaqDaqDarDawuarDavwarDawuarDaqDarDawuarDaqDarDawuarDaqDaqDaqDaqDaqDaqDaagaagaagaagaagaagaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaqHaagakbakAakbavxaouaouavyavzakAavAasJavBavCavDattavEavFavGawPawQawRatCckzaCNaCQaCRaCSaDLazOaDOaxraxsaxvaxwaxAaxBaxCaxDaxEaxFaoTaoTaoTaoTaoTaoTaoTaoTaoTaoTavVavWavXavYavZaruawaawbawcastatlawdaveaweawfawhawWatlayVawjawkawkawkawkawkawlavgaagaagaagaagaagaagaqzaagaagaagawmasxawnaagaagaagaagapaapaapaawoapaawparAawqawrarBawsawtapaawvaagaagaagaagaagabdaagaagaagaagaagaagaaoaaoaadaadaadaaeaadaaeaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaaa +aaaaadaaeaadaadaaeaadaadaaQaadaadaaeaadaadaadaadaadaaeaadaaQaadaaeaadaadaadaadaadaadaaeaadaadaadaadaaQaaeaadaadaadaadaadaaoaaobNoaagaqDaqDaqDawwawxawxawxawwawxawxawxawwawxawxawxawwawxawxawxawxayfaqDaqDaagaagaagaagaagaagaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagakbakbakAakbakbakbakbakbawyakAawzasJasJasJasJasJawAawBaxGatCatCatCatCaEEaEEborbptbqOcdfcgVcivbTIaxJaxKaxMaxNayqasgayxayzazbazdazgazhaziazjazkazlaHxapMapMascaqwapMaqwckGaruaruaruaruastatlatlaveaweawVaveawUatlayVawXawYawYawYawYawYawZavgavgaagaagaagaagaagaxaapRapRapRaxbaxcaxdapRaxeaagaagakaaagapaapaapaaxfapaapaapaapaapaapaapaaagaagaagaagaagaagabdaagaagaagaagaagaagaaoaaoaadaadaaeaadaadaadaadaadaadaaeaaeaaeaadaaeaadaadaadaaeaadaaeaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaoaaobNoaagaqDaqDarDawuarDaqDarDawuarDaqDarDawuarDaqDarDawuarDaqDaqDaqDawuaqDaqDaagaagaagaagaagaagaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaaNaaYaxgaagaagaagaagaagaagabpaagaagaagaagakbakbakAakAakbakAakAakAakbawyakAaxhaxiaxjaxkaxlaxmaxncgPcirciycizciAciBciBciAciCciDciGciIaCNazuauzaznazoazxazQaKEauzazSazTazUazVazWazXazYazZaAaaAcayIapMaxOaxQaxPaxQaxPaxRaxQaxQaxSaxUazDawiatlaxWaweaxXaxYatlatlazeawXawYaxZayaaxZawYaybawlavgavgavgavgavgavgaycavgaagaagawmasxawnaagaydapRapRapRapRapRapRapRayeapRapRapRapRapRaxeaagaagakaaagaagaagawmasxawnaagaagaagaagaagaaoaaoaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaar +aaaaadaaeaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaaQaaeaaQaadaadaadaadaadaadaadaaoaaobNoaagaqDarDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqDaqDawuaqDaqDaagaagaagaagaagaagaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagakbakAakAakAakbakAakAakAakbaygakAayhaxiayiayjaykaylaymaynayoaypayraEEaEEaEEaEEaAdaAeaAfaAeaAdaAdaAdauyauyauyauyauyauyauKasOaAgaAgaAzaAAaAAaAgaAgaAgaAEapMayHaAhayIapMayJaCdapPapMayKaxTayMayNatlatlayOayPatlatlayVawjayQawYayRayaaySayTawYazqayUayUayUawlavgayVayWavgaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaydapRapRapRapRapRapRayXaxcaxdapRaxeaagaagaagaaoaaoaadaadaadaadaadaaeaadaadaadaadaadaaeaaeaadaaeaadaadaaeaaeaazaadaadaadaadaaa +aaaaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaaQaaeaadaaoaaobNoabzaqDaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqDaqDawuaqDaqDaagaagaagaagaagaagaagaagbNoaagaagaagaagabzaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagakbakbakbakbakbakAakAakAakbawyakAakBaxiayYayZazaaxiaxtcjWazccbmaxtaxtaAFaAGaAHaAIaAJaAKaALaAMaANaAOaAPaAdasOavPaxIaxyaxHaxLaAgaAQaARaASaATaBhaBiaBLaAgaHyazyaBdazzazzazzaBdatJatYayKawgazCayLaabawYazFazGawYawYawYazHawYawYaxZazIazJazKawYayVavgavgavgaybazLawkazMavgaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqaagaagaagaagaagaaNawmasxawnaagaqzaagaagaagaaoaaoaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaaQaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaqDaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqDaqDawuaqDaqDaagaagaagaagaagaagaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaagabdakaaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakbakbakbakbakbawyakAakAaxiaxiaxiaxiaxiazNaACccocdhaBNaBOaBPaBSaBUaBVaCOaDQaDSaDTaDUaBSaDVaDWayvayyaCPauEaDJckFaAgaEzaEAaECaEDaEPaEQaIbaJTckPaAkaBdaAlaAmaAnaBdaqwapMetiaAoaApaApawYawYaAqaArawYawYaxZaAsaNlawYawYaAtaAuaAuaAuaAuaAuaAvaAuaAuaAuaAuaAwavgaagaagaagaagaagaagabpaagaagaagaagabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagabeabaaagaqzaagaagaagaaoaaoaadaadaadaadaaeaadaadaaeaadaadaadaadaaeaadaaeaadaadaadaadaadaadaadaadaaeaaa +aaaaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaoaaobNoaagaqDarDaqFaBGarEarDaqFaBGarEarDaqFaBGarEarDaqFaBGarEarDaqDaqDawuaqDaqDaagaagaagaagaagaagaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakcawyakAaAxaAyaAyaAyaAyaBRbwjcjHcjIcjJaysaLraLwaOXaPcaZxaZybbVbcabcdbcebdkaLwbdlaDMaDXaDYaJjbaQbetaAgbfIaKdaEDaEDaEDaEDaEDaJTaCdawGaBdaEFaEGaEHaBdaqwaDiaBkaBlaBmaBnaBmaBoaBpaBqaBraBsaBoaBtaBuaBvaBwaBxaByaBzaBAaBBaBCaBDaBEaBDaBFaAuaAwavgaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaaeaadaaeaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaaa +aaaaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaQaadaadaadaaeaadaadaaoaaobNoaagaqDaqDaqFaGjarEaqDaqFaGjarEaqDaqFaGjarEaqDaqFaGjarEaqDaqDaqDawuaqDaqDaagaagaagaagaagaagaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaagabdaaNaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakcavxaouaBHakbakbaBIaBIaBIaBIaBJaBIaxuaAdbgLbjCbjDbkIbnabsZbytbyubyvbEpbjDbjCbHXasOcdrcitciwcixciEaAgbLzaKeaKfaKIaMLaMLaMLbfJaCeaCgaBdaBdaBdaBdaBdayJaEfaCdaCiaCjaCkaCjaClaCmaCnaCoaCpaCqaCraCsaCtaCuaCvaCwaCxaCyaCzaCAaCBaCCaCDaCEaAuaAwavgaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaar +aaaaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaaoaaobNoaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDawuaqDaqDaagaagaagaagaagaagaagaagbNoaagaagaagaagaagabpaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakbaCFakbaCGakbakbaBIaCHaCIaCJaCKaBIazfaBTcaFcbKcbTaBTaBTaBKcbUaBKaBMaBMcdqcdscezasOcjfcjgcjjcjzasOaAgaAgaAgcgwcgGcgTcincisaAgaBYaDebYZavXaDfavXbYZaDgaEZapMaDjaDkaDlaDlaDlaDlaDlaDlaDmaDnaDoawYawYawYaAuaAuaAuaDpaBDaDqaDraDsaDtaDuaAuaAwavgaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaadaaa +aaaaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaaeaadaadaadaaeaadaadaadaadaadaadaadaaAaadaadaaeaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaDvaqDaqFaqGarEaqDaqFaqGarEaqDaqFaqGarEaqDaqFaqGarEaqDaDvarDawuaqDaqDaagaagaagaagaagaDwaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakbaDxaDyaDzaDAaDBawIaDDaDEaDFaDGaBIazfciuciFciHciJciKcbKciLciMciNciOciWcgUciXciZasOasOasOcjVasOasOaAgaAgaAgaAgaAgaAgaAgaAgaAgaAkaGHapMapMapMapMapMaJmaFNaDbaDkaDlaEgaEhaEiaEOaEjaDlaEkaElaosaDZaEoaEoaAuaEpaAuaEqaBDaBDaEraBDaBDaEsaAuaAwavgaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagabdaaNaqzaagaagaagaaoaaoaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaaeaadaaeaadaadaaeaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaaoaaobNoaagaDvarDaqFaumarEarDaqFaumarEarDaqFaumarEarDaqFaumarEarDaEtaqDawuaqDaqDaagaDwaDwaDwaDwaDwaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaEuakbakbakbaDyakbaCGaBIaEvaEwaExaEyaBIazfaBTcjaaDNciJcjecbKcjkcjrcjsciOcjtcgUcjucjvaBMazsaztaHXckbayCayGazvazwazPazPazRaAWazRayCaAkazrazpaBXaCfaCUaAZaNMaHAaCbaFbaFcaFdaFeaFfaFgaFgaFhaFiaFjaFkawYaFlaAuaAuaAuaAuaAuaFmaFnaFoaFpaFqaFraAuaAwavgaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagabfaagaagabdaagaqzaagaagaagaaoaaoaadaaeaadaaeaadaadaadaadaadaaeaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaaa +aaaaadaaeaadaadaaeaadaadaadaadaadaaeaadaadaadaadaaeaaeaaeaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaaoaaobNoaagaDvaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDarDaqDawuaqDaqDaagaagaagaagaDwaDwaagaagbNoablaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagaaNaagaagaagaaNaagaagakbakAaFsakAaFtakbasvaBIaBIaBIaBIaBIaBIaAbaBTcjwcjKcjxcjycbKcjAcjBcjCciOcjDcjEcjFcjGaBMaHXaDRaztckfayCaAYazRazRazRazRazRaBaazRazRaAkapMaEWaCWaAmaDaaHzapMaIdaChaFbaFQaFRaFSaFTaBZaFUaFVaFWaFXaFYawYavgaAuaFZaGaaGbaAuaGcaGdaGeaGfaGgaGhaAuaAwavgaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaaeaadaaeaadaadaaeaadaadaadaaeaadaaeaadaadaadaadaadaadaaa +aaaaadaadaadaadaGiaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaaeaadaadaaoaaobNoaagaDvaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDarDaqDawuaqDaqDaagaagaagaagaagaagaagaagbNoaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagaagaGkaHaaHaaHaaHaaHaakbaGlaGmaGnaGoaGpaGqakAakAayhaGraGsaGtazfaBTcjLcjMcjNcjOaBTcjPcjQckaaBMckcckdckeckoaBMaDRaDRaBWckgaBfazvazRaBgazRazRazRazRazRaBQaFOapMaHBaCWaAmaDaaHEapMckuaCVaGJaGKaGLaGMaGNaEdaGOaDlaGPaGQaNvawYaGSaAuaGTaGUaGVaGWaGXaBDaFoaBDaGYaGZaAuaAwavgaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaaeaadaaeaadaadaadaadaaa +aaaaadaaeaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaockXaDvarDaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDarDaqDawuaqDaHcaabaagaagaagaagaagaagaagbNoaagaagaagaagaagaagaagaagaagaagaaNaagaHbaHdaHeaHeaHeaHeaHeaHeaHeaHeaHeaHeaHeaHeaHNaajaajaajaajaacakbakbakbakbakbaHfaHfaHfakAakAakAakAakAakAckpaBTaBTaBTaBTaBTaBKaBKaBKaBMaBMaBMaBMaBMaBMaDRaZzckgckbayCazRaCaazRaCcazRazRbMKazRayCckIapMaIfaCWaAmaDaaJhapMckAaCXaHCaDlaHDbypaHFaEdaHGaDlaGPaGQaHHawYayVaAuaHIaAuaAuaAuaHJaHKaHLaBDaBDaHMaAuaAwavgavgaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaaeaadaadaaeaadaadaadaadaaeaadaadaaeaadaadaadaadaaeaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaaeaadaadaaeaadaadaaeaaoaaockXarDaqDaqDarDawuarDavwarDawuarDaqDarDawuarDaqDarDawuarDaqDarDaqDawuaHOaHQaHPaHPaHPaHPaHPaHPaHPaHPckTaHPaHPaagaagaagaagaagaagaagaagaagawmasxawnaagaagaagaagaagaagaagaagaagaagaagaaNaHSaajaHRaajaajaHTaHUaHUaItaHUaHUaHVaHVaHVaHVaHVaHVaHVaHVaHVaHVaHVaHVaHVaHVaHpaHgaHhaHiaHjaHkaHlaHmaHnaHoaDRaJXaDRaDRayCayCayCayCaELaESayCayCayCayCaAkaENaKaaEaaEbaEcaAZaERckCaKJaDlaDlaIeaCLaEnaEdaIgaDlaIhaGQaGRaIiazeaAuaIjaIkaIlaImaInaIoaIpaIqaIraIsaAuaAwayVavgaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaaeaadaaeaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaaa +aaaaaeaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaockXaHOawxawxawxawwawxawxawxaIuawxawxawxawwawxawxawxawwawxawxawxawxawwawxaKUaIvaIwaIxaIyaIzaIAaIBaICckUaIDaIEaIFaIFaIFaIFaIFaIFaIFaIFaIFaIGaIHaIIaIFaIFaIFaIFaIFaIFaIJaagaagaagaagaagaHSaajaajaajaajaHTaHUaHUaHUaHUaIKaHVaILaIMaINaIOaIPaIQaIRaISaITaIUaIVaHVaHVaIWaHjaHWaHjaHjaHjaHjaHWaHjaHjaJdaJYaJeaubapMckMaENapMaJmaGHapMapMapMaJiaAkaGHapMapMapMapMapMaJmckDaKJaJnaJoaJpaJqaJraCTaJsaFVaJtaJuaJvawYayVaAuaJwaJxaJyaAuaAuaAuaAuaAuaAuaAuaAuaAwavgavgaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagabdaagaqzaagaagaagaaoaaoaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaaeaaeaadaadaadaaeaaeaadaadaadaaa +aaaaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaockXarDaqDaqDarDawuarDaqDarDawuarDaqDarDawuarDaqDarDawuarDaqDarDaqDawuaqDaqDaHPaJzaIBaIBaIBaIBaIBaJAaJBaJCaHPaagaagaagaagaagaagaagaagaagawmasxawnaagaagaagaagaagaagaJDaagaagaagaagaagaHSaajaajaajaajaHTaHUaHUaHUaHUaIKaJEaJFaJFaJGaJHaJIaJHaJHaJHaJHaJJaJKaJLaHVaJMaIXaIYaIZaHjaHjaJaaJbaJcbpJaJUaKHbhUbjfbjgbjgbjhbjgaHZcknarqarqarqarqaJZaKbceDaKcaNLaKcceDaJkaEeaCZaKgaKgaKgaKgaKhaKgaKiaFVaGPaElaGRawYayVaAuaAuaAuaAuaAuaMxavgavgavgayVazeavgaKjavgavgaKkaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaaeaadaaeaadaaeaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaadaaa +aaaaadaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaaoaaockXaDvarDarDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDarDaqDawuaqDaqDaHPaKmaKnaIBaKoaIBaIBaKpaKpaKqaHPaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaKraagaagaagaagaagaHSaajaKsaajaajaHTaHUaHUaItaHUaIKaKtaKuaKvaKwaKxaKyaKuaKzaKAaKuaKBaKuaKCaHVaKDaJNaJOaJPaJQaJQaJQaJRaJSbVEaHpaKFaDbaLlaAiaBbaBbaBcaLlaLlaLlaLlaMgaDbaDcapMaBdaBdaBdaBdaBdaDhckEaDbaKJaKKaKKaKLaKKaKKaKKaKKaKMaKNaKMaKKayVaKOayUayUayUaKPayUayUayUaKQaEVayUayUaKRaKSaKTaKkaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaaNabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaaa +aaaaadaKlaKVaKWaKWaKWaKWaKWaKXaKlaKlaKlaKlaKlaKlaKlaKlaKlaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaaoaaobNoaagaqDaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDarDaqDawuaqDaqDaHPaHPaHPaHPaHPaKYaLJaHPaHPaHPaHPaagaagaagaKZaagaaOaagaagaagaagabdaagaaNaagaagaagaagaagaKraagaagaagaagaagaHSaajaajaajaajaHTaHUaHUaHUaHUaIKaLaaKuaKuaKuaKuaKyaKuaLbaLcaKuaLdaLeaHVaHVaHpaHpaHpaHpaHpaLfaLgaLhaLiaLjaHpaLkaLlaLlaLlaOCaOCaLlaLlaOFaAVaLoaLlaMkaAkapMaBdaLsaLtaLuaBdaJmaEeapMaLvaKKbJBaLxaLyaLzaLAaLBaLBaLCaLDaKKaLEaLFaLEavgayVavgavgavgavgaLGaLGaLHaLGaLGaLGaLIaKkaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaaeaadaadaadaaeaadaadaadaadaaeaaeaadaadaadaadaaeaadaaeaadaadaaa +aaaaadaKlaLLaLKaLMaLNaLMaLOaLPaKWaKWaKWaKWaKWaKWaKWaKXaKlaKlaKlaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaoaaobNoaagarDaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaDvaqDawuaqDaqDaqDaqDaLQaajaajaajaajaajaajaajaajaLRaLRaLRaLRaLRaLRaLRaLRaLRaLRaajaLRaLRaLRaLRaLRaMGaagaKraagaagaagaagaagaHSaajaajaajaajaHTaHUaHUaItaHUaIKaHVaLSaLTaLUaKuaLVaKuaLWaLXaKuaLYaLZaHVaHVaMaaMbaMcaMdaMeaHpaHpaHpaHpaHpaHpaLkaLlaODaOHaPzaPzaMfaLpaPzaPzaPzaLlaMkaAkapMaBdaAlaAmaAnaBdaJmaEeapMaMlaMmaMnaMoaMpaMqaMraMpaMpaMsaLBaMtaMuaMvaMwavgayVaNpaNqaNravgaLGaMyaMzaMAaMBaLGaLIaKkaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaKlaLLaLKaMCaMDaMEaLKaLKaMFaLMaLKaLKaLKaLKaLKaMHaKlaKlaKlaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaDvarDaqFaBGarEarDaqFaBGarEarDaqFaBGarEarDaqFaBGarEarDaDvaqDawuaqDaqDaqDaqDaiRabkabkabkabkabkabkabkabkabkabkabkabkabkabkabkabkabkabkabkabkabkabkabkaajaQfaagaKraagaagaagaagaaNaHSaajaHRaajaajaHTaHUaHUaHUaHUaHUaHVaLSaLTaMIaKuaMJaMKaGFaMMaMNaLYaMOaHVaHVaMPaMQaMRaMSaMTaEXaMVaMWaMWaMWaMWaMXaMYaPzaOIaOLaPzaPzaPzaPzckQaPzaLlckOaAkaBeapMapMapMapMapMaJmaEeapMaNdaNeaNfaNgaNgaNgaNhaNiaNjaNkbVTaKKaNmaNnaNoavgaNYaNYaNYaNYaNYaLGaNsaNtaNuchKaLGaLIaKkaagaagaagaagaagaagaagaagabqabqabqaagaagaagabqabqabqaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaar +aaaaadaKlaLLaLPaNwaNwaMEaMEaMCaNwaMEaLKaMCaNwaMEaLKaMHaKlaKlaKlaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaaeaadaadaaeaadaaoaaobNoaagaDvaqDaqFaGjarEaqDaqFaGjarEaqDaqFaGjarEaqDaqFaGjarEaqDarDarDawuaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaagaagaagaagaagaagaagaagaagaagaagaagaKZaLQaQfaagaKraagaagaagaagaagaHSaajaajaajaajaHTaHUaHUaHUaHUaHUaHVaHVaHVaHVaNxaHVaNyaHVaHVaNzaNAaHVaHVaNBaNCaNDaNEaNCaNCaNFaNGaNHaNHaNHaNHaNHaLlaLlaPBaOLaMhaPzbgpaLlaLlaLlaLlaHvaNJatYaEKapMbfCapMaEKaNMaEeapMaNNaNeaNOaNPaLBaLBaNQaNRaLBaNSaNTaNUaNVaNWaNXaNYaOWaEYaOYaOZaPaaLGaNZaOaaObaOcaLGaLIaKkaagaagaagaagaagaagaagabzaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaKlaLLaLKaOdaOdaOeaMEaNwaMDaMEaLKaNwaMDaMEaLKaMHaKlaKlaKlaKlaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaoaaobNoaagaDvaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDawuaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaHSaajaajaajaajaHTaHUaHUaItaHUaHUaOfaOgaOhaOiaOjaOkaOlaEMaOmaOoaOpaOqaOraOsaOtaOuaOvaOwaOxaOyaLkaNHaOzaOAaOBaNHaOGaLmaPDaPCaNIaPzaLoaNaaOJaOKaOMapMaONaKJnKFaBdaKJaBdpcPdDdaEeaBeaMlaNeaOOaLBaOPaOQaORaOSaLBaOTaOUaKKaKKaNYaNYaOVaRVaRVaRVaRVaRVaPbaMzbVNaNuaPdaLGaLIaKkaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaaNaqzaagaagaagaaoaaoaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaaeaadaadaadaadaaa +aaaaaeaKlaLLaLKaLKaOdaMCaNwaMEaOdaOeaNwaOdaOdaOeaLOaMHaKlaKlaKlaKlaKlaKlaKlaPeaPeaKlaKlaadaadaadaadaadaadaaeaadaadaadaadaaoaaobNoaagaDvaqDaqFaqGarEaqDaqFaqGarEaqDaqFaqGarEaqDaqFaqGarEaqDaqDaqDawuaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaHSaajaKsaabaabaPfaPgaPfaPfaIKaIKaOfaPhaPiaPjaPjaPkaPlaPmaPmaPmaPnaPoaPpaOsaPqaPraPsaPtaPuaOyaLkaPvaPwaPxaPyaNHaJfaPzaPAaQCaQDaQGaQDaQHaPzaPzaPEaPFaPGqfYaPHaPHaPIaPHaPHaKJaPJaPKaPLaNeaPMaLBaLBcgnaORaPNaLBaPOaPPaPQaPRaPSaPTaPUaPVaPWaPWaPVaPXaPYaPZaQaaQbaQcaLGaLIaKkaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabpaagaagabdaagaqzaagaagaagaaoaaoaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaaa +aaaaadaKlaLLaLKaLKaQdaMCaNwaMEaMCaNwaQeaLKaLPaLKaLKaMHaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaadaadaaeaadaadaadaadaadaadaaoaaobNoaagaDvarDaqFaumarEarDaqFaumarEarDaqFaumarEarDaqFaumarEarDaqDaqDawuaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagakaaagaagaHSaajaajaRgaQgaQhaQiaQjaQgaQkaQlaOfaQmaOjaOjaQnaQoaQpaPmaPmaPmaQqaQraQsaQtaQuaQvaQwaQxaQyaOyaLkaNHaQzaQAaQBaNHaQKaLoaQEaOEaPzaQFaNbaMZaQIaQJbunapMaAkaBdaPIaPIaQLaQMaPIaBdaEeapMaNNaNeaQNaQOaNgaNgaQPaQQaQRaQSaQTaQUaQVaQWaQXaQYaQZaRaaRbaRcaRdaLGaReaLGaLGaLGaLGaRfaKkaKkaKkaKkaKkaKkaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaa +aaaaadaKlaLLaLOaMCaNwaMEaNwaMEaNwaNwaMEaLKaLPaRhaRhaRiaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaadaadaadaadaadaadaadaadaaoaaobNoaagaDvaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqDaqDawuaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaRjaSmaSmaajaRkaRlaRmaRnaRoaRpaRqaOfaOfaRraRsaRsaRtaRuaPmaPmaPmaRvaRwaRxaOyaRyaRyaOsaRzaRyaOyaLkaNHaNHaRAaRBaRCaNHaNHaNHaRDaREmBpaNHaRGaRGaRHaRIapMblDaKJaPHaPHaRJaPHaPHaKJbreapMaRKaRLaRMaRNaROaRPaRQaRRaKKaRSaRTaLBaRUaRVaRWaRXaRYaRZaSaaSbaScaNYaSdaSeaFLaGzaSfaSgaGAaKkaKkaSiaSiaSjaSkaSlaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaKlaLLaLKaNwaNwaMEaOdaOeaOdaOdaOeaLKaMHaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaadaaeaadaadaaeaaAaadaadaaoaaobNoaagaDvaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqDaqDawuaqDaqDaqDaqDaqDaqDaqDavwaqDaqDaqDaqDaqDaqDaqDaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaaNaagaagaagaVyaQgaSnaSoaSpaSqaSraSsaStaOfaSuaSvaSwaSxaSyaSAaSzaKuaSCaSDaSEaSFaSGaSHaSIaSJaSKaSLaLkaNHbwXaSNaSOaSPaSQazBaSSaSTaSUaSVaSWaSXaSYaSZaRGapMaAkaBdaPIaPIaRJaPIaPIaBdaEeapMaTaaTbaRLaRMaTcaTdaTeaTfaKKaTgaThaPRaKKaTiaTjaTkaRVaTlaTlcgpchLaNYaTmaTnaTnaTnaTnaToaTpaTqaTraJlaTtaTuaMUaTwaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaazaadaadaaeaadaadaadaaa +aaaaadaKlaLLaLKaOdaOdaOeaLKaLKaLKaNwaNwaTxaLPaKXaKlaKlaKlaKlaKlaKlaKlaKVaKWaKWaKWaKWaKXaKlaKlaKlaKlaadaadaadaadaaeaadaadaaoaaobNoaagaDvaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqFaumarEaqDaqDaqDawuaqDaqDaqDavwaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaagaagaagaIKaIKaTzaTAaTAaTAaTAaTAaTBaOfaOfaTCaTDaTEaTFaTGaTHaTHaTIaTJaTJaTKaTLaSKaTMaTNaTOaTKaLkaNHaRFaTQaTRaTRaTRaTSaTTaPwaPwaTUaTVaPwcgDaSZaRGapMaAkaTWaKJaBdaTXaBdaKJaTWaEeapMapMaTYaTZaRLaUaaUaaUbaKKaKKaUcaUdaUeaKKchMaNYaNYaUfaUgaUgaUhaNYaNYaUiaTnaUjaUjaTnaTnaTnaTnaTnaTnaUkaUlaUmaUnaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagablaagaagaagabdaagaqzaagaagaagaaoaaoaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaKlaLLaLKaLOaLKaLKaLKaLKaLKaUoaUoaLKaLKaLPaKXaKlaKlaKlaKlaKlaKVaLPaLKaLKaLKaLKaLPaKXaKlaKlaKlaadaadaaeaadaadaadaadaaoaaobNoaagaDvaqDarDawuarDavwarDawuarDaqDarDawuarDaqDarDawuarDaqDaqDaqDawuaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaagaagaagaIKaUpaUqaTAaUraUsaUtaUuaUvaUwaUxaUyaUyaUzaUAaUBaUCaUDaUEaUFaUGaUHaUIaUJaUKaULaUMaTKaLkaNHaUNaUOaUOaUOaUOaUPaUQaURcgkaUTaUSaUSaUSaUUaUSaxQaUVapMaUWapMaUXaUYaUZaBkaVaapMapMapMaVbaVcaVdaVdaVeaVfaVgaTgaVhaPRaVgaViaVjaVkaVlaVlaVlaVmaVnaVoaVpaTnaUjaUjaVqaVraVsaVtaVuaTnaVvaVwaVxaUnaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaNabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaaa +aaaaaeaKlaVzaLPaLPaLPaLPaLOaLKaNwaNwaNwaNwaLKaLKaLPaKWaKWaKWaKWaKWaLPaLKaLKaNwaNwaLKaLKaLPaKXaKlaKlaadaadaadaadaadaadaadaaoaaobNoaagaDvaqDaqDawwawxawxawxawwawxawxawxawwawxawxawxawwawxawxawxawxaYLawxawxawxawxawxawxayfaqDaqDaqDaqDaqDaqDaqDaTyaagaagaagaagaagaagaagaagaagaagaagaagaKZaLQaQfaagaKraagaagaagaagabpaagaagaagaIKaVAaVBaTAaVCaVDaVEaVFaVGaVHaVIaRpaRpaVJaVKaVLaVMaVNaVOaSraVPaVQaVRaVSaVTaVSaVUaTKaLkaNHaVVaVWaVXaVXaVYaVZaWaaWbaWcaWdaWeaWeaWfaWgaFuaWiaWjapMapMapMaBeaBeapMapMapMapMaWkaCdaCdaCdaCdaWlaCdaCdaWmaWnaqvaWoaWpaWqapMapMapMaWrarqaWsarqaWtaWuaWvaWwaWxaWyaWzaWAaWBaWCaTnaWDaWEaWFaWGaagaagaagaagaagaagaagabfaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaazaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaa +aaaaadaKlaKlaVzaLPaLPaLKaLPaNwaNwaNwaNwaNwaNwaLKaLKaLPaMFaMFaWHaLMaLMaLKaNwaNwaNwaMCaLKaLKaMHaKlaKlaadaaeaadaadaaeaadaadaaoaaobNoaagaDvaqDarDawuarDaqDarDawuarDaqDarDawuarDaqDarDawuarDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDawuaqDaqDaqDaqDaqDaqDaqDaTyaagaagaagaagaagaagaagabzaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaagaagaagaWIaWIaWIaTAaWJaWKaWLaWMaWNaWNaWNaWOaWOaWPaWNaWNaWNaWQaWRaWSaWTaVQaWUaWVaWWaWXaWYaTKaTsaWZaPwaXaaPwaPwaXbaPwaXcaXdaXeaXfaXgaXdaXhaXgaRGapMaXiaXjaXjaXjaXjaXjaXkaXlaXmaXlaXnaXlaXlaXlaXoaXlaXpaXqaXraXsaXtaXraEJaXraXvaXraXwaXxaxQaxQaXyaXzaXAaXBaXCaXDaWAaXEaXFaVtaXGaTnaXHaXIaWFaWGaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaaeaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaKlaKlaKlaLLaLKaLKaNwaNwaNwaNwaNwaNwaNwaNwaLKaLMaMFaNwaNwaMDaNwaUoaNwaMCaNwaNwaNwaLKaMHaKlaKlaadaadaadaadaadaadaadaaoaaobNoaagaDvarDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqDaqDaqDarDaqDarDaqDaqDaqDawuaqDarDarDaqDaqDaqDaqDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaagaagaagaXJaXKaXLaXJaXMaXNaXOaXPaXQaXRaXSaXTaXTaXUaXVaXVaXWaXXaXYaXZaYaaUHaVSaVRaVTaVSaVRaTKaLkbxlaYbaYcaYdaPwaYeaYfaXcaXdaYgaYhbLyaYiaYjaXgaNHaYkaYlaCdaCdaWlaCdaCdaYmaYnfILaYoaYpaYqaYraYqaYsaYoaYoaYtaYuaYvaYuaYwaYuaYAaDdaYAaYAatIaFFatIaDHaFFaFFaTnaYCaYDaYEaYFaYEaYGaYHaTnaYIaYJaWFaWGaagaagaagabzaagaaOaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaPeaKlaKlaLLaLKaNwaNwaNwaNwaNwaNwaNwaNwaNwaUoaMDaNwaNwaNwaNwaNwaYKaNwaMEaNwaNwaMCaLKaMHaKlaKlaadaadaadaadaadaadaadaaoaaobNoaagaDvaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqDaqDaqDaZJaZJaZJaZJaZJarDawuarDaZJaZJaZJaZJaZJaqDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaagaagaagaYMaYNaYOaYMaYPaYQaXTaYRaXTaYSaXTaXTaXTaXTaYTaYTaXWaYUaXYaSraYVaUHaUHaYWaYXaYWaUHaTKaLkaNHaYbaYYcgfaYbaYZaZaaZbaZaaZaaZaaZaaZaaZcaNHaRIaZeaZfapPaZgaZhaZiapMaZjapMaYoaZkaZlaZmaZnaZmaZoaZpaYoaZqaZraZsaZtaZuaYuaFIaFJaGvaYAaGxaGyaGxaDIaHtaFFaTnaTnaTnaZBaZCaZDaZEaZFaTnaZGaUnaZHaUnaZIaZIaZIaZIaZIaZIaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaaNaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaar +aaaaadaadaKlaKlaLLaLOaNwaNwaNwaNwaNwaNwaNwaNwaNwaUoaNwaNwaMDaNwaMFaMFaLKaNwaNwaNwaMCaLKaLKaMHaKlaKlaadaadaaeaadaadaaeaadaaoaaobNoaagaDvaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqFaBGarEaqDaqDaqDarDaZKaZLaZLaZLaZLawxaZMawxaZNaZNaZNaZNaZOarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaZPaZQaZQaZQaZQaZQbbcaWIaZRaZSaZTaZUaZVaZWaZXaZYaZZbaababbacbadbaabadbaebafbagbahbaibajbakbalbambanbaobapaLkbaqbaqbaqbaqbaqbaqbarbasbatbaubaubavbawaZabaxaZabaybazbaAaZgbaBchWbaCbaDapMaYobaEbaFbaGbaHbaHcgqbaIaYobaJbaKbaLbaMbaNaYuaHqaHraHsaYAaHuaHYaIcaGwckmaYybaSbaTaTnaTnaTnaTnaXBaTnaTnbaUbaVbaWaUnbaXbaYbaZbbabbbaZIaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaaeaadaadaadaadaadaadaadaaQaadaadaaeaadaaeaadaadaadaadaadaaeaadaar +aaaaadaadaKlaKlaLLaLKaLKaNwaNwaNwaNwaNwaNwaNwaNwaLKaMFaLMaLMaLNaMFaLPaLKaLKaNwaNwaLKaLKaLPaRiaKlaKlaadaadaaeaadaadaaeaadaaoaaobNoaagaDvarDaqFaBGarEarDaqFaBGarEarDaqFaBGarEarDaqFaBGarEarDaqDaqDarDbbdbbdbbdbbdbbdaqDawuaqDbbdbbdbbdbbdbbdarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagbbgbbebbfbbfbbfbbebhmaWIaWIaWIaWIbbhbbibbjbbkaWIbblbbmbbnbbobbpbbqbbnbbrbbsbbtaSraSrbbubbvbbwbbxaSrbbybbzbbAbbBbbCbbDbbEbbFbbFbarbbGaZabbHaZabbIbbJaZabaxbbKaFPaWhbbNydjbbObbObbPbbQbbPaYobbRbbSbaHbbTbaHaZobbUaYoaJgbbWbbXbbYbbZaYuaJVaLnaYxaYAaHuaYBaIaaSMbaOaFFbcfbcgbchbcibcjbckbclbcmbcnbcobcpbcqbcrbcsbctbcubcvbcwaZIaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaPeaKlaVzaLPaLKaLKaNwaNwaNwaNwaNwaNwaLKaLKaLPaRhaRhaRhaRhaRhaLPaLKaLKaLKaLKaLPaRiaKlaKlaadaadaadaadaadaadaadaaeaaoaaobNoaagaDvaqDaqFaGjarEaqDaqFaGjarEaqDaqFaGjarEaqDaqFaGjarEaqDaqDaqDaqDarDaqDarDarDarDaqDawuaqDarDaqDarDaqDarDaqDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaKZaKraagbbgbbebcxbcxbcxbbebcybbhbbhbbhbczbcAbcBbcCbcDaWIbcEbcFbcEaWIbcGbcHbcGaWIbcIbcJbcKbcLbcJbcJbcJbcMbcNbcObcPbcPbcQbcRbcSbcTbcUbcVbarbcWaZabcXaZabcYbarbarbarbcZbdabdbbdcbbObddfhnbdebdfbdeaYobdgbbSbbSaZmbbSbdhbdiaYoaYtaYubdjaYuaYwaYuaYAaZvaYAaYAatIaFFatIbaPaFFaFFbdmbdnbdobdpbdqbdrbdsbdtbdubdvbdwbdxbdybdzbdAbdBbdCbdDaZIaagaagaagaagaagaagabzaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaazaadaar +aaaaadaaeaadaKlaKlaVzaLPaLOaLOaNwaNwaNwaNwaLKaLOaLPaRiaKlaKlaKlaKlaKlaVzaRhaRhaRhaRhaRiaKlaKlaadaadaaeaadaadaadaaeaadaadaaoaaobNoaagaDvaqDarDaqDaqDaqDarDarDarDaqDaqDaqDaqDaqDaqDaqDarDaqDarDaqDaqDaZJaZJaZJaZJaZJarDawuarDaZJaZJaZJaZJaZJarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagbbgbbfbcxbdEbcxbdFbdGbdHbdIbdJbcCbcCbcBbcCbdKaWIbdLbdMbdNaWIbdLbdMbdNaWIbdObdPbcJbdQbdRbdSbcJbdTbdUbdVbdWbdXbcQbcRbdYbdZbeabeabarbarbarbarbarbarbarbebbecbedbeecgrbegbbObehbbObeibejbekaYoaYobelaYqaYraYqbelaYoaYobembenbeobepbeobeobeobeuberbepbeobeqaFGbeuchXbevbewbexcgsbewbeybezbeAbeBbeCbeCbeDbeEbcrbeFbeGbeHbeGbeIaZIaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaKlaKlaVzaLPaLKaLKbeJbeJaLKaLKaLPaRiaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaaeaadaadaadaadaadaadaadaadaaoaaobNoaagbeKbeKaDvbeKbeKaEtaDvarDarDarDarDaqDaqDaqDarDarDarDaEtarDaqDarDaZKaZLaZLaZLaZLawxaZMawxaZNaZNaZNaZNaZOarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagbbgbbebeLbbebbfbbebbhbbhbbhbbhbeMbcCbeNbeObePaWIbeQbeRbeSaWIbeTbeRbeUaWIbeVbeWbcJbeXbeYbeZbfabfbbfcbfdbfebffbcQbcQbfgbfhbcQbcQbfibfibfjbfkbflaSRbfnbfobfpbfqbfrbfsbftbbObfubbObfvbfwbfxbfAbfzbfAbfBbfAchYbfDbfDbfEbfDbfFbfGbfHbfDbbLbfDbesbfDbfHbfDaFEbfAbfKbfLbfMbfNbfObfPbfQbfRbfSbfTbfUbeDbeCbfVbfWbcrbfXbfYbfZbgabgbaZIaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaKlaKlaKlaVzaLPaLKaLPaLPaLKaLPaRiaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaKlaadaadaadaadaaeaadaadaaeaadaadaaeaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDarDbbdbbdbbdbbdbbdaqDawuarDbbdbbdbbdbbdbbdaqDaTyaagaagabpaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagbbgbbebgcbgcbgcbbebbhbbhbbhbbhbgdbcCbgebgfbbhaWIaWIaWIaWIaWIaWIaWIaWIaWIbggbghbcJbgibgjbgkbcJbglbgmbgnbfebgocjbbgqbgrbgsbgtbgubgvauQbgxbgybgzbgzbgAbgBbgCbgDbgEbgFbgGbbKbgHbbObgIbgJbgKbbMbgMbgNbgNbgNbgObgNbgPbgQbgNbeobgRciabgSbgTbgTbgTbgTbgTaYzaYzbeobeobgUbgVbgWbgWbgWbgXbgYbgZbhabhbbhcbhdbhebhfbcrbhgbgabhhbhiaZIaZIbhjbhkbhkbhkbhkbhkbhkbhkbhkbhkbhlaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaaQaadaadaaeaaa +aaaaaeaadaadaadaadaKlaKlaKlaVzaRhbiqbiqaRhaRiaKlaKlaKlaKlaKlaadaadaadaadaaeaadaadaadaadaaeaadaadaaeaadaadaadaadaaeaadaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDarDaqDarDaqDarDaqDawuaqDarDaqDarDarDarDarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagbbgbbfbhnbgcbgcbdFbdGbhobhpbdJbcCbcCbhqbePbbhbhrbhsbhtbhubhvbhwbhxbhxbhxbhybhybhybhybhybhybhybhybhzbhAbhBbhCcjcbhEbhFbhGbhHbhIazEbhKbhDbhLbhMbhMbhNbhObhPbhQbhRbhSbhTbKDaTvbLPcghbhVbhWbhXbhYbhYbhYbhXbhXbhXbhXbgTbhZbiabhZbgTbgTbgTbibbicbidbgTbieaYzbifbigbihbiibijbikbikbilbimbimbimbinbimbcrbcrbcrbcrbiobipaZIaZIaZIaZIbirbisbitbitbitbitbiubitbitbjWbivaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaaQaadaadaaeaadaaQaadaadaaeaadaaQaadaadaaeaaQaadaadaadaadaadaadaadaaa +aaaaadaadaaeaadaadaadaadaadaadaKlbiwbixaKlaKlaKlaKlaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaZJaZJaZJaZJaZJarDawuarDaZJaZJaZJaZJaZJarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagbbgbbebhnbgcbiybbebbhbbhbbhbbhbcybcybcybcybbhbizbiAbiBbiBbiCbiBbiDbhxbiEbhybiFbiGbiHbiIbiJbiKbiLbiMbiNbiObiPbiQbiQbiRbiSbiTbiQbiQbiUbiQbiVbiWbiXbiYbiZbjabjbbjcbjdbjebLQbLRbNfbjibjjbjkbhXbjlbjmbjnbjobgwbjqbjrbgTbjsbjtbjubjvbjwbjxbjybjzbjAbjBbjBbjBbjBaFvaFwaFxbimbjEbjFbjGbjpbjIbjJbjKbjLbjMbjNbjObjPbjQbjRbjSbjTbjUbjVbirbjXbjYbjYbjYbjYbjYbjYbjYbjZbivaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaaeaadaadaadaadaaeaadaadaadaKlaKlaKlaKlaKlaKlaadaadaadaadaaeaadaadaaeaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDarDaZKaZLaZLaZLaZLawxaZMawxaZNaZNaZNaZNaZOarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagbbgbbeblobloblobbebhmaagaagaagaagbkbbkbbkbbhxbkcbkdbiCbkebiBbkfbkgbhxbiEbhybkhbkibkibkjbkkbklbkmbknbkobkpbkqbkrbksbktbkubkvbkwbkxbkybkzbkAbkBbkCbkDbkEbkFbcZbkGbkHbbKbKDbKDvvtbekbhVbkJbhXbkKbkLbkMbkNbkObkPbkQbgTbkRbkSbkSbkTbkUbkVbkWbkWbkXbkYbkZblablbblcbgUbldbleblfblfblfblfblfblfblgbimblhblibljblkbllblmblkblkblkbjVbirbjXbjYbjYbjYbjYbjYbjYbjYbjZbivaagaagaaNabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaaeaadaadaar +aaaaadaadaadaaeaadaadaadaadaadaKlblnaKlaKlaaeaadaadaadaadaadaaQaadaadaadaadaaeaadaadaadaaeaaeaadaadaadaaeaadaadaaeaadaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDarDbbdbbdbbdbbdbbdaqDawuarDbbdbbdbbdbbdbbdaqDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagbbgbbebmFbmFbmFbbebhmaagaagaagaagbkbblpblqbhxbkcblrbkfblsbiBbiBbltbhxbhxbhyblubkiblvblwblxblybhyblzblAblBblCcgZblEblFblFblGblHblHblIblJblKblLblMblNblOblPblNblNblNblNblQblRblSbdeblTblUbhYblVblWblWblXblYblZbmabgTbmbbmbbmbbmcbmbbmdbmbbmbbmebmfbmgbmhaunbmjbgUbmkbimbmlbmmbmnbmobmpbmqbmrbmsbmtbmubmvbmwbmxbmyblkbmzbmAbmBbmCbmDbjYbjYbjYbjYbjYbjYbjYbjZbivaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaaa +aaaaadaaeaadaadaadaGiaadaaeaadbmEaKlaKlaadaadaaeaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDarDaqDarDaqDarDaqDawuaqDarDaqDarDarDarDarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaKZaLQaQfaagaKraagbmGbmHbmHbmHbmHbmHbqmaagaagablaagbkbbmIbmJbmKbmLbmMbmNbmObiBbiCbmPbhxbiEbhybmQbkibmRbmSbmTbmUbmVbmVbmVbmWbmXbmVbiQbmYbmZcgtbnbbncbndbnebnfbngbnhblNaSBbnjbnkbnlbnmbnnbnobnpbnqbekbhVbekbnrbnsbntbnubntbnvbkPbnwbnxbnybnzbnAbmcbmbbmbbnBbnCbnDbmgbmgbmhaEmbmjbgUbnFbikbnGblfcgubnIbnJbnHbnKbnLblkbnMbnNbnObllblkbnPbnQbnRbnSbnRbnSbjYbjYbjYbjYbjYbjYbjYbjZbivaagaagaagabdaagaqzaagaagaagaaoaaoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaa +aaaaadaadaaAaadaadaadaadaadaadbmEaKlblnaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaaeaadaGiaadaaeaadaadaaeaadaadaaeaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaTyaqDaZJaZJaZJaZJaZJarDawuarDaZJaZJaZJaZJaZJarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaagaagaagaagaagaagaagbkbbnTbnUbhxbnVbnWbnXbnYbkfbiBbnZbhxbiEbhyboabkibobbocbodboebmVbofbogbohboibojbiQbokaOnbombonboobopbiQboqboqboqblNaTPbosbotboubovbowboxboyblSbekbozboAbhYboBbkPboCbkPboDbkPboEbhZboFboGboHbmcboIboJbgTbgTbmibkYbmgblablbboKbgUboLbimboMboNboOboPboQboRboSbimboTblkboUboVboWblkboXboYboZbpablkbpbbjYbjYbjYbjYbjYbjYbjYbjZbivaagaagaagabdaagaqzaagaagaagaaoaaobpcbpcbpcbpcbpdaaQaadaadaaeaadaadaadaadaaeaadaadaadaadaadaaQaadaadaaeaadaaa +aaaaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaaQaadaadaadaadaadaaeaaQaadaadaadaadaadaadaadaaeaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaTyarDaZKaZLaZLaZLaZLawxaZMawxaZNaZNaZNaZNaZOarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaagaagaagaagaagaagaagbkbbkbbkbbhxbpebpfbpgbphbiCbpibhxbhxbhxbhybpjbpkbplbpmbpnbpobmVbppbpqbprbpsbolbiQbiQbiQbpubpvbpwbpxbpybpzbpAbpBbpCbpDbpEbpFbpGbpHbpIbpIbpIbfybpKbpLcicbhXbpMbpNbpObpPbpQbkPbpRbpSbpTbpUbpVbpWbpXbjybpYbgTbpZbqabmgbmgbnEbeobgUbqcbimbimbqdbqeblfbqfbnHbqgbikbqhblkboUbqibqjblkboXblkbqkbmBbmBbqlbjYbjYbjYbjYbjYbjYbjYbjZbivabpaagaagabdaagaqzaagaagaagaaoaaobqnbqobqobrmbqpaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaaQaadaadaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaadaaeaadaadaadaaeaadaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaTyarDbbdbbdbbdbbdbbdaqDawuarDbbdbbdbbdbbdbbdaqDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbhxbhxbhxbhxbqqbqrbhxbhxbqsbqsbhybhybhybhybhybhybhybqtbqubqvbqwbqxbqybiQbqzbiQbqAbqAbqAbqAbiQbqBbqCbqDbqEbqFbqGbqHbqIbqJbqKbqKbqLbqMaFyaFzaFAbhXbhXbhXbhXbhYbqQbqRbhYbgTbqSbqTbqTbqUbqVbjybqWbqXbqYbmgbCxbrabjBbhJbrcbrdcidbimbrfbrgblfbrhbribrjbikbrkblkboUboVbqjblkboXbmzbrlbpbblkbpbbjYbjYbjYbjYbjYbjYbjYbjZbivaagaagaagabdaaNaqzaagaagaagaaoaaobrnbrnbrnbsxbqpaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaTyaqDarDaqDarDaqDarDaqDawuaqDarDaqDarDarDarDarDaTyaagaagaagaagaagaagaagaagaagaagaagaagaagaLQaQfaagaKraagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbrobrobrobrobrpbrqbrrbrsbrtbrubrvbrwbrxbrybrzbrAbrBbqtbrCbrDbqwbrEbrFbmVbrGbmVbqtbrHbrIbrJbrKbrLbrMbrNbqEbrObrPbqKbqKbrQbqKbrPbrRbqMbekbhVbrSbrTbrUbrVbrTbrWbrXbrYbrZbgTbsabsbbmbbscbsdbseaMibgTbsgbshbjBbjBbjBaYzbsibsjbskbslbslbsmbsnbslbsmbsmbslbsoblkbspbsqbqjblkbsrbssbstbsubsvbsubjYbjYbjYbjYbjYbjYbjYbjZbivaagaagaagabdaagaqzaagaagaagaaobswbtKbrnbrnbsxbqpaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaa +aaaaadaadaaeaaeaadaadaaeaadaadaaeaadaadaaeaadaadaaeaadaadaadaadaadaadaaeaadaadaadaaeaadaadaadaaeaadaadaadaaeaadaadaaeaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaTyaqDaZJaZJaZJaZJaZJarDawuarDaZJaZJaZJaZJaZJarDaTyaagaagaagaagaagaagaagaagaagaagaagbsyaagaLQaQfaagaKraagaagaagaagaagaagaagaagawmasxawnaagaagaagaagbszbsAbrsbsBbsCbsDbsDbsEbsFbsGbsHbsIbsJbsKbsLbsMbsNbqtbsObsPbsQbsRbsSbmVbrGbmVbqtbsTbqBbsUbsVbsWbsXbsYbqEbqEaZdbtabtbbtcbtdbnibqMbqMbtfbtgbthbtibtjbtkbtlbtmbtnbtobtpbgTbgTbhZbtqbtrbtsbhZbgTbgTbttbtubrTbrUbrVbrTbtvbsjbtwbsmbtxbtybtybtzbtAbtBbslbtCblkbljbtDbtEbtFblkbssbtGbmBbtHbtIbjYbjYbjYbjYbjYbjYbjYbjZbivaagaagaagabdaagaqzaagaagaagaaobtJbrnbrnbrnbsxbqpaaeaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaaQaadaadaaeaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDckYckYaZKaZLaZLaZLaZLawxbtNawxaZNaZNaZNaZNaZOarDaTyaagaagaagaagaaYbtMbtMbtMbtMbtMbtMbtMbtMbuVaQfaKZbtObtPbtPbtPbtPbtPbtPbtPbtPbtQbtRbtSbtPbtPbtPbtTbtUbtVbrsbtWbtXbtYbtZbrobuabubbucbudbuebufbugbuhbuibqtbqtbqtbqtbqtbqtbqtbqtbqtbqtbujbukbsUbulbujbujbumbqMbqMbqMbqMbqMbqMbqMbqMbqMbrbbpKbuobgKbupbuqburbupbusbutbuubuvbuwbuxbuybtmbuzbuAbuBbuCbuDbuEbuFbuGbuHbuIbuJbuKbuLbuMbuNbuObjHbuQbuQbuRbuSbsmblkblkbljboVbllbuTbuTbuUbtGbjVbirbjXbjYbjYbjYbjYbjYbjYbjYbjZbivaagaagaagabdaagaqzablaagaagaaobtJbuWbuWbuWbwxbqpaadaadaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaadaaeaadaaQaadaaeaadaadaaeaaeaaQaadaaeaadaadaadaaeaadaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaTyarDbbdbbdbbdbbdbbdaqDaqDaqDbbdbbdbbdbbdbbdaqDaTyaagaagaagbsyaHbbuXavuavuavuavuavuavuavubuVaQfaagaagaagaagaagaagaagaagaagaagawmasxawnaagaagaagaagbszbfmbrsbuZbvabvbbvcbrsbvdbubbubbvebuebvfbvgbsMbvhbvibvjbvkbvlbvmbvnbvobvpbvqbvrbvsbvtbsUbvubvvbvwboqbvxbvybvzbvAbvBbvCbvDbvEbvFbvGbgIbvHbvIbvJbvKbvLbrTbvMbvNbvObvPbvQbvRbvSbvTbvUbvVbvWbvXbvYbvZbwabupbwbbwcbwdbqbbwebwfbsmbwgbwhbwibtybwkbwlbwmbwnbwobwpbwqbwrbwsbwtbsvbtGbjVbirbjXbjYbjYbjYbjYbjYbjYbjYbjZbivaagaagaagabdaagaqzaagaagaagaaobtJbwubwubwubwubwvaadaadaadaaeaaQaadaadaaeaadaazaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaTyaqDaqDarDarDarDaqDaqDaqDaqDaqDaqDarDarDaqDaqDaTyaagaagaagaagaHbbwwaagaagbsyaagaagaagaagaLQaQfaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaagbxsbrobrobwybrobrobrobrobrobrobwzbwAbubbudbwBbwCbsMbuhbwDbwEbwFbwGbwHbwIbwJbwKbwLbwMbvrbsUbsUbsUbsUbsUbsUbsUbvxbwNbwObwPbwQbwRbwSbwTbwUbdebwVbwWciebwYbwZbxabxabxabxabxabxbbxcbxdbxebxebxfbxebxebxdbxgbxhbrTbrTbvKbvLbrTbxibxjbxkbsmbtybuPbtybtybxmbxnbslbxobxpbxqbxrbxrbxrbxrbxrbxrbxrbirbjXbxubjYbjYbjYbjYbjYbxubjZbivaagaagaaNabdaagaqzaagaagaagaaobtJaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaaeaaeaadaadaaeaadaadaaeaaoaaobNoaagaagaagaagaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaTyaTyaTyaTyaTyaqDaqDaqDaqDaqDaqDaqDaTyaTyaTybxtaTyaagaagaagaagaHbbwwaagaagaagaagaagaagaagaLQaajaLRaLRaLRaLRaLRaLRaLRaLRaLRaLRaLRaLRaLRaLRaLRbyJbxvbxwbxxbxybxzbxAbxBbxCbxDbxEbxFbxGbudbuebxHbxIbxJbxIbxKbxLbxMbxNbxObxPbxQbxRbvrbvrbxSbxTbxTbxTbxTbxUbxTchNbxVbxWbxXbxWbxYbxZbyabybbycbydbyebyfbwYbwZbygbyhbyibyjbxabykbylbxdbymbynbyocgvbuYbxdbyrbysbrTbrTbrTbrTbrTaFBaFCaFDbslbywbyxbyybyzbyAbyBbslbyCbyCbyDbyCbyCbyEbyFbyGbyCbyCbyHbyIbyKbyKbyKbyLbyKbyKbyMbyNbivaagaagaagabdaagaqzaagaagaagaaobtJaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaa +aaaaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbsyaagaagaagaagaagaagaagaHbbwwaagaagaagaagaagaagaKZbyPabkabkabkabkabkabkabkabkabkabkbFeabkabkabkabkabkaRgbyQbyRbySbyTbyUbyVbxBbyWbxDbyXbyYbyZbzabzbbzcbzdbzebzfbzgbzhbzibzjbzkbzlbzmbznbzobvrbzpbxTbzqbzrbzsbztbzubzvbzwbzxbzybzzbzAbzBbzCbzDbzEbzEbzFbzEbzGbwZbzHbzIbzJbzKbxabzLbzMbxdbzNbzObzPbzQbzRbxdbyrbzSbrTbzTbzUbzVbrTbxibzWbzXbslbslbslbslbslbslbslbslbyCbzYbzZbAabAbbAcbAdbAebAfbAgbAhbAibAibAibAibAibAibAibAibAibAjaagaagaagabdaagaqzaagaagaagaaobtJaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaaeaadaaQaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaaoaaobNoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaYbtMbtMbtMbtMbtMbtMbtMbtMbtMbtMbtMbtMbtMbtMbtMbtMbtMbuXbwwaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagbxDbxDbxDbxDbxDbAkbAlbxDbxDbxDbrobAmbrobrsbAnbAobrsbrsbrobzpbzpbApbAqbzpbArbAsbAtbvrbvrbAubAvbAwbAxbAybAzbAzbAAbABbwTbACbwTbwTbADbAEbzDbAFbAGbAHbAGbAIbwZbAJbAKbALbAMbANbAObAPbAQbARbASbATbAUbAVbxebyrbAWbAXbAYbAZbBabrTbBbbBcbBdbBebBfbBgcifbBebBhbBebBibBjbBkbBlbBmbBnbBnbBnbBnbBobBpbBqbBqbBqbBqbBqbBqbBqbBqbBqbBraagaaNaagaagabdaagaqzaagaagaagaaobtJaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaar +aaaaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaoaaobNoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaHbbuXavuavuavuavuavuavuavuavuavuavuavuavuavuavuavuavuavubBsabqabqabqaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagbBtbBtbBtbBtbBtbBtbBtbBtbBubBvbBwbBxbBybBzbBwbBAbBBbBCbBDbBEbBFbBGbBHbBIbBJbBKbBLbBMbBNbBObBPbBQbBRbAvbBSbBTbBUbAzbBVbAzbBWbxYbACbwTbwTbBXbBYbzEbAGbBZbCabBZbAGbCbbCcbCdcgBbCfbCgbChbCibAQbCjbCkbClbCmbCnbxebCobHnbrTbrTbrTbrTbrTbrTbCqbCrbCsbCtbCsbCubCsbCvbCsbCwbIQbCybCybCzbCAbCBbCCbCDbCEbyCaagaagaagaagaKZaagaagaagbCFbCGbCFaagabzaagbCHbCHbCIbCHbCHaagaaobtJaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaAaadaGiaadaadaar +aaaaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaaeaadaadaaeaadaadaadaaeaaQaadaaeaaeaadaadaaeaadaadaaeaadaaoaaobNoaagaagaagaagaagaagabfabfaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaHbbwwaagaagaagbsyaagaagaagaagaagaagaagaagbsyaagaagaagaagaagabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagaagaagaagabdabfaagbBtbCJbCKbCLbCMbCNbCObBtbCPbBvbBwbCQbCRbCSbCTbCUbCVbCWbCXbCYbCZbDabCZbDbbDcbDdbDbbDebCZbDfbDgbDhbDibDjbDkbDlbDmbDnbDobDpbDqbDrbDsbDtbDrbDubBYbzEbAGbDvbDwbDvbAGbDxbDybDzbDAbDBbDCbDDbDEbAQbzQbAUbDFbAUbDGbxebyrbDHbrTbDIbrTbDJbDKbrTbDLbDMbDNbDObDObDObDNbDPbeobDQbAgbDRbDSbDTbDUbDVbDUcgFbDWbyCbyCbyCbyCaagaagaagaagaagbDXbDYbDXaagaagaagbCHbDZbEabDZbCHbCHaaobtJaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaHbbwwaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqaagaagaagakaaagaagaagaagaagaagaagaKZabdaagaagbBtbEbbEbbEbbEcbCNbEdbBtbEebEfbBwbEgbBwbBwbBwbEhbCVbBMbEibEjbCVcgxbEkbElbEmbEnbEobBMaswaCMbZJbEqbErbxTbEsbEtbEubEvbEwbExbEybxYbACbwTbwTbBXbBYbzEbAGbEzbEAbEBbAGbECbEDbEEbCebEFbxabusbzMbxdbEGbEHbDFbEIbEJbxdbEKbELbrTbEMbENbEObEPbrTbEQbERbESbETbETbETbEUbERbeqbEVbyCbEWbDSbDTbEXbEXbEXbEYbEZbFabFbbFcbFdbHWaagaagaagaagaagbFfbBqbBqbBqclmbFhbFibFjbFibFkbFhbFlbFmaadaadaaQaadaadaaeaadaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaaQaadaar +aaaaadaadaadaadaadaadaadaaQaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaaoaaobNoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbsyaHbbwwaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagbBtbFnbFnbFnbFnbFnbFobBtbFpbFqbFrbFsbFtbGLbFvbFwbFxbFybFzbFAbFBbFCbFDbFEbFEbFFbFFbFGbFHbFHbFIbFJbFKbFLbFMbFMbFNbFObFPbFPbFQbFRbFSbFTbFTbFUbFVbzGbFWbFXbAHbFYbFZbxabGabGbbGcbGdbxabGebGfbxdbxdbGgbGhbGgbxdbxdbxgbGibrTbGjbrTbrTbrTbrTbGkbESbGlbGlbGlbGlbGlbESbeobGmbyCbGnbGobGpbGqbGrbGsbGtbGtbGubGvbGwbGxaajaMGaagaagbGybGybGzbGzbGybGybGybGybGybGAbGybGybCHaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaar +aaaaaeaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaaeaadaadaadaaeaadaadaaeaadaadaadaaQaadaadaaeaadaadaadaadaaoaaobNoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaHbbwwaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagabdaagaagbBtbGBbGBbGCbGDbFnbGEbGFbGGbGHbGIbGJbGKbGMbIjbGNbGObGPbGQbGRbGSbGTbGUbGVbGWbGXbGYbGPbGZbHabHbbHcbHdbHebHfbHgbHhbHibHjbHkbHlbHmbHmcgIbHmbHobHpbzGbzGbHqbAHbHrbHsbxabHtbHubHvbHwbxabHxbHybHzbHAbHBbHCbHDbHEbHFbHGbuBbzLbHHbHIbHJaYzbHKbHLbESbGlbGlbGlbGlbGlbESbeobHMbHNbHObHObHPbHObHQbHRbHRbHSbFabHTbHUbHVbJLbKVaagaagbGybHYbHZbHZbIabIbbIcbQBbIdbIebIfbIgbCHaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaadaadaadaaeaadaadaadaadaadaadaadaadaadaaQaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaaoaaobNoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaHbbwwaagaagaagaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagabdaagaagbBtbGBbGBbGCbGDbFnbIhbIibIkbIlbJtbImbInbIobIpchPbIqbIrbIqbIsbItbItbIubItbItbIsbIvbIwbIxbIAbIybIzbIAbIvbIBbIBbICbICbICbIDbIDbIDbIDbIEbIFbIGbIDbIDbzGbzGbIHbIIbzGbwZbwZbwZbwZbxabxabIJbIKbILbIMbINbIObIPcgJbIRbISbITbIUbIVbIWbIXaYzbIYbIZbESbGlbGlbGlbGlbGlbESbJabJbbJcbJdbJebJfbHObyCbyCbyCbyCbyCbyCbyCbyCaalaagaKZaagbGybJgbJhbJibJjbJkbJlbJmbJnbJobJpbJqbCHaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaGiaadaadaadaar +aaaaaeaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaaoaaobNoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaHbbwwbsyaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagabdaagaagbBtbFnbFnbFnbFnbFnbJsbBtbKAbJubInbInbInbJvbJwbJxbIqbJybJzbIBbJAchQbJCbJDbJEbIBbJFbJGbJHbIvbJIbJJbJKbIvaajaajaajaajaajbIDbJMbJNbJObJPbJPbJQbJRbIDbzGbJSbJTbJUbzGbJVbJWbJXbJYbJYbJYbJZbKabJZbJYbJYbKbbKcbrTbKdbKdbKdbKdbKdbKdbKdbKdbKdbWAbESbGlbGlbGlbGlbGlbESbeobKebHObKfbKgbKhbHObyCbKibKjbKjbKjbKjbKkaagaiSaagaagaagbGybKlbKmbKnbKmbKobKpbKqbKrbKsbKmbKtbCHaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobNoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaHbbwwaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagabpaagaagaagaagaagabdaagaagbBtbKubKvbKwbKxbKybKzbBtbLNbKBcgQcgRcgSbKFbKGbKHbIqbKIbKJbIBbKKbKLbKMbKNbKObIBbKPbKQbKRbIvbKSbKTbKUbIvaajaajaajaajaajbIDbKWbKXbKYbKZbLabLbbLcbIDbzGbLdbLebLfbzGbLgbLhbLibJYbLjbLkbLlbLmbLnbLobJYbLpbLqbrYbKdbLrbLsbLtbKdbLubLvbLwbKdbIZbESbGlbGlbGlbGlbGlbESbLxcihbHObHObHObHObHObKibKibKjbKjbKjbKjbKkaagaiSaagaagaagbGybOgbKmbKncgEbLAbKqbLBbLCbLDbKmbLEbCHaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaar +aaaaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaaoaaoclabNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwbNwclbbLFbLFbLFbLGbLGbLFbLFbLFaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagabdaagaagbBtbLHbLIbLJbLKbLLbLMbBtbLObKBcgWbLScgYbNgbLTbLUbLVbLWbLXbLYbLZbMabMbbMcbMdbMebMfbMgbMhbIvbMibMjbIvbIvbxubMYbNvbNvbNvbIDbMnbMobMpbLabMqbMrbMsbIDbzGbzGbIHbIIbzGbMtbMubMvbJYbMwbMxbMybMzbMAbMBbJYbMCbMDbMEbKdbLsbMFbMGbKdbMHbMIbMJbKdcllbERbESbESbESbESbESbERbMLbMMbKibMNbMObMPbMQbMRbKibKjbKjbKjbKjbKkaagaiSaagaagaagbGybMSbKmbKnbKmbMTbMUbMVbMUbMWbKmbMXbCHaadaadaadaaeaadaadaadaaeaadaadaadaadaadaazaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaaeaadaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaaQaadaadaaoaaoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagclcbLFbMZbNabNbbNbbNabMZbLFaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagabqabqabqaagabdaKZaagbBtbBtbBtbBtbBtbBtbBtbBtbNcbNdcgWcgXcgYbOtbNhbNibIqbSQbNkbIBbNlbNmbNnbNmckSbIBbNpbNqbNrbIvbNsbMlbMmbNtaajbxubxuaajbNvbIDbMnbNxbLabLabLabNybNzbIDbzGbNAbAHbAGbNBbAGbAGbNCbNDbNEbNFbNGbNHbNIbNJbJYbNKbLqbKdbKdbNLbNMbNNbKdbNObNPbNQbKdbNRbNSbNTbNUbNVbNWbNXbNYbNZbOabKibObbOcbOdbKibKibKibKjbKjbKjbKjbKkaagaiSaagaagaagbGybOebKmbKnbOfbRTbOhbOhbOhbOibOjbOkbCHaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaar +aaaaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaaQaaeaadaadaadaadaadaadaadaaoaaoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbLFbMZbNabNbbNbbNabMZbLFaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagabqabqabqaagabdaagaagaagaagaagbNebOmbOnbOobOpbOqbOrbNebNebOsbOCbOubPFbIqbOvbOwbIBbOxbOybOzbOAbOBbIBbPJbODbOEbIvbOFbOGbOHbUYaajbxubxuaajbxubIDbKWbKXbMpbLabOJbOKbOLbIDbzGbOMbAHbAGcgAbAGbAGbONbJYbOObOPbOQbORbOSbOTbJYbOUbOVbKdbOWbOXbOYbOZbPabPbbPcbPdbKdbRpbPfbPgbPgbPhbPgbPgbPgbPgbPibKibObbPjbPkbPlbPmbKibKjbKjbKjbKjbKkaagaiSaagaagbPnbPnbPnbPobKnbPpbPpbPpbPqbPrbPsbPpbPpbPtbPtbPtbPtbPtbPtbPtbPtbPtbPtbPtbPtbPtbPtbPtbPtbPtbPtbPtaaeaadaadaadaadaadaadaadaar +aaaaadaaeaadaadaaeaadaadaaeaadaadaaeaadaaeaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaaeaadaadaaeaadaaoaaoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbLFaaDbPubPvbPvbPwbPxbLFaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagabqabqaagabqabqabqaagabdaagaagaagaagaagbNebPybPzbPAbPAbPBbPCbPDbNebPEbPKbPGbIobPEbPEbPHbIBbFubFubPIbFubFubIBbIvbQKbIvbIvbIvbIvbIvbsfbPMaagaagaagaagbIDbJMbPPbPQbPRbPSbPTbIDbIDbzGbPUbPVbAGbAGbAGbAGbPWbJYbJYbJYbJYbJYbJYbJYbJYbLpbPXbPYbPZbQabQbbQcbQdbQcbQbbQebKdbQfbQgbPgbQhbQibQjbQkbPgbQlbQmbQnbQobQpbQqbKibKibKibKjbKjbKjbKjbKkaagaiSaagaagbQrbQsbQsbQtbQubPpbQvbQwbQxbQybQybQzbPpbQAbQCbQCbQCbTebQCbQCbQCbQCbQCbQCbQCbTebQCbQCbQCbQDbQtbPtaadaadaadaadaadaadaadaadaar +aaaaaeaaQaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaaoaaoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbLFbLFbQEbQFbQFbLFbLFbLFaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagabqabqaagaagabqabqaagabdaagaagaagaagaagbNebNebQGbPAbPAbQHbQIbQJbNebPEbQLbQMbQNbQObQPbRebQQbQRbQSbQTbQUbQVbQWbWqbQYbQZbPNbPObVibRbbsfbPMaagaagaagaagbIDbIDbIDbIDbIDbIDbRgbIDbIDbzGbAGbRhbRibRjbRkbAGbRlbzGbRmbRnbRobRqbRrbSEbRscggbRtbRubRvbRwbRxbRybRzbQbbQbbRAbRBbNUbQgbRCbRDbREbRFbRGbPgbRHbRIbKibKibRJbKibKibRKbKiaagaagaagaagaagaKZaiSaagaagbQrbRLbRLbQtbRMbRNbRObRPbRQbRRbRScgKbPpbRUbRVbRVbRVbRVbRWbRVbRXbRXbRXbRVbRWbRVbRVbRVbRVbRYbQtbPtaadaadaaQaadaadaadaadaaQaar +aaaaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaaeaadaaQaadaaeaadaadaadaaeaadaadaadaaeaadaadaaoaaoaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbRZbSabSbbScbRZaagaagaagaagaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagabqabqabqabqabqabqabqaagabdaagaagaagaagaagaagbNebSdbSebSfbSgbShbNebNebPEbRabSibSjbSkbSlbSmbSnbSobSpbSqbSpbSpbSpbQXbSrbSsbStbRcbRfbRbbsfbPMaagaagaagaagbSvbSwbKjbKjbKjbSxbSybSzbSAbzGbAGbAGbFXbAGbFYbAGbSBbzGbSCbSDbRsbSGbSFbUabSHbSIbSJbSKbQbbSLbQbbSMcgHbSNbQbbSObSPcglbQgbSRbSSbSTbRCbSUbPgbRHbSVbKibSWbSXbSYbKibSZbKiaagaagaagaagaagaagaiSaagaagbPnbTabTbbQtbTcbPpbTdbZMbTfbTgbThbTibPpbRUbRVbTjbTkbTlbRVbRVbTmbTnbTobRVbRVbTlbTpbTqbRVbRYbQtbPtaadaadaadaadaaeaadaadaadaar +aaaaadaadaaeaadaadaaeaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTrbTsbTtbTubTvbTsbTrbTrbTrbTrbTrbTrbTrbTwbTrbTrbTxabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagabqabqabqabqabqabqabqaKZabdaagaagaagaagaagaagbNebNebNebTybTybTybTybPEbPEbRabTzbTAbTBbTCbTDbTEbTEbTFbTGbTHbRabRabTJbTLbTMbTKbTNbTObRbbsfbPMaagaagaagaagbSvaagbKjbKjbKjbSxbSxbSxbTSbzGbTTbTUbTVbTWbTXbTYbTZbzGbSCcjUbRsbUcbUbbXNbUdbUebUfbUgbUhbUibUjbUkbUlbUmbUnbUobUpbNUbQgbPgbUqbUrbUsbUtbPgbUubUvbKibUwbUxbUybKibUzbKiaagaagaagaagaagbUAaiSaagaagbPnbUBbUCbPnbUDbUEbPpbPpbUGbUHbUIbPpbPpbRUbUJbUKbULbUMbUNbUObUPbUQbURbUObUSbUTbUUbUVbUWbRYbQtbPtaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaaeaadaadaadaadaaeaadaadaaeaadaadaaeaaoaaobWcbWcbWcbWcbWcbWcbWdbWcbWcbWcbWcbWcbWcbWcbWcbWcbWcbWcbWcbWcbWcbWcbUZbVabVbbVcbVdbWcbWcbWcbWcbWdbWcbWcbWcbWcbWdaaxabqabqabqabqabqabqabqabqabqabqabqaagaagaagabqabqabqabqabqabqabqaagaagaagabdaagaagaagaagaagbuXbuXbuXbuXbPMbPEbVebVebVfylYbRabTzbVhbVibVjbRabRabRabVkbVlbVmbVnbVnbVobVpbVqbVrbTPbOlaGuaJWckHbVvbVvbVvbWtbSvaagaagbKjbKjbKjbKjbSxbTSbzGbzGbzGbzGbzGbzGbzGbzGbzGbSCbXzbRsbSHbSHbSHbSHbVwbVxbKdbVybVzbVAbVBbVCbVDbqNbVFbKdciibQgbPgbPgcgzbPgbPgbPgbVGbVHbKibKibKibKibKibKibKiaagaagaagabzaagaagaiSaKZajobVIbVJbVKbVIbVLbQtbVMbUFbVObVObVOcjdcjdbRUbRVbVPbVQbVRbVSbVXbVUbVVbVWchJbVYbVZbWabWbbRVbRYbQtbPtaaeaadaadaadaadaGiaadaadaar +aaaaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXRbXRbXRbXRbXSbXSbXSbXSbXSaalaaxaagaagabqabqabqabqabqabqabqabqaagaagaagabqabqabqabqabqabqabqabqabqabqaagabdaagaagaagaagaagaagbuXaagbuXbPMbPEbVebVebSubVgbRabTzbWebWfbWgbRabWhbWibWjbWkbWlbWmbWnbWobWpbFgbWrbWsbTQaGuckNckHbWtbWubWtbXsbSvaagbKjbKjbKjbKjbKjbSxbSybSzbSzbSzbSzbSzbSzbSzbSzbWvbWwbWxbWxbWxbWxbWxbWybWzbPXbKdbKdbKdbKdbKdbKdbKdbKdbKdbKdbMkbQgbPgbPgbPhbWBbWCbPgbWDbWEbWFbWGbWHbWFavtaagaagaagaagaagaagaagaagaaiajBaajbWIbWJbWKbWLbWMbQtbQtbWNbQtbQtbQtbWObQtbRUbRVbWPbWQbWRbWSbUObWTchIbWVbWWbWXbWWbWYbWZbRVbRYbXabPtaadaadaadaadaadaadaadaadaar +aaaaaeaadaadaadaadaadaadaadaadaadaaeaadaaQaadaadaaeaadaadaaQaadaadaadaaeaadaadaaebXbaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXRbXRbXSbXSbXSbXSbXSbXSaalaaxabqabqabqabqabqabqabqabqaagaagaaOaagaagabqabqabqaagaagabqabqabqabqabqaagabdaagaagaagaagaagaagaagaagaagbPMbPEbXcbXdbSubPEbXebVhbXfbXgbXhbRabXibPEbXjbXkbXlbPEbXmbXnbXobXpbXqbXrbTRbPEbPMaagbXsbXsbXsbXsbSvaagbKjbKjbKjbKjbKjbSxbXtbXtbSxbSxbXzbXubXubXubXubXubXvbXubXubXubXubXubXubXwbXxchRbXAcjRcjRbXBbXCbXDbXEcjScjTbXGbXHbXIbXIbXJbXKbXKbXKbXLbXMbWUbXObXPbXQaajavvaaZaaZaaZaaZaaZaaZaaZbYSaagccRbXTbXUbXVbXTbXWbXXcetbXYbXXbXXbXXbXZbYabRUbRVbYbbYbbYcbYdbYebUObYfbYgbYgbYhbUObYbbYbbRVbRYbQtbPtaaQaadaadaaeaadaadaadaadaar +aaaaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaaQaadaadaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSaalaaxabqabqabqabqabqabqabqaagaagaagabpaagaagabqabqabqaagabqabqabqabqabqabqaagabdaagaagaagaagaagaagaagaagaagbPMbPEbXdbXdbSubPEbYibRabYjbYkbYkbRabYlbYmbYnbYobYpbYmbYqbYrbVpbVqbYsbYtbYubPEbPMaagbZVbZWbZVbZWbSvaagaagaagbKjbKjbKjbKjbKjbKjbKjbSxbSxbXuchVbYwbYxbYybYwbYwbYzbYAbYBbYCbXubYDbYEbYFbYGbYGbYGbYHbXAbYIbYIbYIbVHbVHbYJbYKbYLbPibYLbYMbYNbYObYPbWFbYQbYRbWFcebaagaagaKZaagaagaagaagaagaiSaagaagbPnbPnbPnbYTbYUbYVbYTbPnbPnbYWbYXbQtbYYbRUbRVclnclnbZabZbbZcbZdbZebZfbZfbZgbWWclnclnbRVbRYbQtbPtaadaadaadaadaadaadaadaadaar +aaaaaQaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSaalabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagabqabqaagaagabqabqaagaagaagaagabdaagaagaagaagaagaagaagaagaagbPMbPEbZhbZhbSubPEbZibRabWfbZjbZjbRabYlbZkbZlbZmbZnbZkbYqbYlbWpbZobWrbZpbZqbPEbPMaagaagaagaagaagbSvaagaagbKjbKjbKjbKjbKjbKjbKjbKjbKjbKjbXubZrbZsbZtbZubZvbZwbZxbZybZzbZAbZBbZCbZDbXybYIbZEbZEbYIbYIbYIbKjbKjbKjbZFbZFbZFbZGbZHbZGbZFbZFbVHbVHbVHbVHbVHbVHaagaagaagaagaagaagaagaagaagaiSaagaagbYTbJrbZIbZKbZLbYVcgLbZNbYTbYTbYTbPnbZObRUbRWbRWbRWbUJbZPbZQbUObZRbZSbZTbZUbUWbRWbRWbRWbRYbQtbPtaadaadaadaadaadaadaaeaadaar +aaaaadaadaadaaeaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSaalabqabqabqabqabqabqabqabqabqaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaKZaagaagaagaagaagaagaagaagbPMbPEbPEbPEbPEbPEbPEaXubRdbXfaZAbRabYlbZXbZYbZZcaabZXcabcaccadcaecafcagbPEbPEbPMaagaagaagaagaagbSvaagaagbKjbKjbKjbKjbKjbKjbKjbKjbKjbKjbXubZrbZrbZrcahbZrcaibZrcajcakbZrbXucalcambXybKjbKjbKjbKjbKjbKjbKjbKjbKjbZFcancaocapcaqcarcasbZFbKjbKjbKkaagaagaagaagaagaagaagaagaagaagcataagaiSaKZaagbYTcaubYVbYVcavbYVbYVcawcaxcaycazbPncgMbRUbRWbRVbRVbRVbWVbWWbWWcaBbUObWVbWVcaCbRVbRVbRWbRYbQtbPtaadaaeaadaadaadaadaadaazaar +aaaaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaaoaaobXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSaalabqabqabqabqabqabqabqabqabqabqaagaagaagaagaaOabqabqaagaagabqabqaagaagaagaagabdaagaagaagaagaagaagaagaagaagbPMbPMbPMbPMbPMbPMbPEbcbbPEcaGbcbbPEbPEbPEbPEbKCbPEbPEbPEbPEbPEcaGbPEbPEbPEbPMbPMaagaagaagaagaagbSvaagaagbKjbKjbKjbKjbKjbKjbKjbKjbKjbKjbXucaIbZsbZrcaJbZrcaKbZrcaLcakcaMbXucaNcaObXybXybKjbKjbKjbKjbKjbKjbKjbKjbZFcaPcaQcaRcaRcaRcaSbZFbKjbKjbKkaagaagaagaagaagaagaagaagaagaagaagaagaiSaagaagbYTcaTcaUcaVcaWcaVcaUcaXcaYcaZcazbPncbabRUbRWbRVcbbcaHcbccbecbfcbgcbhcbicbjcbkcblbRVbRWbRYbQtbPtaaeaadaadaadaadaadaadaadaar +aaaaadaadaadaadaadaaeaadaadaadaadaadaadaadaaQaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaaeaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRaalabqabqabqabqaagabqabqabqabqabqabqabqabqabqabqabqabqaagabqabqabqabqaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagaagaagbPMbPMbccbPMbVubccbPMbPMbPMbPMceNbPMbPMbPMbPMbPMbVubPMbPMbPMbPMaagaagaagaagaagaagbSvaagaagaagbKjbKjbKjbKjbKjbKjbKjbKjbKjbXubZrbZrbZrcahbZrcaibZrcbrcgycaMbXucaNcbscbtbXybKjbKjbKjbKjcbubKjbKjbKjbZFcbvcbwcbxcbycbxcbzbZFaagaagaagakaaagaagaagaagablaagaagaagaagaagaagaiSaagaagbYTcaucbAcbBcbCcbDcbBcbBcaYcbEcbFbPncbGbRUbRWcbHcbIcbJcaDcbLcdtcbNcbOcbPcbQcbRcbSbUWbRWbRYbQtbPtaadaadaadaadaadaadaaeaadaar +aaaaaeaadaadaadaaeaadaaeaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRbXRaalaaxaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqaagaagabqabqabqabqaagaagaKZabdaagaagaagaagaagaagaagaagaagaagaagaagaagbSvaagaagbXsbWubWtbXsaagaagcbVcbocbpcbqcbnaagaagaagaagaagaagaagaagaagaagaagaagaagaagbSvaagaagaagaagaagbKjbKjaagaagbKjbKjbKjbXubZrbZsbZrcaJbZrcaKbZrcaLcakcaMbXucbWcbXcbYbXybKjbKjbKjbKjbKjbKjbKjbKjbZFbZFcbZccaccbcccccdbZFaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaiSaagablbYTcaubYVcceccfccgcchcchcciccjcckbPncclbRUbRWccmccncbdccpbUOcducbNccrccscctccuccvbRVbRWbRYbXabPtaadaadaadaadaadaadaadaadaar +aaaaadaaQaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRbXRaalaaxaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagabdaagaagaagaagaagaagakaaagaagaagaagaagaagbSvbSvcbnbXsbXsbXsbXsaagaagbSvcbocbpcbqcbVaagaagaagaagaagaagaagaagaagaagaagaagaagaagcbnaagaagaagaagaagaagaagaagaagaagaagaagbXuchVbYwbYwccwbYwccxccycczccAccBbXuccCccDbXybXybKjbKjbKjbKjbKjbKjbKjbKjbZFbZFbZFbZFbZFbZFbZFbZFaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaiSaagaagbYTccEccFccFccGccHccIccJccKccLccMbPnccNbRUccOccPbUObUObUObWWcdvbWVbWVbUObUObUObUObRVbRWbRYbQtbPtaadaaeaadaadaadaadaadaadaar +aaaaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaaoaaobXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRbXRaalaaxaagaagaagaagaagaagaagabqabqabqabqabqabqabqabqabqabqabqabqabqaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagaagaagbSvaagbZVbZWbZVbZWaagaagbSvcbocbpcbqbSvaagaagaagaagaagaagaagaagaagaagaagaagaagaagcbnaagaagaagabfaagaagaagaagccSaagaagaagbXubXuccTccUbXuccTccUbXubXubXubXubXuccVccVbXyaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaKZaiSaagaagbYTbYTccWccWccWbYTccXccYccYbYTbYTbPnccNbRUccOccZcdabUOcdbcdccdwcdecaEcdgcdgbUOchfbRVbRWbRYbQtbPtaadaadaadaadaadaaeaadaadaar +aaaaadaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaaoaaobXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRbXRaalaaxaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagabpaagaagaagbSvcbnaagaagaagaagaagaagbSvcbocbpcbqbSvaagaagaagaagaagaagaagaagaagaagaagaagaagaagcbVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbXycdicdibXyaagaagaagabpaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbUAaagaagaagaagaagaagaagaiSaagaagaagaagaagaagaagbYTcdjcdkcdlbYTaagbPnccNbRUbRVbTlcdmcdncdocdpchlchschwchOchSchTchUbTlbRVbRYbQtbPtaadaadaadaadaadaadaadaaeaar +aaaaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRbXRaalaaxaagaagabzaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabdaKZaagaagaagaagaagaagaagaagaagaagaagaagaagcbVaagaagaagaagaagaagaagbSvcbocbpcbqbSvaagaagaagaagaagaagaagaagaagaagaagaagaagaagbSvaagaagaagaagaagaagaagaagaagaagaagaagaagccSaagaagaagaagaagaagaagaagaagbXycdicdibXyaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaiSaagaagaagaagaagaagaagbYTbYTbYTbYTbYTaagbPnccNbRUbRVcdxcdycdzcdAcdBcdCcdDcdEcdFcdGbWVcdHcdIbRVbRYbQtbPtaadaaeaadaadaadaadaadaadaar +aaaaadaadaadaaeaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaaoaaobXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRbXRaalaaxaagaagaagaagaagaagaagaagaagaagaagaagaagaagablaagaagaagaagaagaagaagaagaagabdaagaagaagaagaagaagaagaagaagaagaagaagaagaagbSvbSvaagaagaagaagaagaagbSvcbocbpcbqbSvaagaagaagaagaagaagaagaagaagaagaagaagaagaagbSvaagaagaagaagaagaagaagaagablaagaagaagaagaagaagaagaagaagaagaagaagaagaagbXybXybXybXyaagaagaagaagaagaagaagccSaagaagaagaagaagaagaagaagaagcdJaagaagaagaagaagaagaagaagaagaagaagakaaagaagaiSaagaagaagaagaagaagaagaagaagaagaagaagaagbPnccNbRUbRVcdKcdLcdMcdNcdOcdPcdPcdQcdRcdScdTcdUcdVbRVbRYbQtbPtaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRaalaaxaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakaaagaagaagaagaagabdaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaKZbSvbSvbSvbSvbSvbSvcbnbSvcbocbpcbqcbVbSvbSvbSvbSvcbnbSvbSvbSvbSvbSvbSvcbVbSvbSvbSvaagaagaagaagaKZaagaagaagaagaagaagaagaagaKZaagaagaagaagaagaaOaagaagaagaKZaagaagaagaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaagaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaagaagaagaiSaKZaagaagaagabpaagaagaagaagaagaagaagaagbPnccNbRUbRVbYbbYbbRVcdWcdWcdXbRVbRVcdYcdXbRVbYbbYbbRVbRYbQtbPtaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSaalaaxaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabeaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZcdZcbpceaaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZceAaagaagaagaagaagaagcataagaagaagaagaagaagbPnccNbRUbRVclnclnbRVceccedceecefbRWcegbRWbRVclnclnbRVbRYbQtbPtaadaadaadaaAaadaGiaadaadaar +aaaaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSaalaaxaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaagaagaKZaagaagaagcbocbpcbqaagaKZaagaagaagaagaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaagaagaagaagaKZaagaagaagaagaagaagaagaagaagaagaagaagaagcdJaagaagaagaagaKZaiSaagaagaagaagaagaagaagaagaqHaagaagaagaagbPncaAcehceiceicejceiceiceiceicekceicelceiceicemceiceicenbQtbPtaadaadaadaadaadaadaadaadaar +aaaaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaaoaaobXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSaalaaxaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagcbocbpcbqaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaiSaagaagaagaagaagabzaagaqHaqHaqHaqHaagaagbPnceocepcgNcleceqcercescescescescgOceucevcewcexbQtbQtbQtbQtbPtaadaadaadaadaadaadaaQaadaar +aaaaadaaeaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSaalaaxaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagcbocbpcbqaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagceycfzaajcjXceyaagaagaagaagaagaagaqHaqHaqHaqHaagbPnbPnbPnbPnclfbPnceBceCceCceCceCbPnbPtbPtbPtbPtbPtbPtbPtbPtbPtaadaadaadaaeaadaadaadaadaar +aaaaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXSbXSbXSbXSbXRbXRbXRbXRbXRbXSbXSbXSbXSbXSbXSbXRbXRbXSbXSbXSbXSbXSbXSaalaaxaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabzaagaagaagaagaagaagaagaagaagaagaagcbocbpcbqaagaagaagaagaagaagabzaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabzaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabfaagaagaagaagaagaagaagaagaagaagbNubNubOIbNubNuaagaagaagaagaagaagaagaagaqHaagaagaagaagaagaaoclgbPtceEceFceFceFceFceGbPtaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaaeaadaadaaeaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaoaaobXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXRbXSbXSbXSbXSbXRbXRbXRbXRbXSbXSbXSbXSbXSaalaaxaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagcbocbpcbqaagaagaagaagaagaagaagaagaagaagaagaagaagaagabpaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagccSaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagbNubNubNubUXceHceHbNubNubNubNuaagaagaagaagaagaagaagaagaagaagaagaaoclgbPtceJceKceLceLceMceGbPtaadaaAaadaadaadaadaadaaeaadaadaadaadaGiaadaadaaeaar +aaaaadaadaadaadaaeaadaaeaadaaeaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoceNaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaobNuceIceOceHceHceHcePceQceRceXcljcljcljcljcljcljcljcljcljcljcljcljclkbPtceSceTceUceVceWceGbPtaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoceNaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaobNuceIceOcfcceHcfcckZcldclhbNuaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaoaaobPtbPtbPtbPtbPtbPtbPtbPtaadaadaadaadaaQaadaadaaQaadaadaaeaadaadaadaadaadaar +aaaaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaaeaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafceZaafbNuceIceOceHceHceHcePcldclhbNuaafaafaafaafaafaafaafaafaafaafaafaadaadaadaadaadaadaadaadaadaadaadaadaadaazaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafcfaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcfbaafaafaafceZaafaafaafceYaafaafbNubNubNuceHceHclibNubNubNubNuaafaafaafaafaafaafceYaafaafaafceYaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaa +aaaaadaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcfdaafaafaafcfbaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafaafaafaafcfbaafaafaafceZaafaafaafceYaafaafaafceYaafceYaafceYaafaafaafaafaafaafaafaafceYaafaafaafcfbaafaafaafaafaafcfbaafaafceYaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafbNubNubOIbNubNuaafaafaafaafaafaafaafaafaafaafaafaafaafaafaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaafaafaafaafaaaaaa +aaaaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafcfdaafaafaafcfbaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafceYaafaafaafaafaafcfbaafaafaafaafaafcfbaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafceYaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafaafaafcfebrnbrnbrncfeaafaafaafaafceZaafaafcfdaafaafceYcfbaafaafaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaafaafcffcffcffcffcff +aaaaadaadaadaadaadaaeaadaadaaeaadaadaadaaeaadaadaaeaadaaeaadaadaadaadaadaaeaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafceZaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafceYaafaafceYaafaafaafaafaafaafaafaafaafaafaafceYaafaafceYaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafceYaafceZaafaafaafaafaafaafaafcfgaafaafcfhaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafceYaafaafaafaafceYaafceZaafceYaafaafaafceYaafaafaafaafcffcficficficfi +aaaaafaafaafcfhaafaafaadaadaaeaadaadaaeaadaadaadaadaadaadcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaaeaadaadaadaGiaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcfdaafaafaafcfbaafaafaafaafaafaafaafaafceZaafaafaafaafcfdaafaafaafcfbaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafcfbaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafcfhaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafceYaafaafaafaafceYaafaafaafaafaafaafaafaafaafcfdaafaafaafaafaafbxscffcficficficfi +aaaaafaafaafcfhaafaafaadaadaadaadcfkcfkcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaaeaadaafcflcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmbmEcfmcfmcfmbmEcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmcfmabaaafaafceYaafaafcfzaajcgocficficficfi +aaaaafaafaafcfhaafaafaadaadaadaadcfkcfkcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaaeaadaadaadaaeaadaaeaadaaeaadaaeaadaadaadaadaadaadaadaadaafaafcfhaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcfdaafaafaafcfbaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafcfbaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafceYaafcfhaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafabdaafaafaafaafaafaaiaajcffcficficficfi +aaaaafaafaafcfhaafaafaafaafaafaafcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfncfocfocfocfocfocfocfocfocfocfpcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaafaafaafcfhaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcfdaafaafaafcfbaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafceYaafaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafceYaafaafaafaafaafaafceZaafaafaafaafaafceYaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafcfdaafaafaafaafaafaafaafaafaafaafaafaafcfhaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafceYaafaafaafaafceYaafaafaafaafceYaafaafaafceYaafaafaafabecfmcfmcfmcfmcfmajpaajcffcficficficfi +aaaaafcfjcfjcfqcfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfrcfjcfjcfjcfjcfjcfjcfjcfjcfjcfqcfocfocfocfocfocfocfpcfjcfjcfjcfjaadaadaadaaeaadaadaadaaQaadaadaaeaadaadaadaadaadaadaafaafaafaafaafcfhaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafaafaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafcfdaafceYaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcfdaafaafaafcfbaafaafaafaafaafaafaafaafaafaafcfdaafaafaafcfbaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafcfhaafceZaafaafaafaafaafaafaafaafaafceZaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaiaajcffcficficficfi +aaaaafcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfscftcftcftcftcfucfjcfjcfjcfjcfjcfjcfjcfjcfjcfvcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaafaafaafaafaafcfhaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaafcfdaafaafaafaafaafaafcfbaafaafaafaafaafaafaafcfdaafaafaafcfbaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafceYaafaafaafaafaafceYaafaafaafaafaafceYaafaafcfbaafcfdceYaafcfhaafaafaafaafcfdaafaafaafcfbaafaafaafaafaafcfdaafaafaafaafceYaafaafaafaafceYaafaafaafcfbaafaafaafceZaafcfbaafaafaafceYaafabjaajcgocficficficfi +aaaaafcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfycfjcfjcfjcfjcfjcfjcfjcfjcfqcfocfocfocfpcfjcfjaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaafaafaafaafaafcfhaafaafaafaafaadaafaafaafaafaafaafaafcfaaafaafaafaafaafaafaafaafceYaafaafaafaafaafaafaafaafaafaafaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcfbaafcfdaafaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaGiaadaadaadaaeaadaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcfhaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcjYcffcficficficfi +aaaaafcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfscftcftcfycfjcfjcfjcfjcfjcfAcfxcfxcfxcfxcfxcfxcfxcftcfycfjcfBcfjcfjcfjcfBcfjcfjcfjcfjcfvcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaaeaadaadaadaafaafaafaafaafcfhaafaafaafaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaGiaadaadaadaaeaadaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaafaafcffcficficficfi +aaaaafcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfAcfxcfxcfxcfxcftcftcftcftcftcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcftcfCcfjcfjcfscfCcfjcfjcfjcfjcfvcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaafaafaafaafaafcfhaafaafaafaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaadaaeaadaadaaAaadaGiaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaeaadaaeaadaadaadaadaaeaafaafcffcffcffcffcff +aaaaafcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcftcftcfxcfxcfycfjcfjcfjcfvcfjcfjcfjcfjaadaGiaadaadcfjcfjaadaadaadaadcfjcfjcfjcfjcfjcfjcfjcfjcfvcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaGiaadaadaadaaeaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaGiaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadcfDaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaafaafaafaafaaaaaa +aaaaafcfjcfjcfjcfjcfjcfjcfjcfjcfjcfAcftcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfvcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfvcfjcfjcfjaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaaQaadaadaaeaadaaQaadaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaar +aaaaafcfjcfjcfjcfjcfjcfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfqcfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfocfrcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfEaadaadaadaadaadaadaaeaadaadaadaadcfEaadaadaadaaQaadaazaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaafcfjcfjcfjcfjcfscfucfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfFcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaaeaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaazaadaaeaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaGiaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaafcfjcfjcfjcfjcfwcfxcftcftcftcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaaeaadaadaaAaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadcfGaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadcfHaadaadaaeaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaaa +aaaaadcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaGiaadaadaadaaeaadaadaadaadaadaadaadaadaadcfGaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaQaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaadcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcftcftcftcftcftcfycfjcfjcfBcfjcfjcftcfycfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaGiaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaaaafcfjcfjcfjcfJcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcftcftcfxcftcftcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfKaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaecfKaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaaa +aaaaafcfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcftcfLcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaaAaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaQaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaaa +aaacfjcfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfjcfjcfjcfjcfAcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaaeaadaadaadaadaadaadaaQaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaaAaadaGiaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfycfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaaQaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaGiaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadcfGaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaaQaadaadaadaaQaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfycfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaGiaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcftcftcftcfycfjcfjcfjcfjcfjcfjcfjcfjaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaadaadaadaadaaeaadaadaadcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaGiaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaQaadaadaadaar +aaacfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfMcfjcfjaadaadaadcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaazaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaGiaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaGiaadaadaaeaadaadaadaaQaadaadaadaaQaadaadaadaadaadaadaadaadaaa +aaacfAcftcftcftcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaaAaadaadaadaadaadaadaadaadaadaadaadaadaadaGiaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaa +aaacfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaaQaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcftcfycfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaaeaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaadaadaaeaadaadaadaaeaaAaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaGiaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaQaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaAaadaGiaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaaa +aaacfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaQaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaazaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfNcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaaQaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaaeaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aaacfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfNcfNcfNcfNcfNcfFcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfFcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaaQaadaadaaeaadaaAaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaaeaadaadaadaaQaadaadaaeaadaadaadaadaazaadaadaadaadaaa +aaacfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaadaaraaraadaadaaraadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaacfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfucfjcfjcfjcfOcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaadaadaadaadaadaaraaraaraadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaaAaadaaeaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaacfwcfxcfNcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfucfjcfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfycfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaaeaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaaraaraaraadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaaeaadaadaadaaeaadaadaadaadaar +aaacfJcfFcfjcfJcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcftcfucfjcfjcfAcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjaadaadaadcfjaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaraaraaraadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaaQaadaadaaeaadaazaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaaAaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaacfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcftcftcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjaadaaeaadcfjaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaraaraaraaraaraaraaraadaadaadcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaafaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaaAaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaacfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaaraaraaraaraaraaraaraaraadaadcfIcfIcfIcfIcfIaadcfIcfIcfIcfIcfIaadcfIcfIcfIcfIcfIaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaadaafaafaadaadaadaafaafaafaadaadaadaadaadaadaafaafaafaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaGiaadaadaadaadaadaar +aaacfjcfjcfjcfAcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfFcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaafaaraaraaraaraaraaraaraaraadaadcfIcfIcfIcfIcfIaadcfIcfIcfIcfIcfIaadcfIcfIcfIcfIcfIaadaadaadaadaaraaraaraaraaraaraaraaraaraadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaar +aaacfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaafaaraaraaraaraaraaraaraaraaraadcfIcfIcfIcfIcfIaadaadaadaadaadaadaadcfIcfIcfIcfIcfIaadaaraaraaraaraaraaraaraaraaraaraaraaraadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaadaadaadaadaadaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaaeaadaazaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaacfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaafaafaaraaraaraaraaraaraaraaraaraadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaraaraaraaraaraaraaraaraaraaraaraaraadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaafaafaafaafbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEaafaafaafaafaadaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaafaafaafaafaafaafaafaafaafaafaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaar +aaacfjcfjcfjcfJcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaafaafaafaafaafaaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraadaadaadaafaafaafaafbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEaafaafaafaadaadaadaadaadaadaadaadaadaadaadaadaafaafaafaafaafaafaafaafaafaafaafaafaafaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaaQaadaadaadaaeaadaaeaadaadaadaadaadaadaadaadaadaar +aaacfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaafaafaafaafaafaaraaraaraaraarcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfRcfRcfRcfScfScfScfScfSbmEbmEbmEbmEbmEbmEcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfSaafaafaafaafaadaadaadaadaadaadaadaadaafaafaafaafaafcfScfScfScfScfScfScfSaafaafaafaafaafaafaafaafaafaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaar +aaacfjcfjcfjcfjcfwcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaGiaadaadaadaafaafaafaafaaraaraaraaraaraaraaraarcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfRcfScfScfScfScfScfSbmEbmEbmEbmEbmEbmEcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfRcfRcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfSaafaafaafaafaafaafaafaafaadaadaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaar +aaacfjcfjcfjcfjcfJcfNcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfNcfFcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaafaafaafaafbmEaaraaraaraarcfTaarbmEbmEcfScfPcfPaadcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfPcfPcfPcfPcfScfScfScfScfScfScfScfScfSaafaafaafaaraarbmEbmEbmEaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaacfjcfjcfjcfjcfjcfjcfJcfNcfNcfxcfxcfxcfNcfNcfNcfNcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfCcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaaeaadaadaadaadaadaadaadaadaafaafaafbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEcfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfScfPcfPcfPcfScfScfScfSbmEcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfSaafaafaaraaraaraaraaraadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadbXbaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaacfjcfjcfjcfjcfjcfjcfjcfjcfjcfJcfNcfFcfjcfjcfjcfjcfJcfNcfNcfNcfNcfNcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfxcfNcfNcfNcfNcfxcfxcfxcfNcfNcfxcfNcfFcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaafaafaafbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEcfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfScfScfSbmEcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaraadaadaadaadaadaar +aaacfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfJcfNcfxcfxcfxcfxcfxcfxcfNcfNcfxcfxcfxcfNcfNcfNcfNcfxcfxcfxcfNcfNcfFcfjcfjcfjcfjcfJcfNcfFcfjcfjcfUcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaaeaadaadaadaadaadaadaadaafaafaafbmEbmEbmEbmEbmEbmEbmEbmEbmEbmEcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaadaadaadaaraadaGiaadaadaadaadaadaadaadaadaadaaraadaadaadaadaadaar +aaaaadaadaadcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfJcfNcfNcfNcfNcfFcfjcfjcfJcfNcfFcfjcfjcfjcfjcfJcfxcfFcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaAaadaadaafaafaafbmEaaraaraaraaraaraaraaraarcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraaraaraadaadaadaadaadaadaadaadaadaaraaraaraadaaraadaadaadaar +aaaaadaadaadcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadbmEaafaafaafaaraaraaraaraaraaraaraarcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraaraaraaraadaadaadaadaadaadaadaaraaraaraaraaraaraaraadaadaar +aaaaaeaadaadcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaadaaeaadaadaaeaaeaadaadaadaadaadaadaadaadaadaGiaadaafaafaafaafaaraaraaraaraaraarcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraaraaraaraadaadaadaadaadaadaadaaraaraaraaraaraaraadaadaadaar +aaaaadaaeaadaadaadaadcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaafaafaaeaafaafaaraaraaraaraarcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraaraaraaraadaadaadaadaadaadaadbmEaaraadaadaaraadaadaadaadaar +aaaaadaadaadaadaadaadaadaaeaaQaadaadaaeaadaadaadaadaaeaadaadaadaadaadaadaadcfjcfjcfjcfVcfjcfjcfjcfjcfjcfjcfjcfjcfkcfjcfjcfjcfjcfkcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjcfjaadaadaadaadaaeaadaadaadaadaadaadaaeaadaadaaeaadaaeaadaadaadaadaadaadaadaafaadaadaadaadaadaadaaraaraaraaraarcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaaeaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaaaaaaaaaaaaadaadaaeaaeaadaadaadaadaadaadaadaadaadaadaGiaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaadaadaadaaeaaQaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadaadaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaeaadaadaaeaadaadaadaadaadaadaadcfWaadaadcfWaadaadaadcfWaadaadaadaadaadcfWaadaadaadcfWaadaadcfWaadaGiaadaadaadaadaadaadaadaafaafcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraadaadaadaadaadaadaadaadaaraadaadaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaadaaQaadaadaadaadaadaadaadaadaadaadaaeaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaadaadaadaadcfWcfWcfWcfWaadaadaadcfWcfWcfWcfWcfWcfWcfWaadaadaadcfWcfWcfWcfWaadaadaadaadaazaadaadaadaafaafaafcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraadaadaadbmEaaraaraaraaraaraaraadaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaadaadaadaadaadaaeaaQaadaadaaeaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadcfWcfWcfWcfWaadaadcfWcfWcfWcfWcfWcfWcfWcfWcfWaadaadcfWcfWcfWcfWaadaadaadaadaadaadaafaafaafaafaafcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraadaadaadaaraaraaraaraaraaraaraaraadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadcfWcfWcfWcfWaadaadcfWcfWcfWcfWcfWcfWcfWcfWcfWaadaadcfWcfWcfWcfWaadaadaadaadaafaafaafaafaafaafaafcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraaraaraadaaraaraaraaraaraaraaraadaadaadaaraaraaraaraaraaraar +aaaaadaadaadaadaadaadaadaadaaQaadaadaadaadaadaadaaeaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWaadaadaadaadaafaafaafaafaafaafaafcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraaraadaadaaraaraaraaraaraadaadaadaadaaraaraaraaraaraaraaraar +aaaaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWaadaadaadaafaafaafaafaafaafaafaafcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraaraadaaraaraadaadaadaadaadaadaaraaraaraaraaraaraaraaraaraar +aaaaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaaeaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWaadaadaadaafaafaafaafaafaafaafaafcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaraaraaraadaadaadaadaadaadaadaadaadaaraadaaraaraaraaraaraaraaraar +aaaaadaaQaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWaadaadaafaafaafaafaafaafaafaafaafcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaar +aaaaadaadaadaadaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaadcfXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWaadaafaafaafaafaafaafaafbmEbmEbmEcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfPcfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfQaadaadaadaadaadaadaadaadcfQcfQcfQcfQcfQaadaadaadaadaadcfQcfQaadaar +aaaaadaadaadaaQaadaadaaeaadaadaadaadaadaadaadaaQaadaadaaeaadcfYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWaadaafaafaafaafaafaafaafbmEbmEbmEcfScfScfPcfPcfPcfPcfPcfPcfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfZaadaadcfZaadaadaadcfZcfQcfQcfQcfQcfQcfZcfQcfQcfQcfZcfQcfQcfZaadaar +aaaaaeaadaaeaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadcfXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcgacgaaafaafaafaafaafbmEbmEbmEbmEbmEcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfZcfZcfZcfZaadaadaadcfZcfZcfZcfZcfZcfZcfZcfQcfQcfQcfZcfZcfZcfZcfQaar +aaaaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaecfXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcgacgacgacgacgaaafaafaafaafaafbmEbmEbmEbmEbmEcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfQcfZcfZcfZcfZcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfQcfQcfZcfZcfZcfZcfQaar +aaaaadaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcgacgaaafcgacgacgaaafaafaafaafaafaafbmEbmEbmEbmEbmEcfPcfPcfPcfScfScfScfScfPcfPcfPcfScfScfScfScfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfQcfZcfZcfZcfZcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfQcfQcfZcfZcfZcfZcfQaar +aaaaaeaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaadcgbcgbcgbcgbcgbcgbcgbaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcgacgaaafaafaafaafaafaafaafaafaafaafbmEbmEbmEaaraarcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfQaar +aaaaadaadaadaaeaadaadaaeaadaaeaadaaeaadaaeaadaadaadaaQaadaadcfXaadaaaaaaaadcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadcfWcfWcfWcfWcfWcfWcfWcfWcfWcfWcgacgacgaaafcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfScfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZaadaar +aaaaaeaaeaadaadaadaadaadaadaadaaeaadaadaaeaadaadaadaadaadaadcfXaadaadaadaadcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadcfWcfWcfWcfWcfWcfWcfWcfWcfWcgacgacgacgaaafcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfQaar +aaaaadaadaadaaeaadaadaaeaadaadaadaadaadaadaadaaeaadaadaaQaadaaaaadaaaaadaadcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfWcfWcfWcfWcfWcfWcfWcfWcgacgacgacgacgacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfQcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfQaar +aaaaadaadaadaadaaeaadaadaadaadaadaaeaaeaadaadaadaadaadaadaadaaaaaaaaaaadaadcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfWcfWcfWcfWcfWcgacgacgacgacfPcfPcfPcfPcfPcfPaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfScfPcfPcfPcfScfScfScfScfScfPcfScfQcfQcfQcfQcfQcfPcfQcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfQaar +aaaaadaaeaadaadaaeaadaadaaQaadaadaadaadaaeaadaaeaadaadaadaaaaaaaaaaaaaaaaadcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfWcfWcfWcfWcfWcgacgacfPcfPcfPcfPcfPcfPcfPaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScgccgccgccgccgccgccgccfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfQcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfQaar +aaaaadaadaadaadaadaadaadaadaadaaeaadaadaaeaaeaadaadaadaadaadaaaaaaaaaaaaaadaadcgbcgbcgbcgbcgbcgbcgbaadaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScgccgccgccgccgccgccgccgccgccfScfScfScfScfScfScfScfPcfPcfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZaar +aaaaaeaadaadaaeaadaaeaadaaeaadaadaadaadaadaadaadaadaadaadaaaaaaaaaaaaaadaadaadcgbcgbcgbcgbcgbcgbcgbaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScgccgccgccgccgccgccgccgccgccfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZaar +aaaaadaadaadaadaaeaadaaeaadaadaadaaQaaeaaeaadaadaadaadaadaaaaaaaaaaadaadaadcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScgccgccgccgccgccgccgccgccgccfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaadcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZaadaar +aaaaaeaadaadaadaaeaadaadaadaaeaadaaeaadaadaaQaadaadaaeaadaaaaaaaadcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScgccgccgccgccgccgccgccgccgccfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaadaadaadaadaadcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZaadaadaadaadaadaar +aaaaadaaeaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaaaaaaaaaaadcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScgdcfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScgccgccgccgccgccgccgccgccgccfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQaadaadaadaadcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZaadaadaadaadaadaar +aaaaadaaeaadaaeaadaadaadaaeaadaadaadaaeaaeaadaadaadaadaaaaaaaaaaaacgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScgccgccgccgccgccgccgccfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfQcfQcfQcfQcfQaar +aaaaadaadaadaaeaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaaaaaaaadcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScgccgccgccgccgccgccgccfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfZcfQcfQcfQcfQcfQaar +aaaaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaaaaaaaadcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScgccgccgccgccgccgccgccgccgccfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfQcfQcfZcfZcfZcfZcfZcfZcfZcfZcfZcfQcfQcfQcfQcfQcfQcfQaar +aaaaadaadaaAaadaadaadaadaadaadaaeaadaadaadaadaadaaQaadaadaadaaaaadcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfPcfPcfPcfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfQcfQcfQcfQcfZcfZcfZcfZcfZcfZcfZcfQcfQcfQcfQcfQcfQcfQcfQaar +aaaaaQaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaeaadaaaaadcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaar +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaaeaadaadaadaadaadaaacgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfScfScfPcfPcfPcfPcfScfScfScfScfScfScfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaaeaadaaeaadaaeaadaadaadaadaadaadaadaadaadaadaadaaaaaacgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScgdcfScfScfScfScfPcfPcfPcfPcfPcfScgdcfScfScfScfScfScfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaadaaeaadaaeaadaadaadaaQaaeaaeaadaadaadaadaadaadaaaaaacgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScgdcfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfScfScfScfScfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaadaaeaadaadaadaaeaadaaeaadaadaaQaadaadaaQaadaadaaaaaacgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScgecfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaaeaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaaaaadcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScgdcfScfScfScfScgdcfScfScfScfScfScfScfScgdcfScfScfScfScfScgdcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaaeaadaaeaadaadaadaaeaadaadaadaaeaaeaadaadaadaadaadaadaadaadcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaaeaadaadaadaaeaadaadaadaadaadaadaaeaadaadaaeaadaadaadcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaadaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaaacgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaadaadaaeaadaadaadaaeaadaaeaadaadaaAaadaadaadaadaaaaadcgbcgbcgbcgbcgbaadcgbcgbcgbcgbcgbaadcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaaeaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaaeaadaaaaadcgbcgbcgbcgbcgbaadcgbcgbcgbcgbcgbaadcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaaeaadaaeaadaaeaadaadaadaadaadaadaadaadaadaadaadaaaaaacgbcgbcgbcgbcgbaadaadaadaadaadaadaadcgbcgbcgbcgbcgbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaadaaeaadaaeaadaadaadaaQaaeaaeaadaadaadaaQaadaadaaaaaaaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaadaaeaadaadaadaaeaadaaeaadaadaaQaadaadaadaadaadaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccgccfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaaeaadaadaadaaeaadaadaadaadaadaaeaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScgccgccgccgccgccfScgccgccgccgccgccfScgccgccgccgccgccfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaaeaadaaeaadaadaadaaeaadaadaadaaeaaeaadaadaadaadaaeaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScgccgccgccgccgccfScgccgccgccgccgccfScgccgccgccgccgccfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaadaaeaadaadaadaaeaaeaadaadaadaadaaeaadaadaadaadaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScgccgccgccgccgccfScfScfScfScfScfScfScgccgccgccgccgccfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaadaaeaadaadaadaadaadaadaaeaadaadaadaadaaeaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfScfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +aaaaadaadaadaadaaeaadaadaadaadaadaadaadaadaadaadaadaadaadaadcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaaaaaaaaaaaaaacfPcfPcfPaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP +cgmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfPcfP "} diff --git a/maps/yw/cryogaia_areas.dm b/maps/yw/cryogaia_areas.dm index bee82544de..fab6166e55 100644 --- a/maps/yw/cryogaia_areas.dm +++ b/maps/yw/cryogaia_areas.dm @@ -18,6 +18,10 @@ icon_state = "outside1" sound_env = MOUNTAINS +/area/crew_quarters/meeting + name = "\improper Public Conference" + icon_state = "courtroom" + /area/borealis2/outdoors/grounds name = "\The outpost grounds" @@ -41,6 +45,9 @@ /area/borealis2/outdoors/grounds/traderpad name = "\improper Cryogaia Commerce Pad" +/area/borealis2/outdoors/grounds/entrance + name = "\improper Cryogaia Compound Gate" + /area/borealis2/outdoors/grounds/solars name = "\The solar array" icon = 'icons/turf/areas.dmi' @@ -365,6 +372,12 @@ /area/medical/pyschwarde name = "\improper Psychiatric lockup" icon_state = "medbay2" +/area/medical/triage + name = "\improper Medbay Triage" + icon_state = "medbay4" +/area/medical/scanning + name = "Medical Diagnostics Center" + icon_state = "medbay" //Science outpost diff --git a/maps/yw/cryogaia_defines.dm b/maps/yw/cryogaia_defines.dm index 712e285a55..d2eeb8046d 100644 --- a/maps/yw/cryogaia_defines.dm +++ b/maps/yw/cryogaia_defines.dm @@ -33,13 +33,10 @@ lobby_screens = list("cryogaia") id_hud_icons = 'icons/mob/hud_jobs_vr.dmi' -/* holomap_smoosh = list(list( - Z_LEVEL_SURFACE_LOW, - Z_LEVEL_SURFACE_MID, - Z_LEVEL_SURFACE_HIGH, - Z_LEVEL_SPACE_LOW, - Z_LEVEL_SPACE_MID, - Z_LEVEL_SPACE_HIGH)) */ + holomap_smoosh = list(list( + Z_LEVEL_CRYOGAIA_MINE, + Z_LEVEL_CRYOGAIA_LOWER, + Z_LEVEL_CRYOGAIA_MAIN)) station_name = "Cryogaia Outpost" station_short = "Yawn Wider" @@ -137,8 +134,9 @@ /area/borealis2/elevator/medbay, /area/storage/auxillary, /area/vacant/vacant_site/locker, - /area/tcommsat/powercontrol - ) + /area/tcommsat/powercontrol, + /area/constructionsite/medical, + /area/borealis2/outdoors/grounds/entrance) unit_test_exempt_from_atmos = list( // /area/engineering/atmos/intake ) @@ -206,6 +204,10 @@ // For making the 6-in-1 holomap, we calculate some offsets ((Disabled because I don't have a clue to how to start making this for Cryogaia)) +#define CRYOGAIA_MAP_SIZE 150 // Width and height of compiled in Southern Cross z levels. +#define CRYOGAIA_HOLOMAP_CENTER_GUTTER 40 // 40px central gutter between columns +#define CRYOGAIA_HOLOMAP_MARGIN_X ((HOLOMAP_ICON_SIZE - (2*CRYOGAIA_MAP_SIZE) - CRYOGAIA_HOLOMAP_CENTER_GUTTER) / 2) // 100 +#define CRYOGAIA_HOLOMAP_MARGIN_Y ((HOLOMAP_ICON_SIZE - (3*CRYOGAIA_MAP_SIZE)) / 2) // 60 // We have a bunch of stuff common to the station z levels @@ -214,25 +216,36 @@ name = "Subterranian depths" flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_SEALED base_turf = /turf/simulated/floor/indoorrocks + holomap_legend_x = 220 + holomap_legend_y = 160 + holomap_offset_x = CRYOGAIA_HOLOMAP_MARGIN_X + holomap_offset_y = CRYOGAIA_HOLOMAP_MARGIN_Y + CRYOGAIA_MAP_SIZE*0 /datum/map_z_level/cryogaia/transit z = Z_LEVEL_CRYOGAIA_TRANSIT name = "Transit" flags = MAP_LEVEL_SEALED|MAP_LEVEL_PLAYER|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT + /datum/map_z_level/cryogaia/lower name = "Subfloor" z = Z_LEVEL_CRYOGAIA_LOWER flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_SEALED base_turf = /turf/simulated/open // /turf/simulated/floor/outdoors/rocks/cryogaia + holomap_legend_x = 220 + holomap_legend_y = 160 + holomap_offset_x = CRYOGAIA_HOLOMAP_MARGIN_X + holomap_offset_y = CRYOGAIA_HOLOMAP_MARGIN_Y + CRYOGAIA_MAP_SIZE*1 /datum/map_z_level/cryogaia/main z = Z_LEVEL_CRYOGAIA_MAIN name = "Surface level" flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_SEALED base_turf = /turf/simulated/open -/* holomap_offset_x = TETHER_HOLOMAP_MARGIN_X - holomap_offset_y = TETHER_HOLOMAP_MARGIN_Y + TETHER_MAP_SIZE*0 */ + holomap_legend_x = 220 + holomap_legend_y = 160 + holomap_offset_x = CRYOGAIA_HOLOMAP_MARGIN_X + holomap_offset_y = CRYOGAIA_HOLOMAP_MARGIN_Y + CRYOGAIA_MAP_SIZE*2 /datum/map_z_level/cryogaia/centcom z = Z_LEVEL_CRYOGAIA_CENTCOM diff --git a/maps/yw/cryogaia_jobs.dm b/maps/yw/cryogaia_jobs.dm index fc4f4f9b85..e98e3e0d66 100644 --- a/maps/yw/cryogaia_jobs.dm +++ b/maps/yw/cryogaia_jobs.dm @@ -96,8 +96,8 @@ var/const/SAR =(1<<14) selection_color = "#999440" economic_modifier = 6 minimal_player_age = 3 - access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_eva, access_maint_tunnels, access_external_airlocks, access_pilot) - minimal_access = list(access_medical, access_medical_equip, access_morgue, access_pilot) + access = list(access_medical, access_medical_equip, access_eva, access_maint_tunnels, access_external_airlocks) //nerfs SAR access. Why the fuck do they have access to surgery and chemistry? They're not doctors, their medics. + minimal_access = list(access_medical, access_medical_equip, access_eva) //nerfs SAR access. Why the fuck do they have access to surgery and chemistry? They're not doctors, their medics. outfit_type = /decl/hierarchy/outfit/job/medical/sar /datum/job/offduty_exploration diff --git a/maps/yw/cryogaia_things.dm b/maps/yw/cryogaia_things.dm index d03ddedd18..d876e0dc93 100644 --- a/maps/yw/cryogaia_things.dm +++ b/maps/yw/cryogaia_things.dm @@ -332,6 +332,16 @@ var/global/list/latejoin_tram = list() return ..(user) +/obj/machinery/door/airlock/highsecurity/red + name = "Bridge Holdout Armory" + desc = "Only to be opened on Code red or greater." + +/obj/machinery/door/airlock/highsecurity/red/allowed(mob/user) + if(get_security_level() in list("green","blue")) + return FALSE + + return ..(user) + //Freezable Airlock Door /obj/machinery/door/airlock/glass_external/freezable maxhealth = 600 @@ -603,7 +613,7 @@ var/global/list/latejoin_tram = list() // Icy crystals. /datum/category_item/catalogue/material/trail_blazer name = "Ice Colony Equipment - Trailblazer" - desc = "This is a glowing stick embedded int he ground with a light on top, commonly used in snowy installations \ + desc = "This is a glowing stick embedded in the ground with a light on top, commonly used in snowy installations \ and in tundra conditions." value = CATALOGUER_REWARD_EASY diff --git a/maps/yw/cryogaia_turfs.dm b/maps/yw/cryogaia_turfs.dm index cf5c44c9d4..e10777173b 100644 --- a/maps/yw/cryogaia_turfs.dm +++ b/maps/yw/cryogaia_turfs.dm @@ -21,6 +21,7 @@ CRYOGAIA_TURF_CREATE(/turf/simulated/floor/outdoors/snow/gravsnow) CRYOGAIA_TURF_CREATE(/turf/simulated/floor/outdoors/snow/plating) CRYOGAIA_TURF_CREATE(/turf/simulated/floor/outdoors/snow/plating/drift) CRYOGAIA_TURF_CREATE(/turf/simulated/floor/outdoors/rocks) +CRYOGAIA_TURF_CREATE(/turf/simulated/floor/plating/snow/plating) CRYOGAIA_TURF_CREATE(/turf/simulated/floor/tiled/cryogaia) CRYOGAIA_TURF_CREATE(/turf/simulated/floor/tiled/old_tile/gray) /turf/simulated/floor/outdoors/grass/cryogaia diff --git a/maps/yw/elevator_areas.dm b/maps/yw/elevator_areas.dm index 209443cbea..faa301db4a 100644 --- a/maps/yw/elevator_areas.dm +++ b/maps/yw/elevator_areas.dm @@ -53,6 +53,7 @@ lift_floor_name = "Transit" lift_announce_str = "Arriving at Basement Level Transit." base_turf = /turf/simulated/floor + delay_time = 7 SECONDS // to symbolize the depth of transit. /area/turbolift/lumber_floor_underground_mine name = "basement (sublevel 2)" diff --git a/maps/yw/residential/residential.dmm b/maps/yw/residential/residential.dmm index 6113c58ec8..bd00b5debf 100644 --- a/maps/yw/residential/residential.dmm +++ b/maps/yw/residential/residential.dmm @@ -529,7 +529,7 @@ "ki" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/residential/room5) "kj" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/residential/room5) "kk" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/residential/room5) -"kl" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/residential/room1) +"kl" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/white,/area/residential/room1) "km" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/residential/room1) "kn" = (/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/residential/room1) "ko" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 1; pixel_x = 4; pixel_y = -24},/turf/simulated/floor/wood,/area/residential/room1) @@ -657,7 +657,7 @@ "mG" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/holofloor/wood,/area/residential/mansion) "mH" = (/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/holofloor/wood,/area/residential/mansion) "mI" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/residential/lobby) -"mJ" = (/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/lino,/area/residential/room1) +"mJ" = (/obj/structure/sink/kitchen,/turf/simulated/wall,/area/residential/room1) "mK" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/residential/room1) "mL" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/turf/simulated/floor/wood,/area/residential/room1) "mM" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/wood,/area/residential/room3) @@ -733,7 +733,7 @@ "oe" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/wood,/area/residential/room5) "of" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light,/turf/simulated/floor/wood,/area/residential/room5) "og" = (/obj/structure/reagent_dispensers/winevat,/turf/simulated/floor/tiled,/area/residential/room5) -"oh" = (/obj/structure/window/reinforced/full{dir = 1},/obj/structure/grille,/obj/structure/curtain/black{dir = 2},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/residential/room1) +"oh" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/material/knife,/turf/simulated/floor/lino,/area/residential/room1) "oi" = (/obj/structure/handrail,/turf/simulated/floor/carpet/bcarpet,/area/residential/room2) "oj" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/closet/cabinet,/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/weapon/handcuffs/fuzzy,/obj/item/clothing/head/headband/maid,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/head/nursehat,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/khi/sci,/turf/simulated/floor/carpet/bcarpet,/area/residential/room2) "ok" = (/obj/item/weapon/bedsheet/hosdouble,/obj/structure/bed/double/padded,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/curtain/black,/turf/simulated/floor/carpet/bcarpet,/area/residential/room2) @@ -944,7 +944,7 @@ "sh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/flamp/noshade,/turf/simulated/floor/reinforced,/area/residential/ship_bay) "si" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/residential/docking_lobby) "sj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/residential/docking_lobby) -"sk" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/curtain/black,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/residential/room1) +"sk" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = 5; pixel_y = 5},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,/obj/structure/sink/kitchen{pixel_x = -30},/turf/simulated/floor/lino,/area/residential/room1) "sl" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/curtain/black,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/residential/room2) "sm" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/curtain/black,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/residential/room4) "sn" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/residential/docking_lobby) @@ -1074,17 +1074,17 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasniGhysnaaaaaaaahRhRhRhRaaaaaaaahjifigiYiZihiiihijikikikikilikimikinikioikipikioilimikikikiqikikikimikikikirisikikimikikiqikitirikikikirikikimioikiqiuiuhNiuiwixiyiyiziyiAiyiyiBiCcpcpcpcpcpcpepepepepepepepepepepepepepepepdWdWdWdWdWdWdWdWdWdWdWdWbZbZbZbZbZbZbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahjiXhysnaaaaaahRhRiDiEhRhRaaaaaahjhyhyhTiGhyhyiHhjePePePePePePePePePePePfkfjfkePePePePePePePePePePePePePePfkfjfkePePePePePePePePePePePePePePePePePePePePePePePjpjpePePePePiIeRhPcpcpcpcpcpcpcpepepepepepepepepepepepepepepepdWeHfheNfaeHereseteuiJeIbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahjsjhyiOiPiQiRhRiKiLiMiNhRaaaaaahjhyhyhTiGhyhyhyhjaaaaaaaaaaaaaaaaaaaaePiSeQeRePaaaaaaaaaaaaaaaaaaaaaaaaePiSeQeRePaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaePjpjpbZiTcpcpcpcpcpcpepepepepepepepepepepepepepepepdWeHeHeHeHeHeHeHeHeHeHeObZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahjjajdjbjejfjUiWiMiMiMiViUaaaaaasnhyhyjxjyhyjgjhhjaajijijijijiohjijiaaePeRjkjlePaajmjmjnjmjmjmjmjmaaaaaaePeRhkjlePaaaaaaaaaaaaaaaajopKpKpKpKpKpKpKpKpKjoaaaaaaaaaaaaaaaaaaaaaabZhscpcpcpcpepepepepepepepepepepepepepepepepepjqeHeHeHeHeHeHeHeHeHeHfbbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahjjajdjbjejfjUiWiMiMiMiViUaaaaaasnhyhyjxjyhyjgjhhjaajijijijijijijijiaaePeRjkjlePaajmjmjnjmjmjmjmjmaaaaaaePeRhkjlePaaaaaaaaaaaaaaaajopKpKpKpKpKpKpKpKpKjoaaaaaaaaaaaaaaaaaaaaaabZhscpcpcpcpepepepepepepepepepepepepepepepepepjqeHeHeHeHeHeHeHeHeHeHfbbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahjhjhjjtjujujvhRjriMiMjshRaaaaaasnjwhyjxjyhyjgjzhjaajijAjBjijCjDjEjiaaePeReQhCePaajmjFjGjHjmjIjJjKaaaaaaePeReQeRePaaaaaaaaaaaaaaaajojLjMjNjMjOjPjQjQjRjoaaaaaaaaaaaaaaaaaaaaaabZgkcpcpcpcpepepepepepepepepepepepepepepepepepjqeHeHgngngngngneHeHeHfibZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahRjSiMiMjThRaaaaaasnhyhyjxjyhyjgjhhjaajijVjWjXjYjDjZjiaaePeReQeRePaajmkakbjGkckdkejmaaaaaaePeReQhCePjojojojojojojojojokfkgjMkhjOkikjkkkkpKaaaaaaaaaaaaaaaaaaaaaabZdWgJgJdWdWdWdWdWdWdWdWdXdXdWepepepepepepepepdWeHeHgngngngngneHeHeHfDbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiUiMiMiMiMhRaaaaaasnhyhyjxjyhyjgjhhjaajiklkmjiknkokpjiaaePkqkreRePaajmksktjcjmkdkwjmaaaaaaePeRkxiksekzkzkzkAkzkBkCkzkDkEkFkGkHkIkJkKkKkLjoaaaaaaaaaaaaaaaaaaaaaabZcpcpcpcpdWelkMdWkNkOdWcpcpdWepepepepepepepepdWeHeHeHeHeHeHeHeHeHeHfUbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahRkPiLiLkQhRaaaaaahjhyhyhTiGhyhyhyhjaajijijijikRjijijiaaePiSeQeRePaajmjmkSkTkUkcjmjmaaaaaaePkqkreRkVkWkXkWkYkWkWkZkWlalblcldjOlejOjOldlejoaaaaaaaaaaaaaaaaaaaaaalfcpcpcpcpeEeplgdWlhepeEcpcpdWepepepepepepepepdWeHeHeHeHeHeHeHeHeHeHgobZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahRlilililihRaaaaaahjljhyhTlkhyhyhyhjaajilllmlnlolplqjijiePeReQeRePjmjmlrlsltlulvlwjmaaaaaaePlxfjfkePjojojojojojojojojolyjojojolzlAjojolBjoaaaaaaaaaaaaaaaaaaaaaabZcpcpcpcpdWellgdWlClDdWcpcpdWepepepepepepepepdWfUfUfUfUdWdWdWjqjqdWdWbZbZbZbZbZbZbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahRlElElElEhRaaaaaahjjwlFlGhyhyhyiHhjaajilHlIlJlKlLlMlNlOkviklQiklRlSlTlUlVlWlXlvlYjmaaaaaaePeReQeRePaaaaaaaaaaaaaaaajolZjokfjOlemajombmcjoaaaaaaaaaaaaaaaaaaaaaabZdWdXdXdWdWdWdWdWdWdWdWdXdXdWdWdWdWdWdWdWdWdWdWdWdWdWdWdWmdepepepepepepepepepepmebZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahjhyhyhyhyhyhyhyhjaajijDjDjDjDmgmhjijiePeReQeRePjmjmlvmilvmjmkmljmaaaaaaePeReQeRePaaaaaaaaaaaaaaaajommjomnmompjOjomqmrjoaaaaaaaaaaaaaaaaaaaaaabZmscpcpmsmsmtmudWepepepepepepepepepepepepepepepepepepepdWepepepepepepepepepepepepbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahjhyhyhyhyhyhyhyhjaamJjDjDjDjDmgmhjijiePeReQeRePjmjmlvmilvmjmkmljmaaaaaaePeReQeRePaaaaaaaaaaaaaaaajommjomnmompjOjomqmrjoaaaaaaaaaaaaaaaaaaaaaabZmscpcpmsmsmtmudWepepepepepepepepepepepepepepepepepepepdWepepepepepepepepepepepepbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahjhjsnsnsnsnsnhjhjaajimvmwmwjDmxmyjiaaePeReQhCePaajmlvmzmAmBmCmDjmaaaaaaePeReQhCePaaaaaajojojojojojolbjOlejojojojomEmFpKaaaaaaaaaaaaaaaaaaaaaalfmGcpcpmHmHmsmsdWmdepcpcpcpcpcpcpcpcpcpcpcpcpcpcpcpepepjqepepepepepephihiepepepepbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaskmJmwmwjDmKmLjiaaePeRjkjlePaajmmMmNmAmCmCmOjmaaaaaaePeRhkjlePaaaaaajomPmQmRmSmTmUmomVjomWmXmYmZnapKaaaaaaaaaaaaaaaaaaaaaabZmucpcpmumunbmsdWmdepcpcpcpcpcpcpcpcpcpcpcpcpcpcpcpepepjqepepepepephthuhuhvepepepbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaskncmJndnespnfjiaaePiSeQeRePaajmlvngmAnhninjjmaaaaaaePiSeQeRePaaaaaajonknlnmmPjojOjOnnjononpnpnpnppKaaaaaaaaaaaaaaaaaaaaaabZmucpcpnqmunbmsdWmdepcpcpcpcpcpcpcpcpcpcpcpcpcpcpcpepepdWepepepepephthuhuhvepepepbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajiskmwmwjDmKmLjiaaePeRjkjlePaajmmMmNmAmCmCmOjmaaaaaaePeRhkjlePaaaaaajomPmQmRmSmTmUmomVjomWmXmYmZnapKaaaaaaaaaaaaaaaaaaaaaabZmucpcpmumunbmsdWmdepcpcpcpcpcpcpcpcpcpcpcpcpcpcpcpepepjqepepepepephthuhuhvepepepbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajincohndnespnfjiaaePiSeQeRePaajmlvngmAnhninjjmaaaaaaePiSeQeRePaaaaaajonknlnmmPjojOjOnnjononpnpnpnppKaaaaaaaaaaaaaaaaaaaaaabZmucpcpnqmunbmsdWmdepcpcpcpcpcpcpcpcpcpcpcpcpcpcpcpepepdWepepepepephthuhuhvepepepbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajijijijijijijijiaaePeReQeRePaajmjmjmjmjmjmjmjmaaaaaaePeReQeRePaaaaaajonrnsntnujojLjOlejonvnwnxnynxjoaaaaaaaaaaaaaaaaaaaaaalfcpcpcpcpcpcpcpdWmdepcpcpcpcpcpcpcpcpcpcpcpcpcpcpcpepepdWmdmdepepephthuhuhvepepepbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaePeReQeRePaaaaaaaaaaaaaaaaaaaaaaaaePeReQeRePaaaaaajojojojojojokfjOlejojojojojojojoaaaaaaaaaaaaaaaaaaaaaabZnznAnBnCnDnEnFdWepepepepepepepepepepcpcpepepepepepepepdWdWdWdWepephthuhuhvepepepbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaePeReQhCePaaaaaaaaaaaaaaaaaaaaaaaaePkqkreRePaaaaaajonGnHnInJjomnnKnLmonMmonNnOnPjoaaaaaaaaaaaaaaaaaaaaaabZbZbZbZbZbZbZbZbZbZbZbZbZepepepepepepcpcpepepepepepepepepepepdWepephthuhuhvepepepbZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/maps/yw/scratchmap.dmm b/maps/yw/scratchmap.dmm index 2ebcd47896..bba5d0f607 100644 --- a/maps/yw/scratchmap.dmm +++ b/maps/yw/scratchmap.dmm @@ -694,7 +694,7 @@ "nr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/space) "ns" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/tiled,/area/space) "nt" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/effect/floor_decal/corner/yellow{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nu" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/space) +"nu" = (/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/space) "nv" = (/obj/structure/flora/tree/dead,/turf/simulated/floor/outdoors/snow/snow/cryogaia,/area/borealis2/outdoors/exterior) "nw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/space) "nx" = (/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/steel_grid,/area/space) @@ -818,6 +818,332 @@ "pL" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/medical_lower) "pM" = (/obj/random/obstruction,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/medical_lower) "pN" = (/obj/random/obstruction,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/lowfloor1) +"pO" = (/obj/machinery/trailblazer/red,/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia,/area/space) +"pP" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/snow/floor/edges,/obj/effect/floor_decal/snow/floor/edges{dir = 4},/obj/effect/floor_decal/snow/floor/surround,/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/outdoors/snow/plating/cryogaia,/area/space) +"pQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/space) +"pR" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/space) +"pS" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "Arrivals_exit"; pixel_y = -25; tag_exterior_door = "Arrivals_exit_exterior"; tag_interior_door = "Arrivals_exit_interior"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/space) +"pT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/table/rack/shelf,/obj/item/weapon/shovel,/obj/item/weapon/ice_pick,/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/space) +"pU" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/space) +"pV" = (/obj/effect/floor_decal/corner/blue,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/space) +"pW" = (/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/space) +"pX" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/space) +"pY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) +"pZ" = (/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor,/area/space) +"qa" = (/obj/machinery/vending/cigarette,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "CIV - Visitor's Dinning"; dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/space) +"qb" = (/obj/structure/table/reinforced,/obj/item/device/paicard,/obj/item/clothing/head/soft/grey,/turf/simulated/floor/tiled,/area/space) +"qc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/space) +"qd" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/space) +"qe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/space) +"qf" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/space) +"qg" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/space) +"qh" = (/obj/item/weapon/cat_box,/turf/simulated/floor,/area/space) +"qi" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/space) +"qj" = (/obj/structure/table/reinforced,/obj/item/weapon/folder,/turf/simulated/floor/tiled,/area/space) +"qk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/space) +"ql" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/space) +"qm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/space) +"qn" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/roller,/obj/item/roller,/obj/item/roller,/obj/item/roller,/obj/item/roller,/turf/simulated/floor,/area/space) +"qo" = (/obj/item/weapon/farmbot_arm_assembly,/turf/simulated/floor,/area/space) +"qp" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/space) +"qq" = (/obj/machinery/door/airlock/maintenance{req_access = list(12)},/turf/simulated/floor,/area/space) +"qr" = (/obj/machinery/light/small,/turf/simulated/floor,/area/space) +"qs" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor,/area/space) +"qt" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/space) +"qu" = (/obj/structure/table/reinforced,/obj/item/weapon/hand_labeler,/obj/item/device/communicator,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/space) +"qv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) +"qw" = (/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) +"qx" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/blue{dir = 1},/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/space) +"qy" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/space) +"qz" = (/obj/structure/table/reinforced,/obj/item/device/radio{frequency = 1487; name = "Medbay Emergency Radio Link"},/obj/item/device/megaphone,/obj/effect/floor_decal/corner/blue/full{dir = 1},/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"qA" = (/turf/simulated/floor/grass,/area/space) +"qB" = (/obj/item/stolenpackage,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) +"qC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor,/area/space) +"qD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access = list(12)},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/space) +"qE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/space) +"qF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/space) +"qG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/space) +"qH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/space) +"qI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/space) +"qJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/space) +"qK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/space) +"qL" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) +"qM" = (/obj/structure/table/rack,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/glasses/hud/health,/obj/effect/floor_decal/corner/blue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_x = 32; pixel_y = -2},/turf/simulated/floor/tiled/white,/area/space) +"qN" = (/obj/structure/sign/greencross,/turf/simulated/wall,/area/space) +"qO" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel,/area/space) +"qP" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/space) +"qQ" = (/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/space) +"qR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/space) +"qS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/space) +"qT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/space) +"qU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/space) +"qV" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) +"qW" = (/obj/effect/floor_decal/corner/blue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/space) +"qX" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "cmooffice"; name = "CMO Office Privacy Shutters"; opacity = 0},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/space) +"qY" = (/obj/machinery/computer/transhuman/resleeving,/obj/effect/floor_decal/corner/lime/full{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/button/windowtint{id = "resleeve_tint"; pixel_x = 6; pixel_y = 25},/turf/simulated/floor/tiled,/area/space) +"qZ" = (/obj/machinery/clonepod/transhuman,/obj/item/device/radio/intercom/department/medbay{pixel_y = 32},/obj/effect/floor_decal/corner/lime{dir = 5},/turf/simulated/floor/tiled,/area/space) +"ra" = (/obj/machinery/transhuman/resleever,/obj/effect/floor_decal/corner/lime{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Medbay Resleeving"},/turf/simulated/floor/tiled,/area/space) +"rb" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/effect/floor_decal/corner/lime/full{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/item/weapon/reagent_containers/glass/bottle/biomass,/obj/item/weapon/reagent_containers/glass/bottle/biomass,/obj/item/weapon/reagent_containers/glass/bottle/biomass,/turf/simulated/floor/tiled,/area/space) +"rc" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 4; id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{dir = 8; id = "resleeve_tint"},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized{dir = 1; id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{id = "resleeve_tint"},/turf/simulated/floor/plating,/area/space) +"rd" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/tool/wrench,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/white,/area/space) +"re" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/space) +"rf" = (/obj/machinery/atmospherics/unary/cryo_cell{dir = 2; layer = 3.3},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/space) +"rg" = (/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/space) +"rh" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/bodyscanner,/turf/simulated/floor/tiled/white,/area/space) +"ri" = (/obj/machinery/body_scanconsole,/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"rj" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/turf/simulated/floor/tiled,/area/space) +"rk" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/space) +"rl" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue,/obj/machinery/light,/turf/simulated/floor/tiled,/area/space) +"rm" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/space) +"rn" = (/obj/structure/table/standard,/obj/item/weapon/coin/silver,/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/space) +"ro" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue,/obj/machinery/computer/guestpass{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled,/area/space) +"rp" = (/obj/machinery/embedded_controller/radio/docking_port_multi{child_names_txt = "Airlock One;Airlock Two"; child_tags_txt = "arrivals_dock_north_airlock;arrivals_dock_south_airlock"; frequency = 1380; id_tag = "arrivals_dock"; pixel_x = 0; pixel_y = -25; req_one_access = list(13)},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/blue,/turf/simulated/floor/tiled,/area/space) +"rq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/space) +"rr" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/space) +"rs" = (/obj/effect/floor_decal/corner/blue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/modular_computer/console/preset/command{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"rt" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/floor_decal/corner/lime{dir = 9},/turf/simulated/floor/tiled,/area/space) +"ru" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/effect/floor_decal/corner/lime{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/space) +"rv" = (/obj/effect/floor_decal/corner/lime{dir = 5},/obj/effect/floor_decal/corner/lime{dir = 10},/turf/simulated/floor/tiled,/area/space) +"rw" = (/obj/effect/floor_decal/corner/lime{dir = 6},/turf/simulated/floor/tiled,/area/space) +"rx" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/medical{id_tag = "ResleevingDoor"; name = "Resleeving Lab"; req_access = list(5)},/turf/simulated/floor/tiled/white,/area/space) +"ry" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) +"rz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"rA" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"rB" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"rC" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/space) +"rD" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"rE" = (/obj/structure/sign/nosmoking_2,/turf/simulated/wall,/area/space) +"rF" = (/obj/machinery/atm,/turf/simulated/wall,/area/space) +"rG" = (/obj/machinery/status_display,/turf/simulated/wall,/area/space) +"rH" = (/obj/machinery/door/airlock/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/space) +"rI" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) +"rJ" = (/obj/machinery/photocopier,/obj/effect/floor_decal/corner/blue/full{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"rK" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/corner/lime/full,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/space) +"rL" = (/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/space) +"rM" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/backup_kit,/obj/item/weapon/storage/box/backup_kit,/obj/effect/floor_decal/corner/lime{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/sleevemate,/turf/simulated/floor/tiled,/area/space) +"rN" = (/obj/structure/closet/wardrobe/genetics_white,/obj/effect/floor_decal/corner/lime/full{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled,/area/space) +"rO" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/vending/medical,/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"rP" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/white,/area/space) +"rQ" = (/obj/machinery/sleeper{dir = 1},/obj/effect/floor_decal/corner/lime/full,/obj/effect/floor_decal/corner/lime/full{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"rR" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/space) +"rS" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"rT" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/holoplant,/turf/simulated/floor/tiled/white,/area/space) +"rU" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled/white,/area/space) +"rV" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled/white,/area/space) +"rW" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/computer/transhuman/designer,/turf/simulated/floor/tiled/white,/area/space) +"rX" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "medbay reception"},/turf/simulated/floor/tiled/white,/area/space) +"rY" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/light{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/space) +"rZ" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"sa" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/box/cups,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"sb" = (/obj/structure/sign/redcross{desc = "The Star of Life, a symbol of Medical Aid."; icon_state = "lifestar"; name = "Medbay"},/turf/simulated/wall,/area/space) +"sc" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "medbay restroom"},/turf/simulated/floor/tiled/white,/area/space) +"sd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) +"se" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/space) +"sf" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "cmooffice"; name = "CMO Office Privacy Shutters"; opacity = 0},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 2; health = 1e+006},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/space) +"sg" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/medical{id_tag = "ResleevingDoor"; name = "Resleeving Lab"; req_access = list(5)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/space) +"sh" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "psych"; name = "Mental Health Privacy Shutters"; opacity = 0},/obj/structure/window/reinforced/polarized{id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{dir = 8; id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{dir = 1; id = "resleeve_tint"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/space) +"si" = (/obj/structure/grille,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "psych"; name = "Mental Health Privacy Shutters"; opacity = 0},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized{dir = 1; id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{id = "resleeve_tint"},/obj/structure/window/reinforced/polarized{dir = 4; id = "resleeve_tint"},/turf/simulated/floor/plating,/area/space) +"sj" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall,/area/space) +"sk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/space) +"sl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sm" = (/obj/machinery/sleep_console{dir = 1; pixel_y = 10},/obj/effect/floor_decal/corner/lime/full,/obj/effect/floor_decal/corner/lime/full{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"so" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the brig foyer."; id = "medbayfoyer"; name = "Medbay Foyer Doors"; pixel_x = 26; pixel_y = -6; req_access = list()},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"sp" = (/obj/structure/table/standard,/obj/machinery/light{dir = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/space) +"sq" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) +"sr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"ss" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"st" = (/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/white,/area/space) +"su" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) +"sv" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sw" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/space) +"sx" = (/obj/effect/floor_decal/corner/paleblue{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"sB" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"sC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Medbay"; sortType = "Medbay"},/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"sD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sG" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/space) +"sH" = (/obj/effect/floor_decal/corner/paleblue{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sI" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"sJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/paleblue{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"sK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/space) +"sL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"sM" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"sN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/space) +"sO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/space) +"sP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/space) +"sQ" = (/obj/effect/floor_decal/corner/paleblue,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "Medbay Primary Hall"; dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"sR" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/space) +"sS" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"sT" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/space) +"sU" = (/obj/effect/floor_decal/corner/paleblue{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"sV" = (/obj/effect/floor_decal/corner/paleblue,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"sW" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"sX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"sY" = (/obj/machinery/iv_drip,/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = 0; pixel_y = -32},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"sZ" = (/obj/machinery/smartfridge/chemistry/chemvator,/obj/machinery/camera/network/medbay{c_tag = "Virology Viral Storage"; dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"ta" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = 2; pixel_y = 2},/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -2; pixel_y = -2},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/item/device/defib_kit/loaded,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/white,/area/space) +"tb" = (/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"tc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/effect/floor_decal/corner/paleblue,/turf/simulated/floor/tiled/white,/area/space) +"td" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"te" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{autoclose = 1; dir = 2; id_tag = "medbayfoyer"; name = "Medical Bay"; req_access = list(5); req_one_access = list(5)},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"tf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) +"tg" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"th" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"ti" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/space) +"tj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"tk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"tl" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"tm" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/space) +"tn" = (/obj/structure/noticeboard,/turf/simulated/wall,/area/space) +"to" = (/obj/machinery/door/firedoor,/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled/white,/area/space) +"tp" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"tq" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -5},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/obj/item/device/sleevemate,/obj/item/weapon/storage/box/body_record_disk,/turf/simulated/floor/tiled/white,/area/space) +"tr" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/computer/crew,/turf/simulated/floor/tiled/white,/area/space) +"ts" = (/obj/machinery/door/window/northleft{dir = 1; icon_state = "left"; name = "Medbay Reception"; req_access = list(5)},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"tt" = (/obj/machinery/computer/crew,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"tu" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/door/window/eastleft{dir = 1; name = "Medbay Reception"; req_access = list(5)},/obj/item/weapon/folder/white,/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"tv" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/item/device/radio/phone/medbay,/obj/machinery/button/remote/airlock{desc = "A remote control switch for the brig foyer."; id = "medbayfoyer"; name = "Medbay Foyer Doors"; pixel_x = 26; pixel_y = -6; req_access = list()},/turf/simulated/floor/tiled/white,/area/space) +"tw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Examination Room"; req_access = list(5)},/turf/simulated/floor/tiled/white,/area/space) +"tx" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/roller,/obj/item/roller,/obj/item/roller,/obj/item/roller,/obj/structure/window/reinforced/tinted,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/white,/area/space) +"ty" = (/obj/structure/sign/examroom,/turf/simulated/wall,/area/space) +"tz" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/computer/med_data/laptop,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"tA" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/device/radio/phone/medbay,/obj/machinery/door/window/northleft{dir = 1; icon_state = "left"; name = "Medbay Reception Window"; req_access = list(5)},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"tB" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"tC" = (/obj/effect/floor_decal/corner/pink{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"tD" = (/obj/structure/bed/padded,/obj/structure/curtain/open/privacy,/obj/item/weapon/bedsheet/medical,/obj/effect/floor_decal/corner/pink{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"tE" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/corner/pink/full{dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/space) +"tF" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/space) +"tG" = (/obj/machinery/mech_recharger,/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/space) +"tH" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"tI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"tJ" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the brig foyer."; id = "medbayfoyer"; name = "Medbay Foyer Doors"; pixel_x = 0; pixel_y = 6; req_access = list()},/turf/simulated/floor/tiled/white,/area/space) +"tK" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Paramedic"},/turf/simulated/floor/tiled/white,/area/space) +"tL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/space) +"tM" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/space) +"tN" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/tiled/white,/area/space) +"tO" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/space) +"tP" = (/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/white,/area/space) +"tQ" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/space) +"tR" = (/obj/item/weapon/stool/padded,/obj/item/weapon/storage/box/backup_kit,/turf/simulated/floor/tiled/white,/area/space) +"tS" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"tT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/space) +"tU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) +"tV" = (/obj/effect/floor_decal/corner/paleblue{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/white,/area/space) +"tW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{name = "First-Aid Station"; req_one_access = list(5,10,63)},/turf/simulated/floor/tiled/white,/area/space) +"tX" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/steel,/area/space) +"tY" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel,/area/space) +"tZ" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/fireaxecabinet{pixel_x = 32},/turf/simulated/floor/tiled/steel,/area/space) +"ua" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"ub" = (/obj/machinery/door/window/westright{name = "Medbay Reception"; req_access = list(5)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"uc" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"ud" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/computer/guestpass{dir = 1; pixel_y = -30},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"ue" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/turf/simulated/floor/tiled/white,/area/space) +"uf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/storage/box/backup_kit,/turf/simulated/floor/tiled/white,/area/space) +"ug" = (/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/effect/floor_decal/corner/paleblue/full{dir = 4},/obj/structure/table/standard{name = "plastic table frame"},/turf/simulated/floor/tiled/white,/area/space) +"uh" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/white,/area/space) +"ui" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 8},/obj/machinery/computer/guestpass{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/space) +"uj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"uk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/corner/paleblue,/turf/simulated/floor/tiled/white,/area/space) +"ul" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/effect/floor_decal/corner/paleblue/full{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"um" = (/obj/machinery/body_scanconsole,/turf/simulated/floor/tiled/white,/area/space) +"un" = (/obj/machinery/door/airlock/glass_medical{name = "Patient Ward"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/white,/area/space) +"uo" = (/obj/effect/floor_decal/corner/paleblue,/turf/simulated/floor/tiled/white,/area/space) +"up" = (/obj/structure/closet/secure_closet/paramedic,/obj/item/clothing/accessory/storage/black_vest,/obj/random/medical,/obj/random/medical,/turf/simulated/floor/tiled/white,/area/space) +"uq" = (/obj/structure/table/rack,/obj/machinery/door/window/westright{name = "EVA Suit Storage"; req_access = list(5)},/obj/item/device/suit_cooling_unit,/obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/medical,/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/shoes/boots/winter/medical,/obj/machinery/camera/network/medbay{c_tag = "Medbay EMT office"; dir = 8},/turf/simulated/floor/tiled/dark,/area/space) +"ur" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled/white,/area/space) +"us" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) +"ut" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/space) +"uu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) +"uv" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/tiled/white,/area/space) +"uw" = (/obj/effect/floor_decal/corner/paleblue{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/space) +"ux" = (/obj/structure/closet/secure_closet/paramedic,/obj/random/medical,/obj/random/medical,/obj/structure/window/reinforced{dir = 2; health = 1e+006},/turf/simulated/floor/tiled/white,/area/space) +"uy" = (/obj/structure/window/reinforced,/obj/structure/table/rack,/obj/machinery/door/window/westleft{name = "EVA Suit Storage"; req_access = list(5)},/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/medical,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical,/obj/item/weapon/tank/oxygen,/turf/simulated/floor/tiled/dark,/area/space) +"uz" = (/obj/effect/floor_decal/corner/paleblue{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"uA" = (/obj/effect/floor_decal/corner/paleblue{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) +"uB" = (/obj/structure/window/reinforced/polarized{id = "exam"},/obj/structure/window/reinforced/polarized{dir = 4; id = "exam"},/obj/structure/window/reinforced/polarized{dir = 8; id = "exam"},/obj/structure/window/reinforced/polarized{dir = 1; id = "exam"},/obj/structure/grille,/turf/simulated/floor/plating,/area/space) +"uC" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/structure/closet/secure_closet/medical_wall{name = "Pill Cabinet"; pixel_y = 32},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"uD" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"uE" = (/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"uF" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"uG" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/device/healthanalyzer,/obj/item/device/universal_translator,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"uH" = (/obj/structure/table/glass,/obj/random/medical,/obj/random/medical,/obj/item/device/glasses_kit,/obj/effect/floor_decal/corner/pink{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"uI" = (/obj/effect/floor_decal/corner/pink{dir = 6},/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/white,/area/space) +"uJ" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/effect/floor_decal/corner/pink{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"uK" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/pink{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"uL" = (/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/tiled/steel_ridged,/area/space) +"uM" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/computer/med_data/laptop,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "Medbay Recovery Ward"; dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"uN" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/pink{dir = 8},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/space) +"uO" = (/obj/effect/floor_decal/corner/pink{dir = 6},/obj/machinery/computer/cryopod{pixel_x = 32},/obj/machinery/cryopod,/turf/simulated/floor/tiled/white,/area/space) +"uP" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/space) +"uQ" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"uR" = (/obj/machinery/computer/med_data{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"uS" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start{name = "Paramedic"},/turf/simulated/floor/tiled/white,/area/space) +"uT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"uU" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"uV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{name = "First-Aid Station"; req_one_access = list(5,10,63)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"uW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"uX" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/space) +"uY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Examination Room"; req_access = list(5)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"uZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/space) +"va" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"vb" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/space) +"vc" = (/obj/item/weapon/stool/padded,/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 25; pixel_y = 0},/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"vd" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/space) +"ve" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) +"vf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/space) +"vg" = (/obj/machinery/door/airlock/glass_medical{id_tag = "Surgery"; name = "Surgical Wing"; req_access = list(5)},/obj/machinery/door/firedoor/glass,/obj/machinery/holosign/surgery,/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/paleblue{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) +"vh" = (/obj/machinery/door/airlock/glass_medical{id_tag = "Surgery"; name = "Surgical Wing"; req_access = list(5)},/obj/machinery/door/firedoor/glass,/obj/machinery/holosign/surgery,/obj/effect/floor_decal/corner/paleblue{dir = 4},/obj/effect/floor_decal/corner/pink,/turf/simulated/floor/tiled/white,/area/space) +"vi" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/space) +"vj" = (/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/space) +"vk" = (/obj/structure/table/rack,/obj/item/weapon/rig/medical/equipped,/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"vl" = (/obj/effect/floor_decal/corner/paleblue,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/medbay{c_tag = "Medbay Lower Annex"; dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/white,/area/space) +"vm" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/pink{dir = 8},/turf/simulated/floor/tiled/white,/area/space) +"vn" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/clipboard,/turf/simulated/floor/tiled/white,/area/space) +"vo" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/white,/area/space) +"vp" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/tiled/white,/area/space) +"vq" = (/obj/structure/bed/padded,/obj/machinery/newscaster{layer = 3.3; pixel_x = 27; pixel_y = 0},/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"vr" = (/obj/structure/table/rack,/obj/item/weapon/rig/medical/equipped,/obj/machinery/alarm{dir = 4; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) +"vs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) +"vt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) +"vu" = (/obj/effect/floor_decal/corner/pink{dir = 4},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/space) +"vv" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"vw" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"vx" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/effect/floor_decal/corner/pink{dir = 5},/turf/simulated/floor/tiled/white,/area/space) +"vy" = (/obj/effect/floor_decal/corner/pink{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) +"vz" = (/obj/effect/floor_decal/corner/pink{dir = 6},/turf/simulated/floor/tiled/white,/area/space) +"vA" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/space) +"vB" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/vending/wallmed1{layer = 3.3; name = "Emergency NanoMed"; pixel_x = 28; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/space) +"vC" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/effect/floor_decal/corner/pink/full,/turf/simulated/floor/tiled/white,/area/space) +"vD" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"vE" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"vF" = (/obj/machinery/light,/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"vG" = (/obj/effect/floor_decal/corner/pink{dir = 10},/obj/machinery/button/windowtint{id = "exam"; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/space) +"vH" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/corner/pink{dir = 10},/obj/machinery/camera/network/medbay{c_tag = "Medbay Exam room"; dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"vI" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/floor_decal/corner/pink{dir = 10},/turf/simulated/floor/tiled/white,/area/space) +"vJ" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/corner/pink/full{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"vK" = (/obj/structure/sign/directions/evac,/obj/structure/sign/directions/medical{dir = 1; pixel_y = 8},/turf/simulated/wall,/area/space) +"vL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) +"vM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/white,/area/space) +"vN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"vO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"vP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/space) +"vQ" = (/obj/effect/floor_decal/corner/pink{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"vR" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/food/drinks/britcup,/obj/effect/floor_decal/corner/pink{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/space) +"vS" = (/obj/structure/closet/wardrobe/medic_white,/obj/effect/floor_decal/corner/pink{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/space) +"vT" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/white,/area/space) +"vU" = (/obj/effect/floor_decal/corner/pink{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"vV" = (/obj/machinery/door/airlock/glass_medical{id_tag = "Surgery"; name = "Surgical Wing"; req_access = list(5)},/obj/machinery/door/firedoor/glass,/obj/machinery/holosign/surgery,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"vW" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/white,/area/space) +"vX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/space) +"vY" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) +"vZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) +"wa" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/space) +"wb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/space) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -1028,28 +1354,28 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafUkO aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalcldlelflglhememaaemliljlklllmiLaplnlolpaaaaaaaaaaaaaaaaaaaaaaaaitbzeZfabzeZfaihgHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaemememlqemememememememememememememlrlsltaaaaaaaaaaaaaaaaaaaaaaaabLbzeZfabzeZfaihesaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapapaplubzaamXlwlxlylzlAlBlCmPlWemlElFltaaaaaaaaaaaaaaaaaaaaaaaabLeBbLbLbLbLbLbLesaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapapaaaaaaaalLlGlGlGlHlIlJlKlKmaemlMlNlOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaememememaqaqaqaqemaqaqaqaqaqaqaqaqemaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalPapaaaaaaaaaplQlRlSlTlUlVlKlKnjememememaaaanintnknlnkicnmaaaaaabLbLeBbLbLbLfMfMfMaaaaaaaaaaaaemeneoepepepepepepepepepeoepepepepeqaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalXapiLaaaaaaaplYlRlRmilUlZnGaambmcmdmemfaaaanonpnqnqnqnrnsaaaaaabLipbzigiqigigeZfMaaaaaairaaaaemerfMfMfMfMabfMetetetfMabfMfMfMfMeuaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamgapmhapapapapnGlRlRlTlUmjaaaamkmlmmmnmoaaaanwnxbzbzbznynzaaaaaaitbzfabzeZfabzeZgHaaaaaaihaaaaemerfMgVgPeyfMfMevewexfMfMeyezezfMeuaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaampmqmrmsmtmuapmvlRlRlTlUmwmxmymxmzmAmBmCaaaanAnBnCnDnEnFnFaaaaaabLbzfabzeZfabzeZesaaaaaaihaaaaemergfeCeCeCeAbLeJgxhlbLieijililgHeuaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamDmEmFmGmtmHapmImJmKmLmMmNmOlvmQmRmSmTmUaaaaaaaaaaaaaaaaaaaaaaaabLeBbLbLbLbLbLbLesaaaaaaaaaaaabzerfMeCeCeCeCeBiminiuiyimimimimfMeuaqaqaaaaaaaaaaaaaaaaaaaaaaaaeCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapapmVmWapapapapapapmXmYmZmXmXapapapnanbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzerfMhhizbLiAbLiBiAbybLiAbLimiKfMeueDaqaaaaaaaaaaaaaaaaaaaaaaaaeCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaememnciLapndnenfaplDngnhnintnknlnkicnmnnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeEerfMeFeFbLiLiLbLiMiNiOiPbLeFeFfMeubzaqaaaaaaaaaaaaaaaaaaaaaaaaeCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanonpnqnqnqnrnsaaaaaaaaaaaaaaaaaaaaaaaaaaaabLbLeBbLbLbLfMfMfMaaaaaaaaaaeGerfMnunubNiRiLiAiMimimiSbNnunufMeubzaqaaaaaaesaaaaaaaaaaaaaaaaeCeCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanwnxbzbzbznynzaaaaaaaaaaaaaaaaaaaaaaaaaaaabLifbzbzigigigeZfMaaaaaaaaaaeIerabababgfiTiUbLiViWiXiYgHabababeubzaqaaaaaaesaaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanAnBnCnDnEnFnFaaaaaaaaaaaaaaaaaaaaaaaaaaaaitbzeZfaiFbLifeZgHaaaaaaaaaaeNerabfMfMfMbybNbNiAbLbybyfMfMfMabeubzaqaaaaaaesesaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLbzeZfaiGiGiGeZesaaaaaaaaaaeOePabfMeReSeTiZjaiMimjbjbjbjcfMabeubzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaaaabkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaabLeBbLbLbLbLbLbLesaaaaaaaaaaeUerabiseWeXeYitiMjdjejfjgjhjcgHabeubzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkacaaaaadaeadaaaaafbkbkbkbkbkbkbkbkbkbkbkbkbkbkagahaiajakalbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafberabfMfcfdfebLiMjdjejijijijcfMabeueDaqaaaaaaaaaaaafgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkbkbkbkbkbkbkbkbkamanadadakaobkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafbereQfMbLbLbLbLiAbybybNbLbLbLfMabeubzaqaaaaaaaaaaaafhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaapapapaqaaaaaaaaaabkbkbkbkbkbkbkbkbkarasatauavawbkbkbkbkbkbkbkbkalbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaiHeZfaiHeZaaaaaafbereQfMeHiEjkhsiMjlffhWhWiEhsfMabeubzaqaaeCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaxayazaqaaaaaaaaaabkbkbkaAbkbkbkbkbkaBadaCaDaEaFbkbkbkbkbkbkbkbkaobkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafggJfgfaiHeZfaiHeZaaaaaafberfMeyeMeBjmeCiMiMiMiMeMeBeCeyfMeubzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaqaGaHaIaaaaaaaaaabkbkbkbkbkbkbkbkbkaJaKaLaMaNaObkbkbkbkbkbkbkbkawbkbWbWbWbWbXbYbYbZcabYbYbXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafberfMjneCbygZjohshshsiMhsbyiieCfMeubzaqiCaaaaiCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaqaaaPaQaaaaaaaaaabkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaFbkbWcbcccdcecfcgchcicjckbYaaaaaaaaaaaaaaaaaaaaaaaaaahiaafberfMiviwiEjjjujpjpjqiMikiEjrjsfMeubzaqaaaaiCaaaaioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaqaqaRaqaaaaaaaaaabkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaObkbWclcmcncmcmcocpcqcrcsbYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafberfMeFeFfMjvjvjtfMfMhFjtfMeFeFfMeubzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkbkbkbkbkbkbJbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbWctcucucucucucvcvcjcwbXaaaaaaaaaaaaaaaaaaaaaaaaaafRaafberfMnunufMjwjxjyhwabababfMnunufMeubzaqaaaaaaaaaaiDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkbkbkbkbkbkbkbkbkaaaabkbkbkbkbkbkbkbkbkbkbkbkbkbkbWcxcyczcAcBcCcDcEcFcGcHaaaaaaigiIiJigaaaaaaaaaaixaaaaeNfifjfjfjfjfjfjfjfkfjfjfjfjfjfjfjflbzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoMoNoOoOoOoOoOoOoNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapapaaaaaaaalLlGlGlGlHlIlJlKlKmaemlMlNlOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaememememaqaqaqaqemaqaqaqaqaqaqaqaqemaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanunununununununununupOnupPpQpRpSpQpTpUpVpVpWbzbzpXpYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalPapaaaaaaaaaplQlRlSlTlUlVlKlKnjememememaaaanintnknlnkicnmaaaaaabLbLeBbLbLbLfMfMfMaaaaaaaaaaaaemeneoepepepepepepepepepeoepepepepeqaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqhaaaaaaaaaaqnaaapapbybyapapapapapapapapapapapapapapappZapqabzbzqbqcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalXapiLaaaaaaaplYlRlRmilUlZnGaambmcmdmemfaaaanonpnqnqnqnrnsaaaaaabLipbzigiqigigeZfMaaaaaairaaaaemerfMfMfMfMabfMetetetfMabfMfMfMfMeuaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakSaaqgaaqoaaaaaaqdqeqeqeqeqeqeqeqmqeqeqeqeqeqeqfapbwbwkSapqibzjPqjqkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamgapmhapapapapnGlRlRlTlUmjaaaamkmlmmmnmoaaaanwnxbzbzbznynzaaaaaaitbzfabzeZfabzeZgHaaaaaaihaaaaemerfMgVgPeyfMfMevewexfMfMeyezezfMeuaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapaaaaaaaaaaaaaaaQapapkSapapapapapapapapapapaaqpqqkSqrqsapqtbzbzquqvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaampmqmrmsmtmuapmvlRlRlTlUmwmxmymxmzmAmBmCaaaanAnBnCnDnEnFnFaaaaaabLbzfabzeZfabzeZesaaaaaaihaaaaemergfeCeCeCeAbLeJgxhlbLieijililgHeuaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapapapapkSkSapapapapapapapapapapqpapapapapqwapqxbzaaapapkSkSapqAqAqAqAqAqAapqBapaaqpapapapqwapqxbzbzqypYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamDmEmFmGmtmHapmImJmKmLmMmNmOlvmQmRmSmTmUaaaaaaaaaaaaaaaaaaaaaaaabLeBbLbLbLbLbLbLesaaaaaaaaaaaabzerfMeCeCeCeCeBiminiuiyimimimimfMeuaqaqaaaaaaaaaaaaaaaaaaaaaaaaeCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqzapkSapkSkSapqAqAqAqAqAqAapqBapqlqCqDqEqFqGqHqIqJaakSapkSkSapqOqOapapqOqOapapaaaaqlqDqEqFqGqHqIqJqJqKqLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapapmVmWapapapapapapmXmYmZmXmXapapapnanbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzerfMhhizbLiAbLiBiAbybLiAbLimiKfMeueDaqaaaaaaaaaaaaaaaaaaaaaaaaeCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqMapapapqNapapqOqOapapqOqOapapapkSqPapqQmmmnqRqSqTaaapapqNapaprdrerfrfrgrgrhriaaapqPapqQmmmnqRqSqTqTqUqVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaememnciLapndnenfaplDngnhnintnknlnkicnmnnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeEerfMeFeFbLiLiLbLiMiNiOiPbLeFeFfMeubzaqaaaaaaaaaaaaaaaaaaaaaaaaeCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqWqXqYqZrarbrcrdrerfrfrgrgrhriapapapaprjrkrlrmrnroaaqYqZrarbrcryrzrArArArBrrrSaaapapaprjrkrlrmrnrorprqqVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanonpnqnqnqnrnsaaaaaaaaaaaaaaaaaaaaaaaaaaaabLbLeBbLbLbLfMfMfMaaaaaaaaaaeGerfMtQtQbNiRiLiAiMimimiSbNtQtQfMeubzaqaaaaaaesaaaaaaaaaaaaaaaaeCeCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarsqXrtrurvrwrxryrzrArArArBrCrDapaprErFapapaprGapapaartrurvrwrxanadadadadadwbrDapaprErFapapaprGapapaprHrIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanwnxbzbzbznynzaaaaaaaaaaaaaaaaaaaaaaaaaaaabLifbzbzigigigeZfMaaaaaaaaaaeIerabababgfiTiUbLiViWiXiYgHabababeubzaqaaaaaaesaaeMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarJqXrKrLrMrNaprOrPadrQrRrQakrSaprTrUrVrWrXrYrZsasbaarKrLrMrNaprOrPadrQrRrQakrSaprTrUrVrWscrYrZsasbbzsdseaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanAnBnCnDnEnFnFaaaaaaaaaaaaaaaaaaaaaaaaaaaaitbzeZfaiFbLifeZgHaaaaaaaaaaeNerabfMfMfMbybNbNiAbLbybyfMfMfMabeubzaqaaaaaaesesaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasfaprcsgshsisjskslslsmslsmsnsoapspadsqadadadsrssstaarcsgshsisjskslslsmslsmsnsoapspadsqadadadsrssstbzsubzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLbzeZfaiGiGiGeZesaaaaaaaaaaeOePabfMeReSeTiZjaiMimjbjbjbjcfMabeubzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasvswsxsyszsAsBsCsDsEsFsFsFsGsHsIsJadsqrRrPadsKsLsMaasxsyszsAsBsCsDsEsFsFsFsGsHsIsJadsqrRrPadsKsLsMsNsOsPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaaaabkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaabLeBbLbLbLbLbLbLesaaaaaaaaaaeUerabiseWeXeYitiMjdjejfjgjhjcgHabeubzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasQsRsSsTsUsVsWsSsXsYsZtatbtctdtetftgthtgtitjtktlsbaasSsTsUsVsWsSsXsYsZtatbtctdtetftgthtgtitjtktlsbbzsusPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkacaaaaadaeadaaaaafbkbkbkbkbkbkbkbkbkbkbkbkbkbkagahaiajakalbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafberabfMfcfdfebLiMjdjejijijijcfMabeueDaqaaaaaaaaaaaafgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqOapsjaptmrStnqOapapapaptotptqtrtstttutvaptwtxtyapaasjaptmrStnqOapapapaptotptqtztAtttutBaptwtxtyapbzsusPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkbkbkbkbkbkbkbkbkamanadadakaobkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafbereQfMbLbLbLbLiAbybybNbLbLbLfMabeubzaqaaaaaaaaaaaafhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatCtDtErGtmsHqOtFkStGkSsjtHtItJtKtLadtMtNtOadadtPapaatErGtmsHqOtFkStGkSsjtHtItJtKtLtRtMtStOadadtPaptTtUsPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaapapapaqaaaaaaaaaabkbkbkbkbkbkbkbkbkarasatauavawbkbkbkbkbkbkbkbkalbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaiHeZfaiHeZaaaaaafbereQfMeHiEjkhsiMjlffhWhWiEhsfMabeubzaqaaeCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadadtDqOtVadtWadtXtYtZaptmuaubucudueufugapadaduhapaatDqOtVadtWadtXtYtZaptmuaubucuiujukulapadaduhapbzsusPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaxayazaqaaaaaaaaaabkbkbkaAbkbkbkbkbkaBadaCaDaEaFbkbkbkbkbkbkbkbkaobkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafggJfgfaiHeZfaiHeZaaaaaafberfMeyeMeBjmeCiMiMiMiMeMeBeCeyfMeubzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaumadadunaduoqOupadaduqapurusapapapaprGapaptwapapapaaadunaduoqOupadaduqapurusapapaptwrGapaptwapapaputuuqTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaqaGaHaIaaaaaaaaaabkbkbkbkbkbkbkbkbkaJaKaLaMaNaObkbkbkbkbkbkbkbkawbkbWbWbWbWbXbYbYbZcabYbYbXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafberfMjneCbygZjohshshsiMhsbyiieCfMeubzaqiCaaaaiCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauvadadqOuwrSqOuxadaduyqOuzuAuBuCuDuEuFuGuHaduIapapaaadqOuwrSqOuxadaduyqOuzuAuBuCuJaduKuGuHaduIapapuLqVbzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaqaaaPaQaaaaaaaaaabkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaFbkbWcbcccdcecfcgchcicjckbYaaaaaaaaaaaaaaaaaaaaaaaaaahiaafberfMiviwiEjjjujpjpjqiMikiEjrjsfMeubzaqaaaaiCaaaaioaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauMuNuOapuPuQapuRuSuTuUuVuWuXuYuZvavbadadadadvcapbzaauOapuPuQapuRuSuTuUuVuWuXuYuZvavbadadadadvcapbzvdvevfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaqaqaRaqaaaaaaaaaabkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaObkbWclcmcncmcmcocpcqcrcsbYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafberfMeFeFfMjvjvjtfMfMhFjtfMeFeFfMeubzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqOapapapvgvhapvivjvkaNqOtbvltyvmvnvovpadrRadvqapbzaaapapvgvhapvivjvraNqOtbvltyvmvnvovpadrRadvqapbzvsvtbzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkbkbkbkbkbkbJbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbWctcucucucucucvcvcjcwbXaaaaaaaaaaaaaaaaaaaaaaaaaafRaafberfMtQtQfMjwjxjyhwabababfMtQtQfMeubzaqaaaaaaaaaaiDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavuvvvwvxvyvzapapqOqOapapvAvBapvCvDvEvFvGvHvIvJvKtTaavwvxvyvzapapqOqOapapvAvBapvCvDvEvFvGvHvIvJvKtTvLmnmnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkbkbkbkbkbkbkbkbkaaaabkbkbkbkbkbkbkbkbkbkbkbkbkbkbWcxcyczcAcBcCcDcEcFcGcHaaaaaaigiIiJigaaaaaaaaaaixaaaaeNfifjfjfjfjfjfjfjfkfjfjfjfjfjfjfjflbzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavMvNvMvOvPvQvRvSvTvUvVvWvXvYapapapapapapapapapapbzaavMvOvPvQvRvSvTvUvVvWvXvYapapapapapapapapapapbzvZwaicaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoMoNoOoOoOoOoOoOoNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bkbkaSbkbkbkaSbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkbkbkbkaaaaaabkbkbkaTbkbkbkbkbkbkbkbkbkbkbWbWbWbWbXcIcucJcKcucubYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafmfnfnfnfofpfnfnfnfnfqfnfnfnfnfnfnfnbzaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoPoQoOoOoOoOoOoOoNaaaaaaaaaaaaaaoRoRoRoRoRoRoRoSoSoSaaaaaaaaaaaaaaaaaaaaaa aUaUaUaVaWaVaUaUaUbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaXaiajakaYbkbkbkbkbkbkaaaaaabkbkbkbkaaaZapaabkbkbkbkbkbkcLcMcNcObYcPcQcvcvcucRcSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaemememememapfrfrfrfrapemememememememaqaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoMoOoOoOoOoToOoOoNaaaaaaaaoUaaaaoVoVoWoVoRoRoSoSoSoRoXoYoRaaaaaaaaaaaaaaaa bkbkbkbabkbabkbkbkbkbkbkbkbkbkbkbkbkbkaabkbkaabkbkbkbkbkaaamanadadakaobkbkbkbkbkbkaaaaaabkbkbkbaaabbaaaabkbkbkbkbkbkcTcUcUcVcWcXcucvcvcYcZbXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaemememememememememememememememememememememaaaaaaaaaaaaaafsftftftftftftfuftfvftftftftftftfwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapggggggggggggapghapggggggggggiQiQiQjAiQiQiQiQggggggaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoZoToOoOoOoOoOoOoNaaaaaaaapaoUaaoVoVoVpboRoRoRoVoSoRoYoYoRaaaaaaaaaaaaaaaa @@ -1070,8 +1396,8 @@ bkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbDbkbkbkbCbkbkbkbEbkbkaqaqaqbsbsbvaqaqaqaqbkbkbk bkbkbkbkbkbkbkbkbkbkbDbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaqaqbuaqaqbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLdYdYdZdYdYeaebecedeeaaemfDfPhphqhreChshshshthuhveWeXeYeVabfSeNemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVaaaaaaaaggapjXjTjGjGkBbzkzjEjEjEjEjEjEjFjFjFjFjEjEjKkCapkDkEaaaaaaaaaaaanHnHnvnHnHnvnHnvnHnHnHnHaaaaaaapapiLnUapopopoqopapaaaaaaomaaorosoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbEbkbkbkbkbkbkbkbkbkbkbkbkbkaSbsbsbsaSbkbkbkbkbCbkbkbFbkbkbkbDbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLefefbNegdqeaeheiejekaaemfDfPhwhxhyhzhAhBhCeMhDfGfcfdfehEabfSeNemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVaaaaaaaaggapapapapapjRkFkzjEjEjEkGjEjEjEjEjEjEjEjEjEggapkHkIaaaaaaaaaaaanHnHnvnHnHnHnvnHnHnHnHnvaaaaaaapotoqoqocoqouoqopapaaaaiLomaaovaaoiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbCbkbkbkbkbkbkbkbGbkbkbHbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNbLbLbLababelelbLbLbNaaemfOfPfGfGfGfGhdeFhehFhGeFhHfGfGfGfGfSgQemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVfVaaaaaaaaggggggggggggggkJjEkKjEggggjEjEjEjEkGjEggggggggapkLbxaaaaaaaaaaaanHnHnHnHnHnHnHnHnHnHnHnHaaaaaaowomoqopopopopoqoqowaaaaaaoxoyozoAoBaaoCaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbkbkbkbCbkbkbkbkbkbkbkbkbkbkbkbCbkbkbkbkbkbkbkbHbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanununuabababababnununuaaemhIfKfGhJaaaahfnufGhKfGnuhLeFeFhMfGfSgXemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVfVfVfVfVfVfVfVfVfVfVfVaaaaaafVfVfVfVfVfVfVfVfVfVfVfVfVfVfVaaaaaaaaggggggggggggggggggkMggggggggjEggggggggggggggggapkLbxaaaaaaaaaaaanvnvnHnHnHnHnHnHnHnvnHnHaaaaaaoDomoqoqoqoqoqoEoqoFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bkbkbkbkbkbkbkbkbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbIbmbmbmbIbmbmbmbmbmbmbmbmbmbmbmbmbmbmbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaemhNfFabnuaaaaabababababababnununuabfHhOemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVfVfVfVfVfVfVfVfVfVaaaaaaaaaafVfVfVfVfVfVaaaafVfVfVfVfVfVaaaaaaaaggggggggggggggggggbxggggapggggggapapapapapapapapkNggaaaaaaaaaaaanHnHnHnHnHnvnHnHnHnHnHnIaaaaaaapoGoHoIoJoKopopoLapaaaaaaaaaaopopaaopopaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbkbkbkbCbkbkbkbkbkbkbkbkbkbkbkbCbkbkbkbkbkbkbkbHbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatQtQtQabababababtQtQtQaaemhIfKfGhJaaaahftQfGhKfGtQhLeFeFhMfGfSgXemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVfVfVfVfVfVfVfVfVfVfVfVaaaaaafVfVfVfVfVfVfVfVfVfVfVfVfVfVfVaaaaaaaaggggggggggggggggggkMggggggggjEggggggggggggggggapkLbxaaaaaaaaaaaanvnvnHnHnHnHnHnHnHnvnHnHaaaaaaoDomoqoqoqoqoqoEoqoFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bkbkbkbkbkbkbkbkbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbIbmbmbmbIbmbmbmbmbmbmbmbmbmbmbmbmbmbmbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaemhNfFabtQaaaaabababababababtQtQtQabfHhOemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVfVfVfVfVfVfVfVfVfVaaaaaaaaaafVfVfVfVfVfVaaaafVfVfVfVfVfVaaaaaaaaggggggggggggggggggbxggggapggggggapapapapapapapapkNggaaaaaaaaaaaanHnHnHnHnHnvnHnHnHnHnHnIaaaaaaapoGoHoIoJoKopopoLapaaaaaaaaaaopopaaopopaaaaaaaaaaaaaaaaaaaaaaaaaa bkbkbkbkbkbkbkbkbEbkbkbkbkbkbkbkbkbkbkbCbkbkbkbkbkbEbkbHbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaemhPhQhRhRhRhRhRhRhRhRhRhRhRhRhRhRhRhShTemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVfVfVfVaaaaaaaafVfVfVfVfVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaapapapapapapapapapapaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkbkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaemhPhUhVhVaaaahXhWhPhYhPhPhUhPhZiahPhUibemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaopopaaopopaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaemememememememememicicicemememememememidemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/nano/templates/apc.tmpl b/nano/templates/apc.tmpl index b77b024c8f..9f0ed41f2b 100644 --- a/nano/templates/apc.tmpl +++ b/nano/templates/apc.tmpl @@ -188,6 +188,20 @@
+ +
+
+ Emergency Lighting: +
+
+ {{if data.locked && !data.siliconUser}} + {{:data.emergencyLights ? "Enabled" : "Disabled"}} + {{else}} + {{:helper.link(data.emergencyLights ? 'Enabled' : 'Disabled', data.emergencyLights ? 'power' : 'close', {'emergency_lighting' : 1}, null)}} + {{/if}} +
+
+ {{if data.siliconUser}}

System Overrides

diff --git a/news_articles/the_sleepy_sergal_2.html b/news_articles/the_sleepy_sergal_2.html index 0bd6fb93e5..8a11bf97d2 100644 --- a/news_articles/the_sleepy_sergal_2.html +++ b/news_articles/the_sleepy_sergal_2.html @@ -6,7 +6,7 @@

-

The Sleepy Sergal - 09/28/2536

+

The Sleepy Sergal - 09/28/2563

===Unathi Black Egg Plague At Record High! (powered by NanoTrasen)===

The Hegemony High Council has released a statement today confirming what has been circulating amongst the circles of the unathi population: Black Egg Syndrome has been at an all time high, at thirteen percent and rising. @@ -20,7 +20,7 @@


-

The Sleepy Sergal - 10/02/2536

+

The Sleepy Sergal - 10/02/2563

Obituary - Pablo Jenner

Pablo Jenner passed away while fighting giant space bears during a mining expedition on the evening of October 10th, 2563, at the age of 76. He will be greatly missed for his service. He has lived a rich life of mining on various planets and moons, and continued on even after losing his legs to other creatures, he was a real trooper.

@@ -38,7 +38,7 @@ Legion


-

The Sleepy Sergal - 10/03/2536

+

The Sleepy Sergal - 10/03/2563

===Tragic Tram Crash on Virgo 3B! (powered by NanoTrasen) ===

Tragic news from Virgo 3B today. The orange line tram's automated brakes failed to engage when arriving at one of the waystations on the route. The resulting crash ended up destroying the small station's tram terminal, as well as the tram car itself. The automated systems however, did not pick up on the crash until much later, reporting that the train was still moving as normal. It wasn't until crewmembers aboard the next stop on the line, Yawn Wider Station, noticed that the tram was mysteriously missing, that technicians realized what had happened.

@@ -55,7 +55,7 @@ Legion


-

The Sleepy Sergal - 10/13/2536

+

The Sleepy Sergal - 10/13/2563

===Fast Headlines (powered by NanoTrasen)===

Spooky celebrations: The capital city on Sol IIIᵃ is due to begin the 2563 celebration of its annual "Festival of Spirits", a 45 day long celebration of various cultures' supernatural-centric holidays. The festival kicks off with Earth's american region holiday "Halloween" on day one, followed by its neighbor to the south's "Día de Muertos" (Day of the dead) on day two. For a full list, see exonet address sol.luna.spiritfest.nt. New entries into the line-up this year include an performance enactments of Hawaii, Earth's "Nightmarchers", and Doradus IV's temperate zone holiday "Eve of the Seafolk"

@@ -69,7 +69,7 @@ Legion


-

The Sleepy Sergal - 10/21/2536

+

The Sleepy Sergal - 10/21/2563

===GOOD TIDINGS AND CHEER (powered by NanoTrasen)===

As with every year, the sol winter holiday season is coming up, and fast! The solstice around which the holidays are centered will occur on Thursday, 22.Dec.2563 at 04:20:33 NT-ST, in fact! That's only a month away, so be sure to get those extra duty shifts in to make your holidays exceptionally magical! As always, we'd like to wish all employees and citizens within NanoTrasen Interstellar holdings, and denizens of its member planet-states and colonies, a happy, happy holidays, full of family, friends, festivity, and fine products by Getmore Chocolate Corp and Robust Softdrinks.

@@ -79,19 +79,19 @@ Legion


-

NanoTrasen Announcement - 12/11/2536

+

NanoTrasen Announcement - 12/11/2563

===NT VEGA BRANCH BOARD OF DIRECTORS ANNOUNCEMENT==

Message to all NanoTrasen personnel employed in the Virgo-Erigone sector,

Dear employees,

-

As the new fiscal year approaches, the board of directors will be announcing sweeping changes to multiple facets of the corporate guidelines, regulations and policies. These new changes will be broadcasted on all NanoTrasen facilities in the Virgo-Erigone sector on Saturday, the 14th of December 2563. The changes will come effect as they are announced.

+

As the new fiscal year approaches, the board of directors will be announcing sweeping changes to multiple facets of the corporate guidelines, regulations and policies. These new changes will be broadcasted on all NanoTrasen facilities in the Virgo-Erigone sector on Saturday, the 14th of December 2563. The changes will come effect as they are announced.p>

Glory to NanoTrasen.


-

The Sleepy Sergal - 12/14/2536

+

The Sleepy Sergal - 12/14/2563

===VEGA Sector in Shambles after Mercenary Involvment===

The Virgo-Erigone sector of NanoTrasen got a pretty rough day, reports have been coming of new policy changes which have sparked riots throughout the entire sector. It turns out those new policies were enacted by members of the board who happened to have links with a mercenary organization that is tied to diverse companies. We do not know who hired these men specifically however. But whatever it was, their plan worked. NT has lost Virgo-3b after the Trade Wind Freighter collided with it at half light speed. Causing the entire Moon, and ship, to be completely obliterated. Including all facilities within, and those orbiting it.

@@ -108,7 +108,7 @@ Most of the workforce from those areas have been relocated to other sectors.


-

The Sleepy Sergal - 12/17/2536

+

The Sleepy Sergal - 12/17/2563

=== Have Carp, Will Travel ===

Reports from around the outer rims tells tales of the dreaded Space Carp breaching their way through atmospheres and hitting the surfaces of many villages, facilities, and other inhabited areas. Details suggest that upwards of hundreds of Space Carp are making landfall each hour, quickly adapting to the new environments they are invading. On a newly christened NanoTrasen outpost, Cryogaia, there were reports of upwards of forty unique Space Carps patrolling around the area of the outpost. They were seen actively engaging wildlife, showing little regard for their own safety.

@@ -123,7 +123,7 @@ Most of the workforce from those areas have been relocated to other sectors.


-

The Sleepy Sergal - 12/18/19

+

The Sleepy Sergal - 12/18/2563

=== Chill Out ===

NanoTrasen's new automated micro-AA batteries have been a resounding success: Counteless chunks of meat have been splattered around many favilities, and no carp have been spotted. Many activists are quick to point out that some of them may be local wildlife capable of flight, though NanoTrasen has given no official response, besides a rumor, saying that: "There were no confirmed reports of Avians[sic], and if there were, it doesn't matter now."

@@ -142,10 +142,20 @@ Most of the workforce from those areas have been relocated to other sectors.


-

The Sleepy Sergal - 12/24/19

+

The Sleepy Sergal - 12/24/2563

===Mystery Probe Update (powered by NanoTrasen)===

A small update to the probe spotting we reported on last in October. The object, or one of similar make and model has been spotted in a system approximately 3471 LY away from the location of the initial sighting. It has been determined that the probes create a small, but unique form of "eddy" in subspace upon arrival. Reportedly, an NT Navy Laboratory is working on a detection system specifically calibrated to alert information networks upon the arrival of similar objects, in hopes of determining their purpose and origin.

Writer(s)

-

DeepIndigo

\ No newline at end of file +

DeepIndigo

+ +
+ +

The Sleepy Sergal - 1/15/2564

+

===Calendar Update (powered by NanoTrasen)===

+ +

Well loyal readers here we are, just over two weeks into the new year. We're looking forward to the great strides that will be made by personnel of Nanotrasen®™, its subsidiaries, and associations there-of. 2564 is looking bright and profitable! Just as in years past, we'll continue to bring you the hard-hitting, timely, and truthful journalism you know us for in the coming year!

+ +

Writer(s)

+

DeepIndigo

diff --git a/vorestation.dme b/vorestation.dme index f2cdeb607f..7a04e19ce7 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -74,6 +74,7 @@ #include "code\__defines\sound.dm" #include "code\__defines\species_languages.dm" #include "code\__defines\species_languages_vr.dm" +#include "code\__defines\species_languages_YW.dm" #include "code\__defines\stat_tracking.dm" #include "code\__defines\subsystems.dm" #include "code\__defines\subsystems_vr.dm" @@ -1703,12 +1704,14 @@ #include "code\modules\client\preference_setup\loadout\loadout_gloves_vr.dm" #include "code\modules\client\preference_setup\loadout\loadout_head.dm" #include "code\modules\client\preference_setup\loadout\loadout_head_vr.dm" +#include "code\modules\client\preference_setup\loadout\loadout_head_yw.dm" #include "code\modules\client\preference_setup\loadout\loadout_mask.dm" #include "code\modules\client\preference_setup\loadout\loadout_shoes.dm" #include "code\modules\client\preference_setup\loadout\loadout_shoes_vr.dm" #include "code\modules\client\preference_setup\loadout\loadout_smoking.dm" #include "code\modules\client\preference_setup\loadout\loadout_suit.dm" #include "code\modules\client\preference_setup\loadout\loadout_suit_vr.dm" +#include "code\modules\client\preference_setup\loadout\loadout_suit_yw.dm" #include "code\modules\client\preference_setup\loadout\loadout_uniform.dm" #include "code\modules\client\preference_setup\loadout\loadout_uniform_vr.dm" #include "code\modules\client\preference_setup\loadout\loadout_uniform_yw.dm" @@ -1755,6 +1758,7 @@ #include "code\modules\clothing\head\hood.dm" #include "code\modules\clothing\head\hood_yw.dm" #include "code\modules\clothing\head\jobs.dm" +#include "code\modules\clothing\head\jobs_yw.dm" #include "code\modules\clothing\head\misc.dm" #include "code\modules\clothing\head\misc_special.dm" #include "code\modules\clothing\head\misc_vr.dm" @@ -1856,6 +1860,7 @@ #include "code\modules\clothing\under\syndicate.dm" #include "code\modules\clothing\under\accessories\accessory.dm" #include "code\modules\clothing\under\accessories\accessory_vr.dm" +#include "code\modules\clothing\under\accessories\accessory_yw.dm" #include "code\modules\clothing\under\accessories\armband.dm" #include "code\modules\clothing\under\accessories\armor.dm" #include "code\modules\clothing\under\accessories\badges.dm" @@ -2314,6 +2319,7 @@ #include "code\modules\mob\language\outsider.dm" #include "code\modules\mob\language\station.dm" #include "code\modules\mob\language\station_vr.dm" +#include "code\modules\mob\language\station_YW.dm" #include "code\modules\mob\language\synthetic.dm" #include "code\modules\mob\living\autohiss.dm" #include "code\modules\mob\living\damage_procs.dm" @@ -2332,6 +2338,7 @@ #include "code\modules\mob\living\logout.dm" #include "code\modules\mob\living\say.dm" #include "code\modules\mob\living\bot\bot.dm" +#include "code\modules\mob\living\bot\bot_vr.dm" #include "code\modules\mob\living\bot\cleanbot.dm" #include "code\modules\mob\living\bot\ed209bot.dm" #include "code\modules\mob\living\bot\edCLNbot.dm" @@ -2400,6 +2407,7 @@ #include "code\modules\mob\living\carbon\human\human_organs.dm" #include "code\modules\mob\living\carbon\human\human_powers.dm" #include "code\modules\mob\living\carbon\human\human_powers_vr.dm" +#include "code\modules\mob\living\carbon\human\human_powers_YW.dm" #include "code\modules\mob\living\carbon\human\human_resist.dm" #include "code\modules\mob\living\carbon\human\human_species.dm" #include "code\modules\mob\living\carbon\human\human_species_vr.dm" @@ -2444,6 +2452,7 @@ #include "code\modules\mob\living\carbon\human\species\station\alraune.dm" #include "code\modules\mob\living\carbon\human\species\station\blank_vr.dm" #include "code\modules\mob\living\carbon\human\species\station\golem.dm" +#include "code\modules\mob\living\carbon\human\species\station\greyYW.dm" #include "code\modules\mob\living\carbon\human\species\station\human_subspecies.dm" #include "code\modules\mob\living\carbon\human\species\station\monkey.dm" #include "code\modules\mob\living\carbon\human\species\station\prometheans.dm" @@ -2739,6 +2748,7 @@ #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\shadekin.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\types.dm" #include "code\modules\mob\living\voice\voice.dm" +#include "code\modules\mob\living\voice\voice_vr.dm" #include "code\modules\mob\new_player\login.dm" #include "code\modules\mob\new_player\login_ch.dm" #include "code\modules\mob\new_player\login_vr.dm"